This is the mail archive of the gcc@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]

Re: c++/4047: assuming & on overloaded member functions


Nathan Sidwell <nathan@codesourcery.com> writes:

| Gabriel Dos Reis wrote:
| > 
| > "Yu Zhang/CanWest/IBM" <yuzhang@ca.ibm.com> writes:
| > 
| > | Hi Phil,
| > |
| > | Thank you very much. It does work! But I'm confused,
| > | which one is C++ standard?
| > | server.use(T::foo); or server.use(&T::foo); ?
| > 
| > &T::foo.
| This is correct to pointer to (non-static) member function. In Yu's
| case, T::foo is a static member, so the & is optional.

I stand corrected.  I missed the 'static' bit.

-- Gaby
CodeSourcery, LLC                       http://www.codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]