fix a comment by starting stmts/exprs after types and decls.

llvm-svn: 70171
This commit is contained in:
Chris Lattner 2009-04-27 00:44:11 +00:00
parent 35cfb0544a
commit 94b38c0ff2
1 changed files with 2 additions and 2 deletions

View File

@ -446,12 +446,12 @@ namespace clang {
/// These constants describe the records that describe statements /// These constants describe the records that describe statements
/// or expressions. These records can occur within either the type /// or expressions. These records can occur within either the type
/// or declaration blocks, so they begin with record values of /// or declaration blocks, so they begin with record values of
/// 100. Each constant describes a record for a specific /// 50. Each constant describes a record for a specific
/// statement or expression class in the AST. /// statement or expression class in the AST.
enum StmtCode { enum StmtCode {
/// \brief A marker record that indicates that we are at the end /// \brief A marker record that indicates that we are at the end
/// of an expression. /// of an expression.
STMT_STOP, STMT_STOP = 50,
/// \brief A NULL expression. /// \brief A NULL expression.
STMT_NULL_PTR, STMT_NULL_PTR,
/// \brief A NullStmt record. /// \brief A NullStmt record.