Skip to content

Commit 01df702

Browse files
committed
Merge pull request #1407 from practicalswift/fix-accidental-double-spaces
[gardening] Fix two recently introduced accidental double spaces
2 parents ff50514 + b61b6c8 commit 01df702

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/stubs/Stubs.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#if defined(__CYGWIN__)
3333
#include <sstream>
3434
#include <cmath>
35-
#define fmodl(lhs, rhs) std::fmod(lhs, rhs)
35+
#define fmodl(lhs, rhs) std::fmod(lhs, rhs)
3636
#else
3737
#include <xlocale.h>
3838
#endif
@@ -171,7 +171,7 @@ static uint64_t swift_floatingPointToString(char *Buffer, size_t BufferLength,
171171
ValueStream.precision(Precision);
172172
ValueStream.imbue(std::locale::classic());
173173
ValueStream << Value;
174-
std::string ValueString(ValueStream.str());
174+
std::string ValueString(ValueStream.str());
175175
size_t i = ValueString.length();
176176

177177
if (i < BufferLength) {

0 commit comments

Comments
 (0)