update
From-SVN: r19428
This commit is contained in:
parent
6b2fe0fbe4
commit
6c58160c11
1 changed files with 2 additions and 2 deletions
|
@ -7,6 +7,6 @@ public:
|
|||
int DoSomething();
|
||||
};
|
||||
|
||||
int (Foo::*pA)() = { &Foo::DoSomething }; // ERROR -
|
||||
int (Foo::*X[1])(int) = { { &Foo::DoSomething } }; // ERROR -
|
||||
int (Foo::*pA)() = { &Foo::DoSomething };
|
||||
int (Foo::*X[1])(int) = { { &Foo::DoSomething } }; // ERROR -
|
||||
int (Foo::*Y[])(int) = { { &Foo::DoSomething, &Foo::DoSomething, 0 } }; // ERROR -
|
||||
|
|
Loading…
Add table
Reference in a new issue