diff options
Diffstat (limited to 'src/server/util.hpp')
-rw-r--r-- | src/server/util.hpp | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/src/server/util.hpp b/src/server/util.hpp index 34e2ee79..abfa06b6 100644 --- a/src/server/util.hpp +++ b/src/server/util.hpp @@ -17,34 +17,19 @@ #ifndef INGEN_ENGINE_UTIL_HPP #define INGEN_ENGINE_UTIL_HPP -#include "ingen_config.h" - -#include "ingen/Log.hpp" -#include "raul/Path.hpp" +#include <ingen/Log.hpp> #ifdef __SSE__ #include <xmmintrin.h> #endif -#include <fenv.h> -#include <cstdlib> - #ifdef __clang__ # define REALTIME __attribute__((annotate("realtime"))) #else # define REALTIME #endif -#if defined(INGEN_HAVE_THREAD_LOCAL) -# define INGEN_THREAD_LOCAL thread_local -#elif defined(INGEN_HAVE_THREAD_BUILTIN) -# define INGEN_THREAD_LOCAL __thread -#else -# define INGEN_THREAD_LOCAL -#endif - -namespace ingen { -namespace server { +namespace ingen::server { /** Set flags to disable denormal processing. */ @@ -57,7 +42,6 @@ set_denormal_flags(ingen::Log& log) #endif } -} // namespace server -} // namespace ingen +} // namespace ingen::server #endif // INGEN_ENGINE_UTIL_HPP |