summaryrefslogtreecommitdiffstats
path: root/tools/libclang/CIndexCodeCompletion.cpp
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2014-02-11 15:02:48 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2014-02-11 15:02:48 +0000
commit5d1b349501cff576489840f63a4a4d0025a86ae2 (patch)
treef86c6af1a87c6fa54dbb959044f4e29abdc107e4 /tools/libclang/CIndexCodeCompletion.cpp
parentf9db0e03400cc37d75790e6e4ab4b5fefd10d7ce (diff)
Fix a typo in the function name that I just introduced (r201155)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201156 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/CIndexCodeCompletion.cpp')
-rw-r--r--tools/libclang/CIndexCodeCompletion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libclang/CIndexCodeCompletion.cpp b/tools/libclang/CIndexCodeCompletion.cpp
index 0a978566f9..ca4960cc26 100644
--- a/tools/libclang/CIndexCodeCompletion.cpp
+++ b/tools/libclang/CIndexCodeCompletion.cpp
@@ -681,7 +681,7 @@ void clang_codeCompleteAt_Impl(void *UserData) {
bool EnableLogging = getenv("LIBCLANG_CODE_COMPLETION_LOGGING") != 0;
- if (cxtu::isNotUseableTU(TU)) {
+ if (cxtu::isNotUsableTU(TU)) {
LOG_BAD_TU(TU);
return;
}