Try to fix Cppcheck warning to make Cppcheck happy

This commit is contained in:
Daniel Marjamäki 2019-08-02 07:57:34 +02:00
parent 0d1685cd29
commit 41549f4801
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@ private:
givenACodeSampleToTokenize var("int a ; int b ;");
// Varid == 0 should throw exception
ASSERT_THROW(Token::Match(var.tokens(), "%type% %varid% ; %type% %name%", 0),InternalError);
ASSERT_THROW((void)Token::Match(var.tokens(), "%type% %varid% ; %type% %name%", 0),InternalError);
ASSERT_EQUALS(true, Token::Match(var.tokens(), "%type% %varid% ; %type% %name%", 1));
ASSERT_EQUALS(true, Token::Match(var.tokens(), "%type% %name% ; %type% %varid%", 2));