1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-02 08:22:24 +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 { try {
return ep.parse(); return ep.parse();
} }
catch(hr_parse_exception& ex) { catch(hr_parse_exception&) {
return 0; return 0;
} }
} }