aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-09-13 18:49:52 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-09-13 18:49:52 +0000
commit18aa2ff4641847d7f8866e8c5912d4d0ddb858ce (patch)
tree60b237fe5e840110483a0a3d0824ec7ff37d1c14
parent6dc6f008994472cf4da321855e8c51c39720f3ed (diff)
Rename InterFace -> Interface, no functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139620 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/Attr.td2
-rw-r--r--tools/libclang/CIndex.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Basic/Attr.td b/include/clang/Basic/Attr.td
index 4db8ef2804..f61ae7f15d 100644
--- a/include/clang/Basic/Attr.td
+++ b/include/clang/Basic/Attr.td
@@ -288,7 +288,7 @@ def IBOutlet : InheritableAttr {
def IBOutletCollection : InheritableAttr {
let Spellings = ["iboutletcollection"];
- let Args = [TypeArgument<"InterFace">, SourceLocArgument<"InterFaceLoc">];
+ let Args = [TypeArgument<"Interface">, SourceLocArgument<"InterfaceLoc">];
}
def Malloc : InheritableAttr {
diff --git a/tools/libclang/CIndex.cpp b/tools/libclang/CIndex.cpp
index 412a59a028..40b21940af 100644
--- a/tools/libclang/CIndex.cpp
+++ b/tools/libclang/CIndex.cpp
@@ -5457,7 +5457,7 @@ CXType clang_getIBOutletCollectionType(CXCursor C) {
IBOutletCollectionAttr *A =
cast<IBOutletCollectionAttr>(cxcursor::getCursorAttr(C));
- return cxtype::MakeCXType(A->getInterFace(), cxcursor::getCursorTU(C));
+ return cxtype::MakeCXType(A->getInterface(), cxcursor::getCursorTU(C));
}
} // end: extern "C"