]> granicus.if.org Git - clang/commitdiff
Rename InterFace -> Interface, no functionality change.
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Tue, 13 Sep 2011 18:49:52 +0000 (18:49 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Tue, 13 Sep 2011 18:49:52 +0000 (18:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139620 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/Attr.td
tools/libclang/CIndex.cpp

index 4db8ef280431a500a2c908c029bf4a99285f5b71..f61ae7f15db8061f757ab01d05d255d35bd83dc0 100644 (file)
@@ -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 {
index 412a59a02864a605a2130a4914df6a8cdf867dc6..40b21940afe0492ae9102d7e0ddb27a51d202dd1 100644 (file)
@@ -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"