forked from OSchip/llvm-project
Rename the type argument for the iboutletcollection attribute to not
conflict with MinGW headers, from Kirk Beitz! llvm-svn: 127127
This commit is contained in:
parent
9bb83e85b8
commit
c81a7a2591
|
@ -266,7 +266,7 @@ def IBOutlet : InheritableAttr {
|
|||
|
||||
def IBOutletCollection : InheritableAttr {
|
||||
let Spellings = ["iboutletcollection"];
|
||||
let Args = [TypeArgument<"Interface">];
|
||||
let Args = [TypeArgument<"InterFace">];
|
||||
}
|
||||
|
||||
def Malloc : InheritableAttr {
|
||||
|
|
|
@ -4916,7 +4916,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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue