Commit 3c95be50 authored by Sebastian Wolf's avatar Sebastian Wolf
Browse files

Fix compilation error when xerus is used with boost type traits

parent 35f44e64
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -57,14 +57,14 @@ namespace xerus {
			
			// If the LOG_BUFFER is active there is the additional option only to print the log if an error occurs.
			#ifdef XERUS_LOG_BUFFER
				enum {
				enum LogLvl {
					NOT_LOGGING = 0,
					LOGGING_ON_ERROR = 1,
					LOGGING_FULL = 2,
					LOGGING_EXCEPTION = 3
				};
			#else
				enum {
				enum LogLvl {
					NOT_LOGGING = 0,
					LOGGING_FULL = 2,
					LOGGING_EXCEPTION = 3
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ endif
ifdef DEBUG_OPTIMIZATION
	DEBUG += -D DEBUG_OPTIMIZATION
	ifndef USE_CLANG
		OPTIMIZE += -Og
		OPTIMIZE += -Og -fno-inline -ggdb
	endif
else ifdef HIGH_OPTIMIZATION
	DEBUG += -D HIGH_OPTIMIZATION