mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:49:24 +02:00
Fix compilation error
This commit is contained in:
parent
1cdd8c2f3c
commit
20c147ef11
6 changed files with 7 additions and 20 deletions
|
@ -14,21 +14,8 @@
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#if HAS_CRASHPAD
|
|
||||||
|
|
||||||
bool startCrashHandler();
|
bool startCrashHandler();
|
||||||
void setCrashAnnotation(std::string name, std::string value);
|
void setCrashAnnotation(std::string name, std::string value);
|
||||||
|
|
||||||
#elif HAS_BREAKPAD
|
|
||||||
|
|
||||||
bool startCrashHandler();
|
|
||||||
void setCrashAnnotation(std::string name, std::string value);
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
bool startCrashHandler();
|
|
||||||
void setCrashAnnotation(std::string name, std::string value);
|
|
||||||
|
|
||||||
#endif // hifi_Crashpad_h
|
|
||||||
|
|
||||||
#endif
|
#endif
|
|
@ -1,5 +1,5 @@
|
||||||
//
|
//
|
||||||
// Crashpad.cpp
|
// CrashHandler_Breakpad.cpp
|
||||||
// interface/src
|
// interface/src
|
||||||
//
|
//
|
||||||
// Created by Clement Brisset on 01/19/18.
|
// Created by Clement Brisset on 01/19/18.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
//
|
//
|
||||||
// Crashpad.cpp
|
// CrashHandler_Crashpad.cpp
|
||||||
// interface/src
|
// interface/src
|
||||||
//
|
//
|
||||||
// Created by Clement Brisset on 01/19/18.
|
// Created by Clement Brisset on 01/19/18.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
//
|
//
|
||||||
// Crashpad.cpp
|
// CrashHandler_None.cpp
|
||||||
// interface/src
|
// interface/src
|
||||||
//
|
//
|
||||||
// Created by Clement Brisset on 01/19/18.
|
// Created by Clement Brisset on 01/19/18.
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifndef hifi_CrashHandler_h
|
#ifndef hifi_CrashRecoveryHandler_h
|
||||||
#define hifi_CrashHandler_h
|
#define hifi_CrashRecoveryHandler_h
|
||||||
|
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
|
@ -30,4 +30,4 @@ private:
|
||||||
static void handleCrash(Action action);
|
static void handleCrash(Action action);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // hifi_CrashHandler_h
|
#endif // hifi_CrashRecoveryHandler_h
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
#include "AddressManager.h"
|
#include "AddressManager.h"
|
||||||
#include "Application.h"
|
#include "Application.h"
|
||||||
#include "Crashpad.h"
|
#include "CrashHandler.h"
|
||||||
#include "InterfaceLogging.h"
|
#include "InterfaceLogging.h"
|
||||||
#include "UserActivityLogger.h"
|
#include "UserActivityLogger.h"
|
||||||
#include "MainWindow.h"
|
#include "MainWindow.h"
|
||||||
|
|
Loading…
Reference in a new issue