Fix a typo in the function name that I just introduced (r201155)
llvm-svn: 201156
diff --git a/clang/tools/libclang/CXSourceLocation.cpp b/clang/tools/libclang/CXSourceLocation.cpp
index c17449a..f78b687 100644
--- a/clang/tools/libclang/CXSourceLocation.cpp
+++ b/clang/tools/libclang/CXSourceLocation.cpp
@@ -122,7 +122,7 @@
CXFile file,
unsigned line,
unsigned column) {
- if (cxtu::isNotUseableTU(TU)) {
+ if (cxtu::isNotUsableTU(TU)) {
LOG_BAD_TU(TU);
return clang_getNullLocation();
}
@@ -155,7 +155,7 @@
CXSourceLocation clang_getLocationForOffset(CXTranslationUnit TU,
CXFile file,
unsigned offset) {
- if (cxtu::isNotUseableTU(TU)) {
+ if (cxtu::isNotUsableTU(TU)) {
LOG_BAD_TU(TU);
return clang_getNullLocation();
}