mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-01 03:10:06 +00:00
Minor code clean-ups.
This commit is contained in:
parent
87e416a278
commit
266494a1b9
41 changed files with 1383 additions and 1427 deletions
|
|
@ -367,7 +367,7 @@ namespace NumberToStringConverters
|
|||
{
|
||||
juce_wchar* const end = buffer + numChars;
|
||||
juce_wchar* t = end;
|
||||
int64 v = (int64) (pow (10.0, numDecPlaces) * fabs (n) + 0.5);
|
||||
int64 v = (int64) (pow (10.0, numDecPlaces) * std::abs (n) + 0.5);
|
||||
*--t = (juce_wchar) 0;
|
||||
|
||||
while (numDecPlaces >= 0 || v > 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue