[cfe-commits] r121075 - /cfe/trunk/include/clang/Basic/TypeTraits.h
Francois Pichet
pichet2000 at gmail.com
Mon Dec 6 16:21:01 PST 2010
Author: fpichet
Date: Mon Dec 6 18:21:00 2010
New Revision: 121075
URL: http://llvm.org/viewvc/llvm-project?rev=121075&view=rev
Log:
Fix compile error: comma at end of enumerator list.
Modified:
cfe/trunk/include/clang/Basic/TypeTraits.h
Modified: cfe/trunk/include/clang/Basic/TypeTraits.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/TypeTraits.h?rev=121075&r1=121074&r2=121075&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/TypeTraits.h (original)
+++ cfe/trunk/include/clang/Basic/TypeTraits.h Mon Dec 6 18:21:00 2010
@@ -38,7 +38,7 @@
/// BinaryTypeTrait - Names for the binary type traits.
enum BinaryTypeTrait {
- BTT_IsBaseOf,
+ BTT_IsBaseOf
};
}
More information about the cfe-commits
mailing list