Skip to content

Commit b61b6c8

Browse files
[gardening] Fix two recently introduced accidental double spaces
1 parent ca86883 commit b61b6c8

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)