-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b057c5d
commit e20230e
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
diff --git a/RefactorTest/Rename.cpp b/RefactorTest/Rename.cpp | ||
index 2d7e3d4..edc4dde 100644 | ||
index e83a77c..91a958c 100644 | ||
--- a/RefactorTest/Rename.cpp | ||
+++ b/RefactorTest/Rename.cpp | ||
@@ -8,7 +8,7 @@ | ||
@@ -10,7 +10,7 @@ | ||
// updates all references to the modified element. | ||
|
||
// #TEST#: R24 Rename this macro | ||
-#define MACRO_NO_ARGS 3.14159f | ||
+#define Goink 3.14159f | ||
+#define GOINK 3.14159f | ||
|
||
// #TEST#: R25 Rename the macro argument x_ from declaration | ||
// #TEST#: R99 Rename the macro argument x_ from usage | ||
@@ -280,7 +280,7 @@ void TestRename() | ||
@@ -596,7 +596,7 @@ void TestRename() | ||
// #TEST#: R23 rename the variable Y::x | ||
int y = test2.Operation() + X::x + X::y + Y::x; | ||
|
||
- float x = MACRO_NO_ARGS; | ||
+ float x = Goink; | ||
+ float x = GOINK; | ||
x = MACRO_ONE_ARG(2.0f); | ||
|
||
{ |