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.

This commit is contained in:
David Williams 2015-05-09 08:58:14 +02:00
parent 65b0d1c3c5
commit 16fca2529b
4 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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 <cstdlib> // For std::exit

View File

@ -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 <sstream>