Skip to content

Commit 5546a23

Browse files
committed
Fix empty variadic arg warning
1 parent 268a619 commit 5546a23

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/catch2/internal/catch_run_context.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ namespace Catch {
6565
INTERNAL_CATCH_MSG(
6666
"SKIP",
6767
Catch::ResultWas::ExplicitSkip,
68-
Catch::ResultDisposition::Normal );
68+
Catch::ResultDisposition::Normal,
69+
"" );
6970
Catch::Detail::Unreachable();
7071
}
7172
// '*' is the wildcard for "all elements in generator"

0 commit comments

Comments
 (0)