Skip to content

Commit

Permalink
Revert "check warnings"
Browse files Browse the repository at this point in the history
This reverts commit 9fd5c41.
  • Loading branch information
mwestphal committed Dec 23, 2024
1 parent 9fd5c41 commit 74cee5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/testing/TestSDKOptions.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ int TestSDKOptions(int argc, char* argv[])
opt7.model.scivis.array_name = "dummy";
opt7.reset("model.scivis.array_name");
test.expect<f3d::options::no_value_exception>(
"reset non-optional values", [&]() { opt7.get("model.scivis.array_name"); });
"reset non-optional values", [&]() { std::ignore = opt7.get("model.scivis.array_name"); });

// Test reset non-existent option
test.expect<f3d::options::inexistent_exception>(
Expand Down

0 comments on commit 74cee5b

Please sign in to comment.