[cfe-commits] r122318 - /cfe/trunk/include/clang/Basic/LangOptions.h

Douglas Gregor dgregor at apple.com
Mon Dec 20 22:21:20 PST 2010


Author: dgregor
Date: Tue Dec 21 00:21:20 2010
New Revision: 122318

URL: http://llvm.org/viewvc/llvm-project?rev=122318&view=rev
Log:
Initialize LangOptions::MSCVersion. Thanks to Csaba Raduly for noting the omission

Modified:
    cfe/trunk/include/clang/Basic/LangOptions.h

Modified: cfe/trunk/include/clang/Basic/LangOptions.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/LangOptions.h?rev=122318&r1=122317&r2=122318&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/LangOptions.h (original)
+++ cfe/trunk/include/clang/Basic/LangOptions.h Tue Dec 21 00:21:20 2010
@@ -184,7 +184,8 @@
     InstantiationDepth = 1024;
 
     NumLargeByValueCopy = 0;
-
+    MSCVersion = 0;
+    
     Optimize = 0;
     OptimizeSize = 0;
 





More information about the cfe-commits mailing list