Activates C++11 only when used with SDL and mingw

This commit is contained in:
xawotihs
2013-12-08 23:02:41 +01:00
parent 28ec24430d
commit eff0b677fb

View File

@@ -1,7 +1,7 @@
#ifndef WRESOURCE_FWD_H
#define WRESOURCE_FWD_H
#if !defined(WP8) && !defined(SDL_CONFIG)
#if !defined(WP8) && !(defined(SDL_CONFIG) && defined(__MINGW32__))
#include <boost/shared_ptr.hpp>
typedef boost::shared_ptr<JQuad> JQuadPtr;
#else