You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to build all targets in Visual Studio 2017 using yaml-cpp 0.5.3 an compiler error occurs in an yaml-cpp header that uses std::auto_ptr. std::auto_ptr is deprecated and was removed in c++17, and for some reason c++17 is used in the Visual Studio build:
When trying to build all targets in Visual Studio 2017 using yaml-cpp 0.5.3 an compiler error occurs in an yaml-cpp header that uses
std::auto_ptr
.std::auto_ptr
is deprecated and was removed in c++17, and for some reason c++17 is used in the Visual Studio build:halley/cmake/HalleyProject.cmake
Line 69 in 7d57310
Not sure why c++17 is used here and c++14 used for other platforms.
Header with
std::auto_ptr
: https://github.com/jbeder/yaml-cpp/blob/yaml-cpp-0.5.3/include/yaml-cpp/parser.h#L43The text was updated successfully, but these errors were encountered: