Temporary hack to avoid linker errors when building with RosBE 1.5B1.

svn path=/trunk/; revision=43434
This commit is contained in:
Dmitry Gorbachev 2009-10-13 03:34:29 +00:00
parent dd487188b9
commit 05f6ac1ea8
2 changed files with 5 additions and 0 deletions

View file

@ -196,6 +196,8 @@ int WINAPI _tWinMain(HINSTANCE hInst, HINSTANCE hPrev, LPTSTR szCmdLine, int iCm
SaveSettings();
try { throw 0; } catch (int i) { } /* HACK */
return msg.wParam;
}

View file

@ -154,6 +154,9 @@ int WINAPI _tWinMain(HINSTANCE hInst, HINSTANCE hPrev, LPTSTR szCmdLine, int iCm
DispatchMessage(&msg);
}
}
try { throw 0; } catch (int i) { } /* HACK */
return msg.wParam;
}