Fix compilation error

This commit is contained in:
Gabriel Calero 2018-06-15 21:12:38 -03:00
parent 1cdd8c2f3c
commit 20c147ef11
6 changed files with 7 additions and 20 deletions

View file

@ -14,21 +14,8 @@
#include <string>
#if HAS_CRASHPAD
bool startCrashHandler();
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

View file

@ -1,5 +1,5 @@
//
// Crashpad.cpp
// CrashHandler_Breakpad.cpp
// interface/src
//
// Created by Clement Brisset on 01/19/18.

View file

@ -1,5 +1,5 @@
//
// Crashpad.cpp
// CrashHandler_Crashpad.cpp
// interface/src
//
// Created by Clement Brisset on 01/19/18.

View file

@ -1,5 +1,5 @@
//
// Crashpad.cpp
// CrashHandler_None.cpp
// interface/src
//
// Created by Clement Brisset on 01/19/18.

View file

@ -9,8 +9,8 @@
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#ifndef hifi_CrashHandler_h
#define hifi_CrashHandler_h
#ifndef hifi_CrashRecoveryHandler_h
#define hifi_CrashRecoveryHandler_h
#include <QString>
@ -30,4 +30,4 @@ private:
static void handleCrash(Action action);
};
#endif // hifi_CrashHandler_h
#endif // hifi_CrashRecoveryHandler_h

View file

@ -26,7 +26,7 @@
#include "AddressManager.h"
#include "Application.h"
#include "Crashpad.h"
#include "CrashHandler.h"
#include "InterfaceLogging.h"
#include "UserActivityLogger.h"
#include "MainWindow.h"