summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristof Umann <kristof.umann@ericsson.com>2019-09-21 07:56:40 +0000
committerKristof Umann <kristof.umann@ericsson.com>2019-09-21 07:56:40 +0000
commit1977aa14c9cd3e663c03360931fb566f0915c17d (patch)
tree8a7a6f33946a406c401cf8ec507c9d577aa19e7a
parent73fb875593ae98a71a9ce4813e5c306fe70006f5 (diff)
downloadclang-1977aa14c9cd3e663c03360931fb566f0915c17d.tar.gz
Attempt to fix a windows buildbot failure
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@372462 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/StaticAnalyzer/Checkers/MallocChecker.cpp4
1 files 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) {