Reword the comment again. I forgot to save before committing.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@51591 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2008-02-08 08:06:26 +00:00
parent 7f6224c05e
commit 1be61dfe2d

View File

@@ -99,10 +99,10 @@ inline void wxGCSafeRelease(Type *r)
#else #else
// NOTE: When not compiling Objective-C, declare these functions such that they can be // NOTE: When not compiling Objective-C, declare these functions such that they can be
// used by other inline-implemented methods. Since those methods in turn will not actually // used by other inline-implemented methods. Since those methods in turn will not actually
// be used from non-ObjC code the compiler ought not to emit them. If it emits an out // be used from non-ObjC code the compiler ought not emit them. If it emits an out of
// of line copy of functions using these functions then presumably it will have also emitted // line copy of those methods then presumably it will have also emitted at least one
// in at least one source file an out of line copy of these functions and there will be // out of line copy of these functions from at least one Objective-C++ translation unit.
// no problem at link time. // That means the out of line implementation will be available at link time.
template <class Type> template <class Type>
inline Type * wxGCSafeRetain(Type *r); inline Type * wxGCSafeRetain(Type *r);