-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
不能在VS2013中使用 #114
Comments
问题应该不大,我好奇的是为啥不升级msvc呢,13都是10年前的版本了,很老了。 |
我们的用户都是传统的国企,甚至还有人在用vs2010,更有甚者有的部门居然在用vc6开发,希望能用上您的库,谢谢!!! |
能把具体的编译错误贴出来看看吗? |
vs2013中不支持constexpr,根据网上的说法替换成const后,编译example client 报如下错误: |
把 #if __cplusplus == 201103L 改成 #if _MSC_VER == 1800后,删除noexcept【vs2013不支持】,再次编译example客户端代码报错如下: |
拉一下最新代码试一下。 |
还是不行,在一些编译错误的文件中,我增加了 |
换新版本的msvc吧 |
虽然VS2013没有完整的支持C++11,cplusplus_14.h里面对VS2013的兼容没有起到作用,很多constexptr也不能使用,作者还会支持VS2013吗?
The text was updated successfully, but these errors were encountered: