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)
llvm-svn: 372462

clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp

index 27a40e3..52d21a5 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) {