Silence warning about unused local symbol

This is intentional in this test.
This commit is contained in:
Michael Tautschnig 2018-11-10 11:25:44 +00:00
parent 386ea88275
commit f4ac10d26c
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ TEST_CASE("Iterating through a symbol table", "[core][utils][symbol_tablet]")
int counter = 0;
for(auto &entry : symbol_table)
{
(void)entry; // we are just testing iteration here
++counter;
}