Remove thread_local as it causes issues with shared library linking.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-07-28 19:24:35 +02:00
parent 1000893652
commit 18c7c3ddcb
2 changed files with 2 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
#include "Core.hpp" #include "Core.hpp"
std::string ExceptionHandler::_ArbutilsLastException = "";
export const char* Arbutils_C_GetLastException() { return ExceptionHandler::GetLastException(); } export const char* Arbutils_C_GetLastException() { return ExceptionHandler::GetLastException(); }

View File

@@ -9,7 +9,7 @@
#define ArbutilsException 3; #define ArbutilsException 3;
class ExceptionHandler { class ExceptionHandler {
static thread_local std::string _ArbutilsLastException; static std::string _ArbutilsLastException;
public: public:
static void SetLastException(const std::exception& e) { _ArbutilsLastException = std::string(e.what()); } static void SetLastException(const std::exception& e) { _ArbutilsLastException = std::string(e.what()); }