Skip to content

Commit 3e84140

Browse files
committed
Deactivate long double entirely for JSON/TOML
1 parent 502993f commit 3e84140

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/SerialIOTest.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,8 +1342,7 @@ TEST_CASE("particle_patches", "[serial]")
13421342

13431343
inline void dtype_test(const std::string &backend)
13441344
{
1345-
bool test_long_double =
1346-
(backend != "json" && backend != "toml") || sizeof(long double) <= 8;
1345+
bool test_long_double = backend != "json" && backend != "toml";
13471346
bool test_long_long = (backend != "json") || sizeof(long long) <= 8;
13481347
{
13491348
Series s = Series("../samples/dtype_test." + backend, Access::CREATE);

0 commit comments

Comments
 (0)