From 16fca2529b25a3e25365e64009a7016539346d7e Mon Sep 17 00:00:00 2001 From: David Williams Date: Sat, 9 May 2015 08:58:14 +0200 Subject: [PATCH] Moved Config.h out of the 'Impl' folder. It should probably be considered part of the public API as users may want to adjust it for their purposes. --- include/PolyVox/{Impl => }/Config.h | 0 include/PolyVox/Impl/Assertions.h | 3 ++- include/PolyVox/Impl/ExceptionsImpl.h | 2 +- include/PolyVox/Impl/LoggingImpl.h | 3 +-- 4 files changed, 4 insertions(+), 4 deletions(-) rename include/PolyVox/{Impl => }/Config.h (100%) diff --git a/include/PolyVox/Impl/Config.h b/include/PolyVox/Config.h similarity index 100% rename from include/PolyVox/Impl/Config.h rename to include/PolyVox/Config.h diff --git a/include/PolyVox/Impl/Assertions.h b/include/PolyVox/Impl/Assertions.h index cf20efad..d33669a5 100644 --- a/include/PolyVox/Impl/Assertions.h +++ b/include/PolyVox/Impl/Assertions.h @@ -24,7 +24,8 @@ distribution. #ifndef __PolyVox_Assertions_H__ #define __PolyVox_Assertions_H__ -#include "PolyVox/Impl/Config.h" +#include "PolyVox/Config.h" + #include "PolyVox/Impl/LoggingImpl.h" // Asserts can log when they fire. #include "PolyVox/Impl/PlatformDefinitions.h" diff --git a/include/PolyVox/Impl/ExceptionsImpl.h b/include/PolyVox/Impl/ExceptionsImpl.h index c552d8cc..cfc18756 100644 --- a/include/PolyVox/Impl/ExceptionsImpl.h +++ b/include/PolyVox/Impl/ExceptionsImpl.h @@ -24,9 +24,9 @@ distribution. #ifndef __PolyVox_ExceptionsImpl_H__ #define __PolyVox_ExceptionsImpl_H__ +#include "PolyVox/Config.h" #include "PolyVox/Exceptions.h" -#include "PolyVox/Impl/Config.h" #include "PolyVox/Impl/LoggingImpl.h" // Exceptions can log when they are thrown. #include // For std::exit diff --git a/include/PolyVox/Impl/LoggingImpl.h b/include/PolyVox/Impl/LoggingImpl.h index 3a6db1f3..2020cfb6 100644 --- a/include/PolyVox/Impl/LoggingImpl.h +++ b/include/PolyVox/Impl/LoggingImpl.h @@ -24,10 +24,9 @@ freely, subject to the following restrictions: #ifndef __PolyVox_LoggingImpl_H__ #define __PolyVox_LoggingImpl_H__ +#include "PolyVox/Config.h" #include "PolyVox/Logging.h" -#include "PolyVox/Impl/Config.h" - #include