mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-01 03:00:13 -04:00
Think I fixed OSX shared_ptr bug
This commit is contained in:
@@ -11,10 +11,11 @@
|
||||
#elif defined(__ISLINUX__)
|
||||
#include <tr1/memory>
|
||||
using namespace std::tr1;
|
||||
#elif defined(__ISAPPLE__) && (defined(__llvm__) || defined(__clang__))
|
||||
#include <memory>
|
||||
using std::shared_ptr;
|
||||
#elif defined(__ISAPPLE__)
|
||||
// See also http://stackoverflow.com/questions/13445742/apple-and-shared-ptr
|
||||
#include <tr1/memory>
|
||||
using std::tr1::shared_ptr;
|
||||
#elif defined(__GNUC__)
|
||||
#include <tr1/memory>
|
||||
using namespace std::tr1;
|
||||
#elif defined(__ISWINDOWS__) && defined(__MINGW32__)
|
||||
|
||||
Reference in New Issue
Block a user