msvc began to use C++14 features in their STL library so tests compiling with C++11 fails
@@ -31,5 +31,5 @@ package("fast_float")
double result;
auto answer = fast_float::from_chars(input.data(), input.data()+input.size(), result);
}
- ]]}, {configs = {languages = "c++11"}, includes = {"fast_float/fast_float.h"}}))
+ ]]}, {configs = {languages = "c++14"}, includes = {"fast_float/fast_float.h"}}))
end)
@@ -48,5 +48,5 @@ package("nlohmann_json")
json data;
data["name"] = "world";
- ]]}, {configs = {languages = "c++11"}, includes = {"nlohmann/json.hpp"}}))
+ ]]}, {configs = {languages = "c++14"}, includes = {"nlohmann/json.hpp"}}))
@@ -32,5 +32,5 @@ package("ordered_map")
std::cout << "{" << key_value.first << ", " << key_value.second << "}" << std::endl;
- ]]}, {configs = {languages = "c++11"}, includes = { "tsl/ordered_map.h"} }))
+ ]]}, {configs = {languages = "c++14"}, includes = { "tsl/ordered_map.h"} }))