summaryrefslogtreecommitdiffstats
path: root/clang/utils
diff options
context:
space:
mode:
Diffstat (limited to 'clang/utils')
-rw-r--r--clang/utils/TableGen/ClangAttrEmitter.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/clang/utils/TableGen/ClangAttrEmitter.cpp b/clang/utils/TableGen/ClangAttrEmitter.cpp
index 71b5c3650f3..efb0b9b906b 100644
--- a/clang/utils/TableGen/ClangAttrEmitter.cpp
+++ b/clang/utils/TableGen/ClangAttrEmitter.cpp
@@ -1880,8 +1880,13 @@ static void GenerateHasAttrSpellingStringSwitch(
// present in the caller.
Test = "LangOpts.CPlusPlus11";
+ // FIXME: When MinGW support is dropped, or they gain support for
+ // std::to_string, this hack can be dropped as well.
+ std::stringstream ss;
+ ss << Version;
+
std::string TestStr =
- !Test.empty() ? Test + " ? " + std::to_string(Version) + " : 0" : "1";
+ !Test.empty() ? Test + " ? " + ss.str() + " : 0" : "1";
std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Attr);
for (const auto &S : Spellings)
if (Variety.empty() || (Variety == S.variety() &&
OpenPOWER on IntegriCloud