T
Tristan Wibberley
Hi all,
What type has the expression &Class::Memberfn in the presence of the
below class definition?
class Class {
public:
void Memberfn();
void Memberfn(int);
};
Is it some anonymous type with implicit conversions to void (Class::*)
() and void (Class::*)(int) ?
In C++0x, what will "auto x = &Class::Memberfn" do?
--
Tristan Wibberley
Any opinion expressed is mine (or else I'm playing devils advocate for
the sake of a good argument). My employer had nothing to do with this
communication.
What type has the expression &Class::Memberfn in the presence of the
below class definition?
class Class {
public:
void Memberfn();
void Memberfn(int);
};
Is it some anonymous type with implicit conversions to void (Class::*)
() and void (Class::*)(int) ?
In C++0x, what will "auto x = &Class::Memberfn" do?
--
Tristan Wibberley
Any opinion expressed is mine (or else I'm playing devils advocate for
the sake of a good argument). My employer had nothing to do with this
communication.