Check if _MSC_VER is defined before using.
Fixes compilation errors on some platforms.
This commit is contained in:
parent
ef807f4bc5
commit
8b2f96d3fe
2 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@
|
|||
#define _COMMON_INCLUDED_
|
||||
|
||||
|
||||
#if defined(__ANDROID__) || _MSC_VER < 1700
|
||||
#if defined(__ANDROID__) || (defined(_MSC_VER) && _MSC_VER < 1700)
|
||||
#include <sstream>
|
||||
namespace std {
|
||||
template<typename T>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue