Go to the documentation of this file.
31 #include "../api_core.h"
33 #if defined(__APPLE__)
35 #define CL_UniquePtr std::tr1::unique_ptr
36 #define cl_move(a) std::tr1::move(a)
40 #if defined(_MSC_VER) && _MSC_VER < 1600
41 #define CL_UniquePtr std::auto_ptr
42 #define cl_move(a) (a)
44 #define CL_UniquePtr std::unique_ptr
45 #define cl_move(a) std::move(a)