Rename InterFace -> Interface, no functionality change.

llvm-svn: 139620
This commit is contained in:
Argyrios Kyrtzidis 2011-09-13 18:49:52 +00:00
parent 94312285b7
commit c179111536
2 changed files with 2 additions and 2 deletions

View 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 {

View 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"