Skip to content

Commit

Permalink
bugfix #221
Browse files Browse the repository at this point in the history
  • Loading branch information
kmfrank committed Nov 7, 2024
1 parent 62058bf commit 4fbeb4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/expressionsLib/src/ExprValue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ namespace OscExpression
else if (IsTypeNumeric())
{
double doubleValue = getDoubleValue();
if (doubleValue == std::ceil(doubleValue))
//if (doubleValue == std::ceil(doubleValue))
{
long long unambiguousValue = (long long)doubleValue;
std::string longStringValue = std::to_string(unambiguousValue);
Expand Down

0 comments on commit 4fbeb4d

Please sign in to comment.