From 1977aa14c9cd3e663c03360931fb566f0915c17d Mon Sep 17 00:00:00 2001 From: Kristof Umann Date: Sat, 21 Sep 2019 07:56:40 +0000 Subject: Attempt to fix a windows buildbot failure git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@372462 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/StaticAnalyzer/Checkers/MallocChecker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- cgit v1.2.1