r372462 - Attempt to fix a windows buildbot failure

Kristof Umann via cfe-commits cfe-commits at lists.llvm.org
Sat Sep 21 00:56:40 PDT 2019


Author: szelethus
Date: Sat Sep 21 00:56:40 2019
New Revision: 372462

URL: http://llvm.org/viewvc/llvm-project?rev=372462&view=rev
Log:
Attempt to fix a windows buildbot failure

Modified:
    cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp

Modified: cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp?rev=372462&r1=372461&r2=372462&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Checkers/MallocChecker.cpp Sat Sep 21 00:56:40 2019
@@ -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) {




More information about the cfe-commits mailing list