Skip to content

Commit c90fda6

Browse files
author
Kristof Umann
committed
Attempt to fix a windows buildbot failure
llvm-svn: 372462
1 parent 1b58389 commit c90fda6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ class RefState {
137137

138138
const Stmt *S;
139139

140-
Kind K : 3;
141-
AllocationFamily Family : 3;
140+
Kind K;
141+
AllocationFamily Family;
142142

143143
RefState(Kind k, const Stmt *s, AllocationFamily family)
144144
: S(s), K(k), Family(family) {

0 commit comments

Comments
 (0)