Ok,

I found this post and the double cast works:

http://gcc.gnu.org/ml/gcc-bugs/2000-09/msg00537.html


On 21 août, 15:23, acemtp <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have an error when compiling this little program:
>
> --------------
> class CReflectable
> {
>
> };
>
> typedef int(CReflectable::* TGetSInt32) () const;
>
> class A : public CReflectable
> {
>     int getW() const { return 1; }
>     int getW(bool bTestActive) const { return 0; }
>
> };
>
> main()
> {
>     TGetSInt32 p;
>     p = (TGetSInt32) &A::getW;}
>
> --------------
>
> The error is:
>
> foo.cpp: In function 'int main()':
> foo.cpp:17: error: address of overloaded function with no contextual
> type information
>
> How to resolve this issue? (except than renaming the getW(bool)
> function)

_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to