-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAP110.txt
More file actions
26 lines (23 loc) · 1.06 KB
/
AP110.txt
File metadata and controls
26 lines (23 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff --git a/RefactorTest/AddParameter.cpp b/RefactorTest/AddParameter.cpp
index 663c3ba..3e75451 100644
--- a/RefactorTest/AddParameter.cpp
+++ b/RefactorTest/AddParameter.cpp
@@ -225,7 +225,7 @@ void AddParameterStruct::AddParameterRef(const int &first)
// #TEST#: AP150 Add parameter before first, int goink
// #TEST#: AP151 Add parameter after first, int goink = 1
-void AddParameterStruct::AddParameterDefault(int first)
+void AddParameterStruct::AddParameterDefault(int first, int goink)
{
}
diff --git a/RefactorTest/AddParameter.h b/RefactorTest/AddParameter.h
index fa2ecc5..0608b6f 100644
--- a/RefactorTest/AddParameter.h
+++ b/RefactorTest/AddParameter.h
@@ -134,7 +134,7 @@ struct AddParameterStruct
void AddParameterRef(const int &first);
// #TEST#: AP31 Add parameter before first, int goink
// #TEST#: AP32 Add parameter after first, int goink = 1
- void AddParameterDefault(int first = 0);
+ void AddParameterDefault(int first = 0, int goink = 1);
// #TEST#: AP33 Add parameter, int goink
static void AddParameterStaticInline()