Skip to content

Commit

Permalink
Deactivate long double entirely for JSON/TOML
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Aug 4, 2023
1 parent 502993f commit 3e84140
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/SerialIOTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1342,8 +1342,7 @@ TEST_CASE("particle_patches", "[serial]")

inline void dtype_test(const std::string &backend)
{
bool test_long_double =
(backend != "json" && backend != "toml") || sizeof(long double) <= 8;
bool test_long_double = backend != "json" && backend != "toml";
bool test_long_long = (backend != "json") || sizeof(long long) <= 8;
{
Series s = Series("../samples/dtype_test." + backend, Access::CREATE);
Expand Down

0 comments on commit 3e84140

Please sign in to comment.