diff options
author | Jordan Rose <jordan_rose@apple.com> | 2013-02-09 10:09:43 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2013-02-09 10:09:43 +0000 |
commit | 223f0ff6a9a5d0eaf63b98b3aa92888b4c088868 (patch) | |
tree | 45a49912fa97753e4dd03ebe44f47808510bb1b8 /lib/Sema/SemaCodeComplete.cpp | |
parent | a4475a6b8277f24ed15d7b67d9dab77444c77cb1 (diff) |
Remove some stray uses of <ctype.h> functions.
These are causing assertions on some MSVC builds.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaCodeComplete.cpp')
-rw-r--r-- | lib/Sema/SemaCodeComplete.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Sema/SemaCodeComplete.cpp b/lib/Sema/SemaCodeComplete.cpp index 04f6ba72fc..738e31ac57 100644 --- a/lib/Sema/SemaCodeComplete.cpp +++ b/lib/Sema/SemaCodeComplete.cpp @@ -14,6 +14,7 @@ #include "clang/AST/DeclObjC.h" #include "clang/AST/ExprCXX.h" #include "clang/AST/ExprObjC.h" +#include "clang/Basic/CharInfo.h" #include "clang/Lex/HeaderSearch.h" #include "clang/Lex/MacroInfo.h" #include "clang/Lex/Preprocessor.h" @@ -6258,7 +6259,7 @@ static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property, // The uppercased name of the property name. std::string UpperKey = PropName->getName(); if (!UpperKey.empty()) - UpperKey[0] = toupper(UpperKey[0]); + UpperKey[0] = toUppercase(UpperKey[0]); bool ReturnTypeMatchesProperty = ReturnType.isNull() || Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(), |