From: Kristof Umann Date: Sat, 21 Sep 2019 07:56:40 +0000 (+0000) Subject: Attempt to fix a windows buildbot failure X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1977aa14c9cd3e663c03360931fb566f0915c17d;p=clang Attempt to fix a windows buildbot failure git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@372462 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/MallocChecker.cpp b/lib/StaticAnalyzer/Checkers/MallocChecker.cpp index 27a40e35d6..52d21a54a1 100644 --- a/lib/StaticAnalyzer/Checkers/MallocChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/MallocChecker.cpp @@ -137,8 +137,8 @@ class RefState { const Stmt *S; - Kind K : 3; - AllocationFamily Family : 3; + Kind K; + AllocationFamily Family; RefState(Kind k, const Stmt *s, AllocationFamily family) : S(s), K(k), Family(family) {