From fc3ad06dcf64f9501fc7ce7d403fd6682c1745a3 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Tue, 27 Oct 2015 16:24:03 +0000 Subject: [PATCH] Widen this enum bitfield by one bit to prevent sign extension in MSVC git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@251412 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Sema/ScopeInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Sema/ScopeInfo.h b/include/clang/Sema/ScopeInfo.h index 8f29d7c34c..77801bd44e 100644 --- a/include/clang/Sema/ScopeInfo.h +++ b/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. -- 2.50.1