Skip to content

Commit

Permalink
Remove unused catch parameter
Browse files Browse the repository at this point in the history
It triggers a warning on VS2017
  • Loading branch information
philipcraig committed May 1, 2018
1 parent da34d32 commit 2d38059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epi_judge_cpp_solutions/test_framework/generic_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ TestResult RunTests(GenericTestHandler<Function, Comparator>& handler,
} catch (TimeoutException& e) {
result = TIMEOUT;
test_timer = e.GetTimer();
} catch (std::runtime_error& e) {
} catch (std::runtime_error&) {
throw;
} catch (std::exception& e) {
result = UNKNOWN_EXCEPTION;
Expand Down

0 comments on commit 2d38059

Please sign in to comment.