1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

Make void function to do not return value

This commit is contained in:
Andrei Kortunov 2018-07-09 21:51:38 +04:00
parent 0bdd8f7d03
commit 16a4df25d6

View file

@ -12,7 +12,9 @@
#if USE_CRASH_CATCHER #if USE_CRASH_CATCHER
extern void crashCatcherInstall(int argc, char **argv, const std::string &crashLogPath); extern void crashCatcherInstall(int argc, char **argv, const std::string &crashLogPath);
#else #else
inline void crashCatcherInstall(int, char **, const std::string &crashLogPath) { return 0; } inline void crashCatcherInstall(int, char **, const std::string &crashLogPath)
{
}
#endif #endif
#endif #endif