1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-30 07:45:39 +00:00

Move crash_switch variable to cpp file

This commit is contained in:
elsid 2024-01-19 14:04:03 +01:00
parent 8348557893
commit fc12728d25
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625
2 changed files with 2 additions and 2 deletions

View file

@ -67,6 +67,8 @@ static struct
namespace
{
constexpr char crash_switch[] = "--cc-handle-crash";
struct SignalInfo
{
int mCode;

View file

@ -11,8 +11,6 @@
#define USE_CRASH_CATCHER 0
#endif
constexpr char crash_switch[] = "--cc-handle-crash";
#if USE_CRASH_CATCHER
extern void crashCatcherInstall(int argc, char** argv, const std::filesystem::path& crashLogPath);
#else