From 089980a6ab9824f2cc36b91a544301b04052ec0a Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sat, 24 Aug 2024 16:18:46 -0700 Subject: [PATCH] fix windows build --- src/Main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.cc b/src/Main.cc index 2c723258..8a04ad8f 100644 --- a/src/Main.cc +++ b/src/Main.cc @@ -2811,7 +2811,7 @@ int main(int argc, char** argv) { // see what the exception message was. try { a->run(args); - } catch (const cannot_open_file& e) { + } catch (const phosg::cannot_open_file& e) { phosg::log_error("Top-level exception (cannot_open_file): %s", e.what()); throw; } catch (const invalid_argument& e) {