diff options
author | Reid Kleckner <rnk@google.com> | 2015-10-27 16:24:03 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2015-10-27 16:24:03 +0000 |
commit | ab8363e1566c7c04c36079d660606880ce4135c6 (patch) | |
tree | 0e4e89bd6576e1dfbbeed9e81ffc08aac3ae72e8 | |
parent | 9c5e41f329b20ecf4f19233e4c7c91b3d05c6c25 (diff) | |
download | bcm5719-llvm-ab8363e1566c7c04c36079d660606880ce4135c6.tar.gz bcm5719-llvm-ab8363e1566c7c04c36079d660606880ce4135c6.zip |
Widen this enum bitfield by one bit to prevent sign extension in MSVC
llvm-svn: 251412
-rw-r--r-- | clang/include/clang/Sema/ScopeInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Sema/ScopeInfo.h b/clang/include/clang/Sema/ScopeInfo.h index 8f29d7c34c1..77801bd44e6 100644 --- a/clang/include/clang/Sema/ScopeInfo.h +++ b/clang/include/clang/Sema/ScopeInfo.h @@ -89,7 +89,7 @@ protected: public: /// \brief What kind of scope we are describing. /// - ScopeKind Kind : 2; + ScopeKind Kind : 3; /// \brief Whether this function contains a VLA, \@try, try, C++ /// initializer, or anything else that can't be jumped past. |