cleanup after #191

This commit is contained in:
Niels 2016-01-24 17:33:46 +01:00
parent ad5d1dabb2
commit 54a4139157
4 changed files with 799 additions and 421 deletions

View file

@ -11602,7 +11602,8 @@ TEST_CASE("regression tests")
CHECK(j_double.get<double>() == 1.23e45);
// long double
nlohmann::basic_json<std::map, std::vector, std::string, bool, int64_t, long double> j_long_double = 1.23e45L;
nlohmann::basic_json<std::map, std::vector, std::string, bool, int64_t, long double> j_long_double =
1.23e45L;
CHECK(j_long_double.get<long double>() == 1.23e45L);
}
}