aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2012-10-18 21:52:10 +0000
committerEric Christopher <echristo@gmail.com>2012-10-18 21:52:10 +0000
commit5b341da0eb6478c22b9587f03572a249ebbd00dc (patch)
tree9a1d25011cc319d60ac28eaec63f0ad8485d9bee
parent69e160869dc10567a878601e98987079ad984c64 (diff)
Remove trailing comma.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166235 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Driver/Option.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Driver/Option.h b/include/clang/Driver/Option.h
index 6c0f20ea5d..11e417149d 100644
--- a/include/clang/Driver/Option.h
+++ b/include/clang/Driver/Option.h
@@ -26,7 +26,7 @@ namespace options {
HelpHidden = (1 << 0),
RenderAsInput = (1 << 1),
RenderJoined = (1 << 2),
- RenderSeparate = (1 << 3),
+ RenderSeparate = (1 << 3)
};
/// Flags specifically for clang options.