Skip to content

Commit 32e2a5b

Browse files
committed
test/testother.cpp: Fix a C4800 MSVC warning.
1 parent 22351a7 commit 32e2a5b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/testother.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ class TestOther : public TestFixture {
562562
const SymbolDatabase *symbolDatabase = tokenizer.getSymbolDatabase();
563563
ASSERT_EQUALS(2U, symbolDatabase->getVariableListSize());
564564
const Variable *var = symbolDatabase->getVariableFromVarId(1U);
565-
ASSERT(var->typeStartToken());
565+
ASSERT(!!var->typeStartToken());
566566
bool invalid = true;
567567
for (const Token *tok = var->typeStartToken(); tok; tok = tok->next()) {
568568
invalid = true;

0 commit comments

Comments
 (0)