s/CPlusPlus0x/CPlusPlus11/g

llvm-svn: 171367
This commit is contained in:
Richard Smith
2013-01-02 11:42:31 +00:00
parent 9fb823bbd4
commit 2bf7fdb723
61 changed files with 327 additions and 327 deletions

View File

@@ -496,7 +496,7 @@ bool PrintfSpecifier::fixType(QualType QT, const LangOptions &LangOpt,
}
// Handle size_t, ptrdiff_t, etc. that have dedicated length modifiers in C99.
if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus0x))
if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
namedTypeToLengthModifier(QT, LM);
// If fixing the length modifier was enough, we are done.