aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-12-21 22:33:20 +0000
committerChad Rosier <mcrosier@apple.com>2012-12-21 22:33:20 +0000
commita193e3b1e675f2d149802dc7e6f061bf3eb1ab27 (patch)
treeb4d31cfe8a3a1c63c4ecc506f294de9781db3388
parent22aa6901b8134c51771245255b32cd7d026e7913 (diff)
Fix a warning due to an extraneous comma.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170935 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Sema/Sema.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h
index d87a0eeca7..d87718dc54 100644
--- a/include/clang/Sema/Sema.h
+++ b/include/clang/Sema/Sema.h
@@ -1879,7 +1879,7 @@ public:
LK_Numeric,
LK_Boxed,
LK_String,
- LK_None,
+ LK_None
};
ObjCLiteralKind CheckLiteralKind(Expr *FromE);