Skip to content

Commit

Permalink
Update R24 test case diff
Browse files Browse the repository at this point in the history
  • Loading branch information
LegalizeAdulthood committed Jan 4, 2024
1 parent b057c5d commit e20230e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions results/diffs/R24.txt
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);

{

0 comments on commit e20230e

Please sign in to comment.