1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-17 20:13:07 +00:00

modified code to avoid a warning on MSVC

This commit is contained in:
Marc Zinnschlag 2010-08-29 23:40:59 +02:00
parent d4bf916f18
commit a899a290c0

View file

@ -47,7 +47,7 @@ namespace MWScript
if (!mErrorHandler.isGood()) if (!mErrorHandler.isGood())
Success = false; Success = false;
} }
catch (const std::exception& error) catch (...)
{ {
Success = false; Success = false;
} }
@ -114,4 +114,3 @@ namespace MWScript
} }
} }
} }