Skip to content

Commit 65cd0d1

Browse files
committed
Fix unused variable
1 parent a89d25f commit 65cd0d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/show_versions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ TEST_CASE("show_versions - std_thread")
4444
TEST_CASE("show_versions - std_async")
4545
{
4646
auto handle = std::async(std::launch::async, []() { return 1; });
47-
auto result = handle.get();
47+
handle.get();
4848
}

0 commit comments

Comments
 (0)