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:
parent
0bdd8f7d03
commit
16a4df25d6
1 changed files with 3 additions and 1 deletions
|
@ -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…
Reference in a new issue