我正在使用Visual Studio 2015 Update 3.
我收到一个致命的错误:
(代码C1001):编译器中发生内部错误.
这是代码:
template<typename T>
constexpr T epsilon = std::numeric_limits<T>::epsilon();
Run Code Online (Sandbox Code Playgroud)
我读过它是在Visual Studio Update 2中修复的.有人可以解释我为什么会收到此错误吗?提前致谢.
c++ visual-c++ internal-compiler-error c++14 visual-studio-2015