Make void function to do not return value

pull/457/head
Andrei Kortunov 7 years ago
parent 0bdd8f7d03
commit 16a4df25d6

@ -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

Loading…
Cancel
Save