Fix clang warning -Wmissing-variable-declarations

This commit is contained in:
Roelf-Jilling 2018-11-15 22:18:04 +01:00
parent 9a625ab71c
commit 329da83fd1

View File

@ -80,7 +80,7 @@ TEST_CASE("finally_function_with_bind")
CHECK(i == 1);
}
int j = 0;
static int j = 0;
void g() { j += 1; }
TEST_CASE("finally_function_ptr")
{