summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/driver_unified.cpp3
-rw-r--r--src/main/main.h4
-rw-r--r--src/main/util.cpp1
3 files changed, 4 insertions, 4 deletions
diff --git a/src/main/driver_unified.cpp b/src/main/driver_unified.cpp
index 2a9202898..cad662d90 100644
--- a/src/main/driver_unified.cpp
+++ b/src/main/driver_unified.cpp
@@ -26,6 +26,7 @@
// This must come before PORTFOLIO_BUILD.
#include "cvc4autoconfig.h"
+#include "base/tls.h"
#include "base/configuration.h"
#include "base/output.h"
#include "expr/expr_iomanip.h"
@@ -55,7 +56,7 @@ using namespace CVC4::main;
namespace CVC4 {
namespace main {
/** Global options variable */
- CVC4_THREADLOCAL(Options*) pOptions;
+ CVC4_THREAD_LOCAL Options* pOptions;
/** Full argv[0] */
const char *progPath;
diff --git a/src/main/main.h b/src/main/main.h
index dcb5c2a0a..8a5d0971e 100644
--- a/src/main/main.h
+++ b/src/main/main.h
@@ -17,8 +17,8 @@
#include <exception>
#include <string>
-#include "base/exception.h"
#include "base/tls.h"
+#include "base/exception.h"
#include "cvc4autoconfig.h"
#include "expr/expr_manager.h"
#include "options/options.h"
@@ -54,7 +54,7 @@ extern CVC4::TimerStat* pTotalTime;
extern bool segvSpin;
/** A pointer to the options in play */
-extern CVC4_THREADLOCAL(Options*) pOptions;
+extern CVC4_THREAD_LOCAL Options* pOptions;
/** Initialize the driver. Sets signal handlers for SIGINT and SIGSEGV. */
void cvc4_init() throw(Exception);
diff --git a/src/main/util.cpp b/src/main/util.cpp
index e08628848..110fc2c67 100644
--- a/src/main/util.cpp
+++ b/src/main/util.cpp
@@ -33,7 +33,6 @@
#endif /* __WIN32__ */
#include "base/exception.h"
-#include "base/tls.h"
#include "cvc4autoconfig.h"
#include "main/command_executor.h"
#include "main/main.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback