提交 a8b38b20 编写于 作者: O Olivier Commowick 提交者: Steven G. Johnson

Add usage of _MSVC_LANG for windows C++ standard check (#295)

* Add usage of _MSVC_LANG for windows C++ standard check

* Use MSC_VER instead or WIN32
上级 43f7081d
......@@ -36,7 +36,7 @@ public:
friend ostream & operator << (ostream &, RCTrial) ;
};
#if __cplusplus < 201103L
#if (!defined(_MSC_VER) && (__cplusplus < 201103L)) || (defined(_MSC_VER) && (_MSVC_LANG < 201103L))
class TrialGT : public unary_function<Trial, bool>
#else
class TrialGT
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册