1
0
Fork 0

Fixed ProtoProxy compilation in MSVC2013.

Fixes #983.
This commit is contained in:
madmaxoft 2014-05-04 14:39:21 +02:00
parent bcd8f727b4
commit e88811e589
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ typedef unsigned char Byte;
#if (defined(_MSC_VER) && (_MSC_VER < 1600))
// MSVC before 2010 doesn't have std::shared_ptr, but has std::tr1::shared_ptr, defined in <memory> included earlier
#define SharedPtr std::tr1::shared_ptr
#elif (__cplusplus >= 201103L)
#elif (defined(_MSC_VER) || (__cplusplus >= 201103L))
// C++11 has std::shared_ptr in <memory>, included earlier
#define SharedPtr std::shared_ptr
#else