1
0
forked from 0ad/0ad

Fixed allocators.h reference. Fixed repeated warning in GCC.

This was SVN commit r5535.
This commit is contained in:
Ykkrosh 2008-01-07 02:06:27 +00:00
parent ad55f9f1bc
commit 2c2a394a1e
2 changed files with 7 additions and 3 deletions

View File

@ -17,8 +17,8 @@
#include "app_hooks.h"
#include "path_util.h"
#include "debug_stl.h"
#include "allocators.h"
#include "fnv_hash.h"
#include "lib/allocators/allocators.h"
#include "lib/posix/posix_pthread.h"
#include "lib/sysdep/cpu.h" // cpu_CAS
#include "lib/sysdep/sysdep.h"

View File

@ -62,9 +62,13 @@
#include <boost/shared_array.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/scoped_ptr.hpp>
#pragma warning(push, 3) // filesystem isn't W4-clean
#if MSC_VERSION
# pragma warning(push, 3) // filesystem isn't W4-clean
#endif
#include <boost/filesystem.hpp>
#pragma warning(pop)
#if MSC_VERSION
# pragma warning(pop)
#endif
using boost::shared_ptr; // has been added to TR1
namespace fs = boost::filesystem;