[cfe-commits] r69305 - in /cfe/trunk: lib/CodeGen/CGObjCMac.cpp test/CodeGenObjC/metadata_symbols.m
Fariborz Jahanian
fjahanian at apple.com
Thu Apr 16 14:47:13 PDT 2009
On Apr 16, 2009, at 2:33 PM, Daniel Dunbar wrote:
> On Thu, Apr 16, 2009 at 11:34 AM, Fariborz Jahanian <fjahanian at apple.com
> > wrote:
> @@ -3043,6 +3043,12 @@
> NameOut += '[';
> assert (CD && "Missing container decl in GetNameForMethod");
> NameOut += CD->getNameAsString();
> + if (const ObjCCategoryImplDecl *CID =
> + dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext())) {
> + NameOut += '(';
> + NameOut += CID->getNameAsString();
> + NameOut+= ')';
> + }
> // FIXME. For a method in a category, (CAT_NAME) is inserted here.
> // Right now! there is not enough info. to do this.
>
> This FIXME is done now, right?
Yes. Will remove it in a bit.
- fj
>
> - Daniel
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20090416/835fce39/attachment.html>
More information about the cfe-commits
mailing list