[cfe-commits] r166235 - /cfe/trunk/include/clang/Driver/Option.h
Eric Christopher
echristo at gmail.com
Thu Oct 18 14:52:10 PDT 2012
Author: echristo
Date: Thu Oct 18 16:52:10 2012
New Revision: 166235
URL: http://llvm.org/viewvc/llvm-project?rev=166235&view=rev
Log:
Remove trailing comma.
Modified:
cfe/trunk/include/clang/Driver/Option.h
Modified: cfe/trunk/include/clang/Driver/Option.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/Option.h?rev=166235&r1=166234&r2=166235&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/Option.h (original)
+++ cfe/trunk/include/clang/Driver/Option.h Thu Oct 18 16:52:10 2012
@@ -26,7 +26,7 @@
HelpHidden = (1 << 0),
RenderAsInput = (1 << 1),
RenderJoined = (1 << 2),
- RenderSeparate = (1 << 3),
+ RenderSeparate = (1 << 3)
};
/// Flags specifically for clang options.
More information about the cfe-commits
mailing list