Skip to content

Commit

Permalink
update fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kmfrank committed Nov 7, 2024
1 parent 4fbeb4d commit 735bfe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/expressionsLib/src/ExprValue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -432,8 +432,8 @@ namespace OscExpression
double doubleValue = getDoubleValue();
//if (doubleValue == std::ceil(doubleValue))
{
long long unambiguousValue = (long long)doubleValue;
std::string longStringValue = std::to_string(unambiguousValue);
//long long unambiguousValue = (long long)doubleValue;
std::string longStringValue = std::to_string(doubleValue);
convertedType = CreateStringValue(longStringValue);
}

Expand Down

0 comments on commit 735bfe9

Please sign in to comment.