🚨 fixed a compilation issue with ICPC #755

Closes #1222
parent b59a5840
...@@ -442,7 +442,7 @@ class serializer ...@@ -442,7 +442,7 @@ class serializer
return; return;
} }
const bool is_negative = (x <= 0) and (x != 0); // see issue #755 const bool is_negative = not (x >= 0); // see issue #755
std::size_t i = 0; std::size_t i = 0;
while (x != 0) while (x != 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment