We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 36c0ebf + 326d423 commit 960ef61Copy full SHA for 960ef61
lib/Basic/UUID.cpp
@@ -23,6 +23,7 @@
23
#define NOMINMAX
24
#include <objbase.h>
25
#include <string>
26
+#include <algorithm>
27
#else
28
#include <uuid/uuid.h>
29
#endif
@@ -94,6 +95,7 @@ void swift::UUID::toString(llvm::SmallVectorImpl<char> &out) const {
94
95
96
char* signedStr = reinterpret_cast<char*>(str);
97
memcpy(out.data(), signedStr, StringBufferSize);
98
+ std::transform(std::begin(out), std::end(out), std::begin(out), toupper);
99
100
uuid_unparse_upper(Value, out.data());
101
0 commit comments