From c90fda6abe84127a99a8fe4341b6ed7c8abee47e Mon Sep 17 00:00:00 2001 From: Kristof Umann Date: Sat, 21 Sep 2019 07:56:40 +0000 Subject: [PATCH] Attempt to fix a windows buildbot failure llvm-svn: 372462 --- clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp index 27a40e3..52d21a5 100644 --- a/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp +++ b/clang/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) { -- 2.7.4