[cfe-commits] r170935 - /cfe/trunk/include/clang/Sema/Sema.h

Chad Rosier mcrosier at apple.com
Fri Dec 21 14:33:20 PST 2012


Author: mcrosier
Date: Fri Dec 21 16:33:20 2012
New Revision: 170935

URL: http://llvm.org/viewvc/llvm-project?rev=170935&view=rev
Log:
Fix a warning due to an extraneous comma.

Modified:
    cfe/trunk/include/clang/Sema/Sema.h

Modified: cfe/trunk/include/clang/Sema/Sema.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Sema/Sema.h?rev=170935&r1=170934&r2=170935&view=diff
==============================================================================
--- cfe/trunk/include/clang/Sema/Sema.h (original)
+++ cfe/trunk/include/clang/Sema/Sema.h Fri Dec 21 16:33:20 2012
@@ -1879,7 +1879,7 @@
     LK_Numeric,
     LK_Boxed,
     LK_String,
-    LK_None,
+    LK_None
   };
   ObjCLiteralKind CheckLiteralKind(Expr *FromE);
 





More information about the cfe-commits mailing list