diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-02-27 19:56:34 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-02-27 19:56:34 +0000 |
commit | 1ebae62697cd634c4134e61bac3823584f8c403a (patch) | |
tree | 7e0f62d603276c70e274c2de01c53967e92d575f | |
parent | 07d164266d9563919d07d423ce00655fcfa8a4d4 (diff) |
Speculatively attempt to work around a hypothetical but unreproduced MSVC issue
in r151494.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151544 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index e5e3c60083..bfff07ccbb 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -2706,7 +2706,7 @@ public: bool Variadic : 1; bool HasTrailingReturn : 1; ExceptionSpecificationType ExceptionSpecType : 4; - RefQualifierKind RefQualifier : 2; + RefQualifierKind RefQualifier : 3; unsigned char TypeQuals; unsigned NumExceptions; const QualType *Exceptions; |