We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was just merging the recent commits and encountered a conflict due to a typo in pull #185 (my bad).
At line 4863 is the following:
else if (lhs_type == value_t::number_integer and rhs_type == value_t::number_float) { return static_cast<number_float_t>(lhs.m_value.number_integer == rhs.m_value.number_float); } else if (lhs_type == value_t::number_float and rhs_type == value_t::number_integer) { return lhs.m_value.number_float == static_cast<number_float_t>(rhs.m_value.number_integer); }
The top return value is incorrect as the parenthesis should surround only lhs.m_value.number_integer
lhs.m_value.number_integer
The text was updated successfully, but these errors were encountered:
Thanks! I'll fix it.
Sorry, something went wrong.
3245a0d
nlohmann
No branches or pull requests
I was just merging the recent commits and encountered a conflict due to a typo in pull #185 (my bad).
At line 4863 is the following:
The top return value is incorrect as the parenthesis should surround only
lhs.m_value.number_integer
The text was updated successfully, but these errors were encountered: