質問編集履歴
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
|
25
25
|
public:
|
26
26
|
|
27
|
-
int incremenFunc(int a){
|
27
|
+
int incrementFunc(int a){
|
28
28
|
|
29
29
|
return a+1;
|
30
30
|
|
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
void func(){
|
34
34
|
|
35
|
-
pointerReceiver(&A::incremenFunc,this,3);
|
35
|
+
pointerReceiver(&A::incrementFunc,this,3);
|
36
36
|
|
37
37
|
}
|
38
38
|
|