[cfe-commits] r151544 - /cfe/trunk/include/clang/AST/Type.h

Richard Smith richard-llvm at metafoo.co.uk
Mon Feb 27 11:56:35 PST 2012


Author: rsmith
Date: Mon Feb 27 13:56:34 2012
New Revision: 151544

URL: http://llvm.org/viewvc/llvm-project?rev=151544&view=rev
Log:
Speculatively attempt to work around a hypothetical but unreproduced MSVC issue
in r151494.

Modified:
    cfe/trunk/include/clang/AST/Type.h

Modified: cfe/trunk/include/clang/AST/Type.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Type.h?rev=151544&r1=151543&r2=151544&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Type.h (original)
+++ cfe/trunk/include/clang/AST/Type.h Mon Feb 27 13:56:34 2012
@@ -2706,7 +2706,7 @@
     bool Variadic : 1;
     bool HasTrailingReturn : 1;
     ExceptionSpecificationType ExceptionSpecType : 4;
-    RefQualifierKind RefQualifier : 2;
+    RefQualifierKind RefQualifier : 3;
     unsigned char TypeQuals;
     unsigned NumExceptions;
     const QualType *Exceptions;





More information about the cfe-commits mailing list