Skip to content

Commit 3721904

Browse files
committed
s [skip ci]
1 parent ea4be5d commit 3721904

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/vfvalue.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ namespace ValueFlow
309309
Impossible
310310
} valueKind = ValueKind::Possible;
311311

312-
long long : 8;
312+
std::int8_t indirect{}; // TODO: can we reduce the size?
313313

314314
/** int value (or sometimes bool value?) */
315315
long long intvalue{};
@@ -333,7 +333,7 @@ namespace ValueFlow
333333
/** For calculated values - varId that calculated value depends on */
334334
nonneg int varId{};
335335

336-
int indirect{}; // TODO: can we reduce the size?
336+
long long : 32;
337337

338338
/** Path id */
339339
MathLib::bigint path{};

0 commit comments

Comments
 (0)