[cfe-commits] r136783 - /cfe/trunk/include/clang/Serialization/ASTBitCodes.h
Douglas Gregor
dgregor at apple.com
Wed Aug 3 09:22:53 PDT 2011
Author: dgregor
Date: Wed Aug 3 11:22:53 2011
New Revision: 136783
URL: http://llvm.org/viewvc/llvm-project?rev=136783&view=rev
Log:
Remove stray comma
Modified:
cfe/trunk/include/clang/Serialization/ASTBitCodes.h
Modified: cfe/trunk/include/clang/Serialization/ASTBitCodes.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Serialization/ASTBitCodes.h?rev=136783&r1=136782&r2=136783&view=diff
==============================================================================
--- cfe/trunk/include/clang/Serialization/ASTBitCodes.h (original)
+++ cfe/trunk/include/clang/Serialization/ASTBitCodes.h Wed Aug 3 11:22:53 2011
@@ -670,7 +670,7 @@
/// it is created.
enum PredefinedDeclIDs {
/// \brief The NULL declaration.
- PREDEF_DECL_NULL_ID = 0,
+ PREDEF_DECL_NULL_ID = 0
};
/// \brief The number of declaration IDs that are predefined.
More information about the cfe-commits
mailing list