]> granicus.if.org Git - clang/commitdiff
Attempt to fix a windows buildbot failure
authorKristof Umann <kristof.umann@ericsson.com>
Sat, 21 Sep 2019 07:56:40 +0000 (07:56 +0000)
committerKristof Umann <kristof.umann@ericsson.com>
Sat, 21 Sep 2019 07:56:40 +0000 (07:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@372462 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Checkers/MallocChecker.cpp

index 27a40e35d642ba14330b5c1eeaf725fc6b95f510..52d21a54a12fd89ea78792729a008ebb9e2b83dc 100644 (file)
@@ -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) {