This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
This is the part that I find problematic. :-( The work contained in the two patches I posted last night, in addition to a couple of patches I committed previously (and a few more I have yet to offer) is all part of my ObjC++ integration (approved by the Steering Committee for 3.5 integration). Furthermore, these bits already live in objc-improvements-branch, available for the bootstrapping pleasure of all.
> - if (!objc_is_public (datum, component)) > + if (c_dialect_objc () && !objc_is_public (datum, component))
Most objc_* functions are designed not to need guarding with c_dialect_objc(), therefore I think it best if all of them don't; in other words, please cause objc_is_public to always return true when !c_dialect_objc, so this change will be unnecessary.
Again, perhaps Mark can issue a ruling here.
-- Mark Mitchell CodeSourcery, LLC mark@codesourcery.com
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |