From: Francois Pichet Date: Tue, 7 Dec 2010 00:21:00 +0000 (+0000) Subject: Fix compile error: comma at end of enumerator list. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ee90d0d9ecd6010bb6c7ad252d04b32f07877d5;p=clang Fix compile error: comma at end of enumerator list. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@121075 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/TypeTraits.h b/include/clang/Basic/TypeTraits.h index 7c67634d9c..8847d7ad7d 100644 --- a/include/clang/Basic/TypeTraits.h +++ b/include/clang/Basic/TypeTraits.h @@ -38,7 +38,7 @@ namespace clang { /// BinaryTypeTrait - Names for the binary type traits. enum BinaryTypeTrait { - BTT_IsBaseOf, + BTT_IsBaseOf }; }