1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-28 06:34:03 +00:00

Merge pull request #171 from jruderman/catch_name

Remove unused catch binding
This commit is contained in:
Zeno Rogue
2021-06-30 01:03:01 +02:00
committed by GitHub

View File

@@ -1744,7 +1744,7 @@ EX namespace patterns {
try {
return ep.parse();
}
catch(hr_parse_exception& ex) {
catch(hr_parse_exception&) {
return 0;
}
}