From 631ad458294c3776206e4cf9cc4e6cb186f2dd68 Mon Sep 17 00:00:00 2001 From: Richard Date: Sun, 21 Jan 2024 10:06:50 -0700 Subject: [PATCH] Update summaries with annotated results --- PreliminaryResults.md | 4 +- SummaryResults.md | 2 +- results/annotated/CLionResults.md | 2248 ++++++++++++++++ results/annotated/ClangTidyResults.md | 230 ++ results/annotated/ReSharperCppResults.md | 2283 +++++++++++++++++ results/annotated/VisualAssistXResults.md | 1708 ++++++++++++ results/annotated/VisualStudioResults.md | 1935 ++++++++++++++ .../annotated/AppleXcodeResults.md | 1537 +++++++++++ .../annotated/EclipseCDTResults.md | 1834 +++++++++++++ .../preliminary/annotated/QtCreatorResults.md | 1538 +++++++++++ 10 files changed, 13316 insertions(+), 3 deletions(-) create mode 100644 results/annotated/CLionResults.md create mode 100644 results/annotated/ClangTidyResults.md create mode 100644 results/annotated/ReSharperCppResults.md create mode 100644 results/annotated/VisualAssistXResults.md create mode 100644 results/annotated/VisualStudioResults.md create mode 100644 results/preliminary/annotated/AppleXcodeResults.md create mode 100644 results/preliminary/annotated/EclipseCDTResults.md create mode 100644 results/preliminary/annotated/QtCreatorResults.md diff --git a/PreliminaryResults.md b/PreliminaryResults.md index fc81962..8330173 100644 --- a/PreliminaryResults.md +++ b/PreliminaryResults.md @@ -1,11 +1,11 @@ # Summary Results -Refactoring | [Xcode](results/AppleXcodeResults.md) | [Eclipse CDT](results/EclipseCDTResults.md) | [Qt Creator](results/QtCreatorResults.md) +Refactoring | [Xcode](results/annotated/AppleXcodeResults.md) | [Eclipse CDT](results/annotated/EclipseCDTResults.md) | [Qt Creator](results/annotated/QtCreatorResults.md) ----------- | ----- | ----------- | ---------- Create Overload | (n/a) | 100% (1/56) | (n/a) Create Setter Method | (n/a) | 100% (2/31) | (n/a) Extract Constant | (n/a) | 100% (1/13) | (n/a) -Extract Function | (n/a) | 100% (2/20) | (n/a) +Extract Function | (n/a) | 100% (2/19) | (n/a) Extract Method | (n/a) | 100% (1/21) | (n/a) Extract Variable | (n/a) | 100% (1/6) | (n/a) Move Implementation to Source File | (n/a) | 100% (1/26) | (n/a) diff --git a/SummaryResults.md b/SummaryResults.md index b5c728c..94eeba2 100644 --- a/SummaryResults.md +++ b/SummaryResults.md @@ -1,6 +1,6 @@ # Summary Results -Refactoring | [clang-tidy](results/ClangTidyResults.md) | [CLion](results/CLionResults.md) | [ReSharper for C++](results/ReSharperCppResults.md) | [Visual AssistX](results/VisualAssistXResults.md) | [Visual Studio](results/VisualStudioResults.md) +Refactoring | [clang-tidy](results/annotated/ClangTidyResults.md) | [CLion](results/annotated/CLionResults.md) | [ReSharper for C++](results/annotated/ReSharperCppResults.md) | [Visual AssistX](results/annotated/VisualAssistXResults.md) | [Visual Studio](results/annotated/VisualStudioResults.md) ----------- | ---------- | ----- | ----------------- | -------------- | ------------- Add Block Delimiter | 100% (7/7) | 100% (7/7) | 100% (7/7) | (n/a) | 100% (7/7) Add Override | 100% (16/16) | (n/a) | 100% (16/16) | (n/a) | (n/a) diff --git a/results/annotated/CLionResults.md b/results/annotated/CLionResults.md new file mode 100644 index 0000000..e8e0200 --- /dev/null +++ b/results/annotated/CLionResults.md @@ -0,0 +1,2248 @@ +# CLion + +Home: [CLion](https://www.jetbrains.com/clion/) + +Version: 2023.3.2 + +Notes: + +* Methodology: + * Default suggestions are selected when refactoring. + * Some refactorings can be performed successfully if suggestions are excluded. + * If a refactoring is performed via clang-tidy those results are omitted. +* **Add Block Delimiter** is performed by placing the cursor on the enclosing + control statement and applying the action *Add braces to '...' statement*. +* **Add Override** can be performed through clang-tidy integration. +* **Add Parameter** is performed with **Change Signature**. +* **Create Setter Method** is performed with *Code / Generate... / Setter* on the enclosing class. +* **Flatten Conditional** is performed by repeatedly applying the action + *Merge Nested Ifs*. +* **Inline Macro** is performed by applying the action *Substitue macro once*. +* **Make Method Static** is available through clang-tidy integration. +* **Remove Block Delimiter** is performed by applying the action + *Remove braces from '...' statement*. +* For **Rename** only code usages were renamed, if prompted. +* **Reorder Parameters** is performed with **Change Signature**. +* **Replace If With Ternary** is performed by applying the action + *Replace 'if else' with '?:'*. +* **Replace Ternary With If** is performed by applying the action + *Replace '?;' with 'if else'*. +* **Replace Type With auto** is performed by applying the action + *Replace the type with 'auto'*. +* **Reverse Conditional** is performed by applying the action + *Invert 'if' condition*. +* **Simplify Boolean Expression** is performed by applying the action + *Simplify expression*. +* **Split Initialization From Declaration** is performed by applying the action + *Split into declaration and assignment*. +* **Split Multi-Variable Declaration** is performed by applying the action + *Split into separate declarations*. + +
+ +## Add Block Delimiter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +ABD1 | Pass | [`AddBlockDelimiter.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L11) | [ABD1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD1.txt) +ABD2 | Pass | [`AddBlockDelimiter.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L14) | [ABD2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD2.txt) +ABD3 | Pass | [`AddBlockDelimiter.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L17) | [ABD3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD3.txt) +ABD4 | Pass | [`AddBlockDelimiter.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L21) | [ABD4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD4.txt) +ABD5 | Pass | [`AddBlockDelimiter.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L23) | [ABD5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD5.txt) +ABD6 | Pass | [`AddBlockDelimiter.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L25) | [ABD6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD6.txt) +ABD7 | Pass | [`AddBlockDelimiter.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L27) | [ABD7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD7.txt) + +## Add Parameter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +AP1 | Pass | [`AddParameter.h`, line 3](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L3) | [AP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP1.txt) +AP2 | Pass | [`AddParameter.h`, line 5](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L5) | [AP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP2.txt) +AP3 | Failure (creates invalid code) [36993](https://youtrack.jetbrains.com/issue/CPP-36993/Change-Signature-creates-invalid-code-when-definition-and-declaration-use-different-argument-names) | [`AddParameter.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L7) | [AP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP3.txt) +AP4 | Pass | [`AddParameter.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L9) | [AP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP4.txt) +AP5 | Pass | [`AddParameter.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L11) | [AP5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP5.txt) +AP6 | Pass | [`AddParameter.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L13) | [AP6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP6.txt) +AP7 | Pass | [`AddParameter.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L19) | [AP7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP7.txt) +AP8 | Pass | [`AddParameter.h`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L27) | [AP8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP8.txt) +AP9 | Pass | [`AddParameter.h`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L32) | [AP9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP9.txt) +AP10 | Pass | [`AddParameter.h`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L38) | [AP10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP10.txt) +AP11 | Pass | [`AddParameter.h`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L40) | [AP11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP11.txt) +AP12 | Pass | [`AddParameter.h`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L42) | [AP12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP12.txt) +AP13 | Pass | [`AddParameter.h`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L45) | [AP13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP13.txt) +AP14 | Pass | [`AddParameter.h`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L49) | [AP14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP14.txt) +AP15 | Pass | [`AddParameter.h`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L53) | [AP15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP15.txt) +AP16 | Pass | [`AddParameter.h`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L55) | [AP16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP16.txt) +AP17 | Pass | [`AddParameter.h`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L58) | [AP17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP17.txt) +AP18 | Pass | [`AddParameter.h`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L64) | [AP18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP18.txt) +AP19 | Pass | [`AddParameter.h`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L74) | [AP19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP19.txt) +AP20 | Pass | [`AddParameter.h`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L80) | [AP20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP20.txt) +AP21 | Pass | [`AddParameter.h`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L86) | [AP21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP21.txt) +AP22 | Pass | [`AddParameter.h`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L91) | [AP22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP22.txt) +AP23 | Pass | [`AddParameter.h`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L96) | [AP23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP23.txt) +AP24 | Pass | [`AddParameter.h`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L103) | [AP24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP24.txt) +AP25 | Failure (not available) [16560](https://youtrack.jetbrains.com/issue/CPP-16560) | [`AddParameter.h`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L106) | [AP25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP25.txt) +AP26 | Pass | [`AddParameter.h`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L112) | [AP26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP26.txt) +AP27 | Pass | [`AddParameter.h`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L120) | [AP27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP27.txt) +AP28 | Pass | [`AddParameter.h`, line 126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L126) | [AP28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP28.txt) +AP29 | Pass | [`AddParameter.h`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L131) | [AP29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP29.txt) +AP30 | Pass | [`AddParameter.h`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L133) | [AP30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP30.txt) +AP31 | Pass | [`AddParameter.h`, line 135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L135) | [AP31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP31.txt) +AP32 | Failure (creates invalid code) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.h`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L136) | [AP32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP32.txt) +AP33 | Pass | [`AddParameter.h`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L139) | [AP33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP33.txt) +AP34 | Pass | [`AddParameter.h`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L143) | [AP34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP34.txt) +AP35 | Failure (creates invalid code) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.h`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L144) | [AP35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP35.txt) +AP36 | Pass | [`AddParameter.h`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L148) | [AP36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP36.txt) +AP37 | Pass | [`AddParameter.h`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L150) | [AP37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP37.txt) +AP38 | Failure (creates invalid code) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.h`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L151) | [AP38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP38.txt) +AP39 | Pass | [`AddParameter.h`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L154) | [AP39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP39.txt) +AP40 | Pass | [`AddParameter.h`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L160) | [AP40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP40.txt) +AP41 | Pass | [`AddParameter.h`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L169) | [AP41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP41.txt) +AP42 | Pass | [`AddParameter.h`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L177) | [AP42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP42.txt) +AP43 | Pass | [`AddParameter.h`, line 183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L183) | [AP43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP43.txt) +AP44 | Pass | [`AddParameter.h`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L188) | [AP44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP44.txt) +AP45 | Pass | [`AddParameter.h`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L190) | [AP45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP45.txt) +AP46 | Pass | [`AddParameter.h`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L192) | [AP46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP46.txt) +AP47 | Pass | [`AddParameter.h`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L195) | [AP47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP47.txt) +AP48 | Pass | [`AddParameter.h`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L199) | [AP48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP48.txt) +AP49 | Failure (creates invalid code) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.h`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L200) | [AP49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP49.txt) +AP50 | Pass | [`AddParameter.h`, line 204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L204) | [AP50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP50.txt) +AP51 | Pass | [`AddParameter.h`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L206) | [AP51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP51.txt) +AP52 | Failure (creates invalid code) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.h`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L207) | [AP52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP52.txt) +AP53 | Pass | [`AddParameter.h`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L210) | [AP53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP53.txt) +AP54 | Pass | [`AddParameter.h`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L216) | [AP54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP54.txt) +AP55 | Pass | [`AddParameter.h`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L226) | [AP55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP55.txt) +AP56 | Pass | [`AddParameter.h`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L234) | [AP56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP56.txt) +AP57 | Pass | [`AddParameter.h`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L240) | [AP57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP57.txt) +AP58 | Pass | [`AddParameter.h`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L245) | [AP58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP58.txt) +AP59 | Pass | [`AddParameter.h`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L247) | [AP59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP59.txt) +AP60 | Pass | [`AddParameter.h`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L249) | [AP60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP60.txt) +AP61 | Pass | [`AddParameter.h`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L252) | [AP61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP61.txt) +AP62 | Pass | [`AddParameter.h`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L256) | [AP62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP62.txt) +AP63 | Pass | [`AddParameter.h`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L260) | [AP63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP63.txt) +AP64 | Pass | [`AddParameter.h`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L262) | [AP64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP64.txt) +AP65 | Pass | [`AddParameter.h`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L265) | [AP65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP65.txt) +AP66 | Pass | [`AddParameter.h`, line 271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L271) | [AP66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP66.txt) +AP67 | Pass | [`AddParameter.h`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L276) | [AP67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP67.txt) +AP68 | Pass | [`AddParameter.h`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L281) | [AP68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP68.txt) +AP69 | Pass | [`AddParameter.h`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L293) | [AP69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP69.txt) +AP70 | Failure (changes unrelated code) [36995](https://youtrack.jetbrains.com/issue/CPP-36995/Change-Signature-modifies-unrelated-code) | [`AddParameter.h`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L301) | [AP70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP70.txt) +AP71 | Pass | [`AddParameter.h`, line 309](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L309) | [AP71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP71.txt) +AP72 | Failure (changes unrelated code) [36995](https://youtrack.jetbrains.com/issue/CPP-36995/Change-Signature-modifies-unrelated-code) | [`AddParameter.h`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L314) | [AP72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP72.txt) +AP73 | Pass | [`AddParameter.h`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L324) | [AP73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP73.txt) +AP74 | Pass | [`AddParameter.h`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L330) | [AP74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP74.txt) +AP75 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.h`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L336) | [AP75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP75.txt) +AP76 | Pass | [`AddParameter.h`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L342) | [AP76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP76.txt) +AP77 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.h`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L348) | [AP77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP77.txt) +AP78 | Pass | [`AddParameter.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L14) | [AP78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP78.txt) +AP79 | Failure (doesn't update other template arguments) [16560](https://youtrack.jetbrains.com/issue/CPP-16560) | [`AddParameter.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L20) | [AP79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP79.txt) +AP80 | Failure (doesn't update template related uses) [36992](https://youtrack.jetbrains.com/issue/CPP-36992/Change-Signature-doesnt-update-related-template-usages) | [`AddParameter.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L28) | [AP80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP80.txt) +AP81 | Pass | [`AddParameter.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L36) | [AP81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP81.txt) +AP82 | Pass | [`AddParameter.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L38) | [AP82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP82.txt) +AP83 | Pass | [`AddParameter.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L40) | [AP83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP83.txt) +AP84 | Pass | [`AddParameter.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L43) | [AP84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP84.txt) +AP85 | Pass | [`AddParameter.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L47) | [AP85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP85.txt) +AP86 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L49) | [AP86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP86.txt) +AP87 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L51) | [AP87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP87.txt) +AP88 | Pass | [`AddParameter.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L55) | [AP88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP88.txt) +AP89 | Pass | [`AddParameter.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L57) | [AP89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP89.txt) +AP90 | Pass | [`AddParameter.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L59) | [AP90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP90.txt) +AP91 | Pass | [`AddParameter.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L61) | [AP91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP91.txt) +AP92 | Pass | [`AddParameter.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L63) | [AP92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP92.txt) +AP93 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L65) | [AP93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP93.txt) +AP94 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L67) | [AP94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP94.txt) +AP95 | Pass | [`AddParameter.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L70) | [AP95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP95.txt) +AP96 | Pass | [`AddParameter.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L72) | [AP96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP96.txt) +AP97 | Pass | [`AddParameter.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L74) | [AP97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP97.txt) +AP98 | Pass | [`AddParameter.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L76) | [AP98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP98.txt) +AP99 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L78) | [AP99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP99.txt) +AP100 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L80) | [AP100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP100.txt) +AP101 | Pass | [`AddParameter.cpp`, line 82](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L82) | [AP101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP101.txt) +AP102 | Pass | [`AddParameter.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L84) | [AP102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP102.txt) +AP103 | Pass | [`AddParameter.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L86) | [AP103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP103.txt) +AP104 | Pass | [`AddParameter.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L88) | [AP104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP104.txt) +AP105 | Pass | [`AddParameter.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L92) | [AP105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP105.txt) +AP106 | Pass | [`AddParameter.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L94) | [AP106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP106.txt) +AP107 | Pass | [`AddParameter.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L96) | [AP107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP107.txt) +AP108 | Pass | [`AddParameter.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L98) | [AP108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP108.txt) +AP109 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L100) | [AP109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP109.txt) +AP110 | Failure (not available) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L101) | [AP110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP110.txt) +AP111 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L103) | [AP111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP111.txt) +AP112 | Failure (not available) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L104) | [AP112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP112.txt) +AP113 | Pass | [`AddParameter.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L106) | [AP113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP113.txt) +AP114 | Pass | [`AddParameter.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L108) | [AP114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP114.txt) +AP115 | Failure (not available) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L109) | [AP115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP115.txt) +AP116 | Pass | [`AddParameter.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L111) | [AP116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP116.txt) +AP117 | Failure (not available) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L112) | [AP117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP117.txt) +AP118 | Pass | [`AddParameter.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L114) | [AP118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP118.txt) +AP119 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L116) | [AP119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP119.txt) +AP120 | Failure (not available) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L117) | [AP120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP120.txt) +AP121 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L119) | [AP121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP121.txt) +AP122 | Failure (not available) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L120) | [AP122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP122.txt) +AP123 | Pass | [`AddParameter.cpp`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L122) | [AP123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP123.txt) +AP124 | Pass | [`AddParameter.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L124) | [AP124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP124.txt) +AP125 | Pass | [`AddParameter.cpp`, line 126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L126) | [AP125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP125.txt) +AP126 | Pass | [`AddParameter.cpp`, line 128](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L128) | [AP126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP126.txt) +AP127 | Failure (changes unrelated code) [36995](https://youtrack.jetbrains.com/issue/CPP-36995/Change-Signature-modifies-unrelated-code) | [`AddParameter.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L132) | [AP127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP127.txt) +AP128 | Pass | [`AddParameter.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L134) | [AP128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP128.txt) +AP129 | Failure (changes unrelated code) [36995](https://youtrack.jetbrains.com/issue/CPP-36995/Change-Signature-modifies-unrelated-code) | [`AddParameter.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L136) | [AP129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP129.txt) +AP130 | Failure (changes unrelated code) [36995](https://youtrack.jetbrains.com/issue/CPP-36995/Change-Signature-modifies-unrelated-code) | [`AddParameter.cpp`, line 141](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L141) | [AP130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP130.txt) +AP131 | Failure (changes unrelated code) [36995](https://youtrack.jetbrains.com/issue/CPP-36995/Change-Signature-modifies-unrelated-code) | [`AddParameter.cpp`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L145) | [AP131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP131.txt) +AP132 | Pass | [`AddParameter.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L150) | [AP132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP132.txt) +AP133 | Pass | [`AddParameter.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L154) | [AP133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP133.txt) +AP134 | Pass | [`AddParameter.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L157) | [AP134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP134.txt) +AP135 | Pass | [`AddParameter.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L164) | [AP135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP135.txt) +AP136 | Pass | [`AddParameter.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L167) | [AP136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP136.txt) +AP137 | Pass | [`AddParameter.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L171) | [AP137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP137.txt) +AP138 | Pass | [`AddParameter.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L176) | [AP138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP138.txt) +AP139 | Pass | [`AddParameter.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L181) | [AP139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP139.txt) +AP140 | Pass | [`AddParameter.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L187) | [AP140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP140.txt) +AP141 | Pass | [`AddParameter.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L192) | [AP141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP141.txt) +AP142 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L197) | [AP142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP142.txt) +AP143 | Pass | [`AddParameter.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L202) | [AP143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP143.txt) +AP144 | Pass | [`AddParameter.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L207) | [AP144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP144.txt) +AP145 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L212) | [AP145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP145.txt) +AP146 | Pass | [`AddParameter.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L217) | [AP146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP146.txt) +AP147 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L222) | [AP147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP147.txt) +AP148 | Pass | [`AddParameter.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L227) | [AP148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP148.txt) +AP149 | Pass | [`AddParameter.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L232) | [AP149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP149.txt) +AP150 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L237) | [AP150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP150.txt) +AP151 | Failure (not available) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments) | [`AddParameter.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L238) | [AP151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP151.txt) +AP152 | Pass | [`AddParameter.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L243) | [AP152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP152.txt) +AP153 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L248) | [AP153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP153.txt) +AP154 | Failure (not available) [36994](https://youtrack.jetbrains.com/issue/CPP-36994/Change-SIgnature-cant-add-new-default-arguments)**** | [`AddParameter.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L249) | [AP154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP154.txt) +AP155 | Pass | [`AddParameter.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L264) | [AP155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP155.txt) +AP156 | Pass | [`AddParameter.cpp`, line 267](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L267) | [AP156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP156.txt) +AP157 | Pass | [`AddParameter.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L276) | [AP157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP157.txt) +AP158 | Pass | [`AddParameter.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L279) | [AP158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP158.txt) +AP159 | Pass | [`AddParameter.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L288) | [AP159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP159.txt) +AP160 | Pass | [`AddParameter.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L294) | [AP160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP160.txt) +AP161 | Pass | [`AddParameter.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L306) | [AP161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP161.txt) +AP162 | Pass | [`AddParameter.cpp`, line 309](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L309) | [AP162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP162.txt) +AP163 | Pass | [`AddParameter.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L313) | [AP163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP163.txt) +AP164 | Pass | [`AddParameter.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L319) | [AP164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP164.txt) +AP165 | Pass | [`AddParameter.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L325) | [AP165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP165.txt) +AP166 | Pass | [`AddParameter.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L331) | [AP166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP166.txt) +AP167 | Pass | [`AddParameter.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L334) | [AP167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP167.txt) +AP168 | Pass | [`AddParameter.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L341) | [AP168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP168.txt) +AP169 | Pass | [`AddParameter.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L343) | [AP169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP169.txt) +AP170 | Pass | [`AddParameter.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L348) | [AP170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP170.txt) +AP171 | Pass | [`AddParameter.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L351) | [AP171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP171.txt) +AP172 | Pass | [`AddParameter.cpp`, line 356](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L356) | [AP172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP172.txt) +AP173 | Pass | [`AddParameter.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L359) | [AP173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP173.txt) +AP174 | Pass | [`AddParameter.cpp`, line 367](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L367) | [AP174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP174.txt) +AP175 | Pass | [`AddParameter.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L369) | [AP175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP175.txt) +AP176 | Pass | [`AddParameter.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L371) | [AP176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP176.txt) +AP177 | Pass | [`AddParameter.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L374) | [AP177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP177.txt) +AP178 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L376) | [AP178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP178.txt) +AP179 | Pass | [`AddParameter.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L378) | [AP179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP179.txt) +AP180 | Pass | [`AddParameter.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L380) | [AP180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP180.txt) +AP181 | Pass | [`AddParameter.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L382) | [AP181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP181.txt) +AP182 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L384) | [AP182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP182.txt) +AP183 | Pass | [`AddParameter.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L386) | [AP183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP183.txt) +AP184 | Pass | [`AddParameter.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L388) | [AP184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP184.txt) +AP185 | Pass | [`AddParameter.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L392) | [AP185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP185.txt) +AP186 | Pass | [`AddParameter.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L394) | [AP186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP186.txt) +AP187 | Pass | [`AddParameter.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L396) | [AP187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP187.txt) +AP188 | Pass | [`AddParameter.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L399) | [AP188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP188.txt) +AP189 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L401) | [AP189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP189.txt) +AP190 | Pass | [`AddParameter.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L403) | [AP190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP190.txt) +AP191 | Pass | [`AddParameter.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L405) | [AP191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP191.txt) +AP192 | Pass | [`AddParameter.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L407) | [AP192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP192.txt) +AP193 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L409) | [AP193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP193.txt) +AP194 | Pass | [`AddParameter.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L411) | [AP194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP194.txt) +AP195 | Pass | [`AddParameter.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L413) | [AP195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP195.txt) +AP196 | Pass | [`AddParameter.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L415) | [AP196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP196.txt) +AP197 | Pass | [`AddParameter.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L418) | [AP197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP197.txt) +AP198 | Pass | [`AddParameter.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L425) | [AP198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP198.txt) +AP199 | Pass | [`AddParameter.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L430) | [AP199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP199.txt) +AP200 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L435) | [AP200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP200.txt) +AP201 | Pass | [`AddParameter.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L440) | [AP201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP201.txt) +AP202 | Failure (drops default argument) [36991](https://youtrack.jetbrains.com/issue/CPP-36991/Change-Signature-drops-default-argument-unnecessarily) | [`AddParameter.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L445) | [AP202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP202.txt) + +## Change Signature +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +CS1 | Pass | [`ChangeSignature.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L8) | [CS1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS1.txt) +CS2 | Pass | [`ChangeSignature.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L9) | [CS2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS2.txt) +CS3 | Pass | [`ChangeSignature.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L10) | [CS3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS3.txt) +CS4 | Pass | [`ChangeSignature.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L11) | [CS4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS4.txt) +CS5 | Pass | [`ChangeSignature.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L12) | [CS5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS5.txt) +CS6 | Pass | [`ChangeSignature.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L18) | [CS6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS6.txt) +CS7 | Pass | [`ChangeSignature.h`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L26) | [CS7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS7.txt) +CS8 | Pass | [`ChangeSignature.h`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L27) | [CS8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS8.txt) +CS9 | Pass | [`ChangeSignature.h`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L28) | [CS9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS9.txt) +CS10 | Pass | [`ChangeSignature.h`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L29) | [CS10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS10.txt) +CS11 | Pass | [`ChangeSignature.h`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L30) | [CS11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS11.txt) +CS12 | Pass | [`ChangeSignature.h`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L36) | [CS12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS12.txt) +CS13 | Pass | [`ChangeSignature.h`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L37) | [CS13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS13.txt) +CS14 | Pass | [`ChangeSignature.h`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L38) | [CS14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS14.txt) +CS15 | Pass | [`ChangeSignature.h`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L39) | [CS15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS15.txt) +CS16 | Pass | [`ChangeSignature.h`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L40) | [CS16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS16.txt) +CS17 | Pass | [`ChangeSignature.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L46) | [CS17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS17.txt) +CS18 | Pass | [`ChangeSignature.h`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L47) | [CS18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS18.txt) +CS19 | Pass | [`ChangeSignature.h`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L48) | [CS19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS19.txt) +CS20 | Pass | [`ChangeSignature.h`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L49) | [CS20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS20.txt) +CS21 | Pass | [`ChangeSignature.cpp`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L9) | [CS21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS21.txt) +CS22 | Pass | [`ChangeSignature.cpp`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L10) | [CS22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS22.txt) +CS23 | Pass | [`ChangeSignature.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L11) | [CS23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS23.txt) +CS24 | Pass | [`ChangeSignature.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L12) | [CS24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS24.txt) +CS25 | Pass | [`ChangeSignature.cpp`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L13) | [CS25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS25.txt) +CS26 | Pass | [`ChangeSignature.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L19) | [CS26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS26.txt) +CS27 | Pass | [`ChangeSignature.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L20) | [CS27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS27.txt) +CS28 | Pass | [`ChangeSignature.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L21) | [CS28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS28.txt) +CS29 | Pass | [`ChangeSignature.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L22) | [CS29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS29.txt) +CS30 | Pass | [`ChangeSignature.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L23) | [CS30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS30.txt) +CS31 | Pass | [`ChangeSignature.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L34) | [CS31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS31.txt) +CS32 | Pass | [`ChangeSignature.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L35) | [CS32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS32.txt) +CS33 | Pass | [`ChangeSignature.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L36) | [CS33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS33.txt) +CS34 | Pass | [`ChangeSignature.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L37) | [CS34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS34.txt) +CS35 | Pass | [`ChangeSignature.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L38) | [CS35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS35.txt) +CS36 | Pass | [`ChangeSignature.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L44) | [CS36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS36.txt) +CS37 | Pass | [`ChangeSignature.cpp`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L45) | [CS37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS37.txt) +CS38 | Pass | [`ChangeSignature.cpp`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L46) | [CS38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS38.txt) +CS39 | Pass | [`ChangeSignature.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L47) | [CS39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS39.txt) +CS40 | Pass | [`ChangeSignature.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L48) | [CS40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS40.txt) +CS41 | Pass | [`ChangeSignature.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L66) | [CS41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS41.txt) +CS42 | Pass | [`ChangeSignature.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L67) | [CS42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS42.txt) +CS43 | Pass | [`ChangeSignature.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L68) | [CS43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS43.txt) +CS44 | Pass | [`ChangeSignature.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L69) | [CS44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS44.txt) +CS45 | Pass | [`ChangeSignature.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L70) | [CS45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS45.txt) + +## Create Method Stub +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +CMS1 | Pass | [`CreateMethodStub.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L27) | [CMS1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS1.txt) +CMS2 | Pass | [`CreateMethodStub.cpp`, line 31](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L31) | [CMS2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS2.txt) +CMS3 | Failure (not available) [1908](https://youtrack.jetbrains.com/issue/CPP-1908) | [`CreateMethodStub.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L61) | [CMS3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS3.txt) +CMS4 | Failure (not available) [1908](https://youtrack.jetbrains.com/issue/CPP-1908) | [`CreateMethodStub.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L63) | [CMS4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS4.txt) +CMS5 | Failure (not available) [1908](https://youtrack.jetbrains.com/issue/CPP-1908) | [`CreateMethodStub.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L65) | [CMS5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS5.txt) +CMS6 | Pass | [`CreateMethodStub.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L69) | [CMS6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS6.txt) +CMS7 | Pass | [`CreateMethodStub.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L75) | [CMS7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS7.txt) +CMS8 | Pass | [`CreateMethodStub.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L85) | [CMS8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS8.txt) +CMS9 | Pass | [`CreateMethodStub.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L99) | [CMS9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS9.txt) +CMS10 | Pass | [`CreateMethodStub.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L111) | [CMS10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS10.txt) +CMS11 | Pass | [`CreateMethodStub.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L120) | [CMS11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS11.txt) +CMS12 | Pass | [`CreateMethodStub.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L127) | [CMS12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS12.txt) +CMS13 | Pass | [`CreateMethodStub.cpp`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L133) | [CMS13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS13.txt) +CMS14 | Pass | [`CreateMethodStub.cpp`, line 140](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L140) | [CMS14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS14.txt) +CMS15 | Pass | [`CreateMethodStub.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L148) | [CMS15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS15.txt) +CMS16 | Pass | [`CreateMethodStub.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L151) | [CMS16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS16.txt) +CMS17 | Pass | [`CreateMethodStub.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L154) | [CMS17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS17.txt) +CMS18 | Pass | [`CreateMethodStub.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L157) | [CMS18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS18.txt) +CMS19 | Failure (doesn't create default c'tor) [1601](https://youtrack.jetbrains.com/issue/CPP-1601) | [`CreateMethodStub.cpp`, line 162](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L162) | [CMS19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS19.txt) +CMS20 | Failure (doesn't create default c'tor) [1601](https://youtrack.jetbrains.com/issue/CPP-1601) | [`CreateMethodStub.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L166) | [CMS20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS20.txt) +CMS21 | Pass | [`CreateMethodStub.cpp`, line 172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L172) | [CMS21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS21.txt) +CMS22 | Pass | [`CreateMethodStub.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L175) | [CMS22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS22.txt) + +## Create Setter Method +Case | Result | Location +---- | ------ | -------- +CSM1 | Pass | [`CreateSetterMethod.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L16) +CSM2 | Pass | [`CreateSetterMethod.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L19) +CSM3 | Pass | [`CreateSetterMethod.h`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L44) +CSM4 | Pass | [`CreateSetterMethod.h`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L47) +CSM5 | Pass | [`CreateSetterMethod.h`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L50) +CSM6 | Pass | [`CreateSetterMethod.h`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L53) +CSM7 | Pass | [`CreateSetterMethod.h`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L56) +CSM8 | Pass | [`CreateSetterMethod.h`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L59) +CSM9 | Pass | [`CreateSetterMethod.h`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L62) +CSM10 | Pass | [`CreateSetterMethod.h`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L65) +CSM11 | Pass | [`CreateSetterMethod.h`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L68) +CSM12 | Pass | [`CreateSetterMethod.h`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L71) +CSM13 | Pass | [`CreateSetterMethod.h`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L101) +CSM14 | Pass | [`CreateSetterMethod.h`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L104) +CSM15 | Pass | [`CreateSetterMethod.h`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L107) +CSM16 | Pass | [`CreateSetterMethod.h`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L110) +CSM17 | Pass | [`CreateSetterMethod.h`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L113) +CSM18 | Pass | [`CreateSetterMethod.h`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L116) +CSM19 | Pass | [`CreateSetterMethod.h`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L123) +CSM20 | Pass | [`CreateSetterMethod.h`, line 126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L126) +CSM21 | Pass | [`CreateSetterMethod.h`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L129) +CSM22 | Pass | [`CreateSetterMethod.h`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L132) +CSM23 | Pass | [`CreateSetterMethod.h`, line 135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L135) +CSM24 | (deprecated) | [`CreateSetterMethod.h`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L138) +CSM25 | Pass | [`CreateSetterMethod.h`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L143) +CSM26 | Pass | [`CreateSetterMethod.h`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L146) +CSM27 | Pass | [`CreateSetterMethod.h`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L152) +CSM28 | Pass | [`CreateSetterMethod.h`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L156) +CSM29 | Pass | [`CreateSetterMethod.h`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L159) +CSM30 | Pass | [`CreateSetterMethod.h`, line 162](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L162) +CSM31 | Pass | [`CreateSetterMethod.h`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L165) + +## Extract Constant +Case | Result | Location +---- | ------ | -------- +EC1 | Failure (can't extract to class scope) [1928](https://youtrack.jetbrains.com/issue/CPP-1928) | [`ExtractConstant.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L17) +EC2 | Pass | [`ExtractConstant.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L18) +EC3 | Pass | [`ExtractConstant.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L19) +EC4 | Pass | [`ExtractConstant.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L20) +EC5 | Pass | [`ExtractConstant.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L33) +EC6 | Failure (can't extract to class scope) [1928](https://youtrack.jetbrains.com/issue/CPP-1928) | [`ExtractConstant.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L38) +EC7 | Pass | [`ExtractConstant.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L39) +EC8 | Pass | [`ExtractConstant.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L40) +EC9 | Pass | [`ExtractConstant.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L41) +EC10 | Pass | [`ExtractConstant.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L94) +EC11 | Pass | [`ExtractConstant.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L97) +EC12 | Pass | [`ExtractConstant.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L100) +EC13 | Pass | [`ExtractConstant.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L105) + +## Extract Function +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EXF1 | Pass | [`ExtractFunction.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L11) | [EXF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF1.txt) +EXF2 | Pass | [`ExtractFunction.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L14) | [EXF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF2.txt) +EXF3 | Pass | [`ExtractFunction.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L17) | [EXF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF3.txt) +EXF4 | Pass | [`ExtractFunction.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L20) | [EXF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF4.txt) +EXF5 | Pass | [`ExtractFunction.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L23) | [EXF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF5.txt) +EXF6 | Pass | [`ExtractFunction.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L26) | [EXF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF6.txt) +EXF7 | Pass | [`ExtractFunction.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L30) | [EXF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF7.txt) +EXF8 | Pass | [`ExtractFunction.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L33) | [EXF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF8.txt) +EXF9 | Pass | [`ExtractFunction.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L36) | [EXF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF9.txt) +EXF10 | Pass | [`ExtractFunction.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L39) | [EXF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF10.txt) +EXF11 | Pass | [`ExtractFunction.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L42) | [EXF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF11.txt) +EXF12 | Pass | [`ExtractFunction.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L60) | [EXF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF12.txt) +EXF13 | Pass | [`ExtractFunction.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L76) | [EXF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF13.txt) +EXF14 | Failure (changes member ptr to fn ptr) [1915](https://youtrack.jetbrains.com/issue/CPP-1915) | [`ExtractFunction.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L113) | [EXF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF14.txt) +EXF15 | Failure (changes member ptr to fn ptr) [1915](https://youtrack.jetbrains.com/issue/CPP-1915) | [`ExtractFunction.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L129) | [EXF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF15.txt) +EXF16 | Failure (changes member ptr to fn ptr) [1915](https://youtrack.jetbrains.com/issue/CPP-1915) | [`ExtractFunction.cpp`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L144) | [EXF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF16.txt) +EXF17 | Failure (changes member ptr to fn ptr) [1915](https://youtrack.jetbrains.com/issue/CPP-1915) | [`ExtractFunction.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L160) | [EXF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF17.txt) +EXF18 | Failure (changes member ptr to fn ptr) [1916](https://youtrack.jetbrains.com/issue/CPP-1916) | [`ExtractFunction.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L186) | [EXF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF18.txt) +EXF19 | Pass | [`ExtractFunction2.c`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction2.c#L9) | [EXF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF19.txt) + +## Extract Method +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EM1 | Pass | [`ExtractMethod.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L19) | [EM1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM1.txt) +EM2 | Pass | [`ExtractMethod.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L26) | [EM2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM2.txt) +EM3 | Failure (generates invalid code) [1917](https://youtrack.jetbrains.com/issue/CPP-1917) | [`ExtractMethod.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L38) | [EM3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM3.txt) +EM4 | Failure (generates invalid code) [1917](https://youtrack.jetbrains.com/issue/CPP-1917) | [`ExtractMethod.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L58) | [EM4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM4.txt) +EM5 | Pass | [`ExtractMethod.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L74) | [EM5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM5.txt) +EM6 | Failure (generates invalid code) [1917](https://youtrack.jetbrains.com/issue/CPP-1917) | [`ExtractMethod.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L75) | [EM6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM6.txt) +EM7 | Failure (generates invalid code) [1917](https://youtrack.jetbrains.com/issue/CPP-1917) | [`ExtractMethod.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L90) | [EM7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM7.txt) +EM8 | Pass | [`ExtractMethod.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L106) | [EM8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM8.txt) +EM9 | Pass | [`ExtractMethod.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L124) | [EM9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM9.txt) +EM10 | Failure (generates invalid code) [1917](https://youtrack.jetbrains.com/issue/CPP-1917) | [`ExtractMethod.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L134) | [EM10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM10.txt) +EM11 | Pass | [`ExtractMethod.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L155) | [EM11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM11.txt) +EM12 | Pass | [`ExtractMethod.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L170) | [EM12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM12.txt) +EM13 | Pass | [`ExtractMethod.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L185) | [EM13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM13.txt) +EM14 | Pass | [`ExtractMethod.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L201) | [EM14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM14.txt) +EM15 | Failure (generates invalid code when extracted below) [1918](https://youtrack.jetbrains.com/issue/CPP-1918) | [`ExtractMethod.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L232) | [EM15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM15.txt) +EM16 | Pass | [`ExtractMethod.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L241) | [EM16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM16.txt) +EM17 | Failure (generates invalid code when extracted below) [1919](https://youtrack.jetbrains.com/issue/CPP-1919) | [`ExtractMethod.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L261) | [EM17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM17.txt) +EM18 | Failure (generates invalid code when extracted below) [1919](https://youtrack.jetbrains.com/issue/CPP-1919) | [`ExtractMethod.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L277) | [EM18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM18.txt) +EM19 | Failure (generates invalid code when extracted below) [1919](https://youtrack.jetbrains.com/issue/CPP-1919) | [`ExtractMethod.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L292) | [EM19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM19.txt) +EM20 | Failure (generates invalid code when extracted below) [1919](https://youtrack.jetbrains.com/issue/CPP-1919) | [`ExtractMethod.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L308) | [EM20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM20.txt) +EM21 | Pass | [`ExtractMethod.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L326) | [EM21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM21.txt) + +## Extract Parameter +Case | Result | Location +---- | ------ | -------- +EP1 | Failure (changes member ptr to fn ptr) [1920](https://youtrack.jetbrains.com/issue/CPP-1920) | [`ExtractParameter.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractParameter.cpp#L34) +EP2 | Failure (creates invalid code) [16582](https://youtrack.jetbrains.com/issue/CPP-16582) | [`ExtractParameter.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractParameter.cpp#L36) +EP3 | Failure (should not be available) [1921](https://youtrack.jetbrains.com/issue/CPP-1921) | [`ExtractParameter.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractParameter.cpp#L38) +EP4 | Pass | [`ExtractParameter.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractParameter.cpp#L39) +EP5 | Pass | [`ExtractParameter.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractParameter.cpp#L40) +EP6 | Failure (changes member ptr to fn ptr) [1920](https://youtrack.jetbrains.com/issue/CPP-1920) | [`ExtractParameter.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractParameter.cpp#L43) + +## Extract Variable +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EXV1 | Pass | [`ExtractVariable.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L32) | [EXV1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV1.txt) +EXV2 | Failure (converts member ptr to fn ptr) [1931](https://youtrack.jetbrains.com/issue/CPP-1931) | [`ExtractVariable.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L39) | [EXV2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV2.txt) +EXV3 | Pass | [`ExtractVariable.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L50) | [EXV3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV3.txt) +EXV4 | Pass | [`ExtractVariable.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L59) | [EXV4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV4.txt) +EXV5 | Failure (expands too many typedefs) [1932](https://youtrack.jetbrains.com/issue/CPP-1932) | [`ExtractVariable.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L68) | [EXV5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV5.txt) +EXV6 | Pass | [`ExtractVariable.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L86) | [EXV6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV6.txt) + +## Flatten Conditional +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +FC1 | Pass | [`FlattenConditional.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/FlattenConditional.cpp#L15) | [FC1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/FC1.txt) + +## Inline Macro +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +IM1 | Failure (can't inline one macro inside another) [1922](https://youtrack.jetbrains.com/issue/CPP-1922) | [`InlineMacro.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L12) | [IM1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM1.txt) +IM2 | Pass | [`InlineMacro.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L48) | [IM2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM2.txt) +IM3 | Pass | [`InlineMacro.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L59) | [IM3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM3.txt) +IM4 | Pass | [`InlineMacro.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L63) | [IM4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM4.txt) +IM5 | Pass | [`InlineMacro.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L67) | [IM5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM5.txt) +IM6 | Pass | [`InlineMacro.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L71) | [IM6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM6.txt) +IM7 | Pass | [`InlineMacro.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L75) | [IM7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM7.txt) + +## Inline Variable +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +IV1 | Pass | [`InlineVariable.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L15) | [IV1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV1.txt) +IV2 | Failure (not available) [1925](https://youtrack.jetbrains.com/issue/CPP-1925) | [`InlineVariable.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L29) | [IV2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV2.txt) +IV3 | Failure (not available) [1925](https://youtrack.jetbrains.com/issue/CPP-1925) | [`InlineVariable.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L41) | [IV3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV3.txt) +IV4 | Failure (not available) [1925](https://youtrack.jetbrains.com/issue/CPP-1925) | [`InlineVariable.cpp`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L45) | [IV4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV4.txt) +IV5 | Pass | [`InlineVariable.cpp`, line 54](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L54) | [IV5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV5.txt) +IV6 | Failure (not available) [1925](https://youtrack.jetbrains.com/issue/CPP-1925) | [`InlineVariable.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L77) | [IV6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV6.txt) +IV7 | Failure (not available) [1925](https://youtrack.jetbrains.com/issue/CPP-1925) | [`InlineVariable.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L89) | [IV7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV7.txt) +IV8 | Failure (not available) [1925](https://youtrack.jetbrains.com/issue/CPP-1925) | [`InlineVariable.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L103) | [IV8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV8.txt) +IV9 | Failure (not available) [1925](https://youtrack.jetbrains.com/issue/CPP-1925) | [`InlineVariable.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L107) | [IV9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV9.txt) +IV10 | Failure (not available) [1925](https://youtrack.jetbrains.com/issue/CPP-1925) | [`InlineVariable.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L116) | [IV10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV10.txt) +IV11 | Failure (not available) [1925](https://youtrack.jetbrains.com/issue/CPP-1925) | [`InlineVariable.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L120) | [IV11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV11.txt) +IV12 | Failure (not available) [2252](https://youtrack.jetbrains.com/issue/CPP-2252) | [`InlineVariable.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L138) | [IV12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV12.txt) + +## Move Implementation to Source File +Case | Result | Location | Expected Diff +------ | ------ | -------- | ------------- +MISF1 | Pass | [`MoveImplementationToSourceFile.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L6) | [MISF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF1.txt) +MISF2 | Pass | [`MoveImplementationToSourceFile.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L14) | [MISF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF2.txt) +MISF3 | Pass | [`MoveImplementationToSourceFile.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L19) | [MISF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF3.txt) +MISF4 | Pass | [`MoveImplementationToSourceFile.h`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L24) | [MISF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF4.txt) +MISF5 | Pass | [`MoveImplementationToSourceFile.h`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L30) | [MISF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF5.txt) +MISF6 | Pass | [`MoveImplementationToSourceFile.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L46) | [MISF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF6.txt) +MISF7 | Pass | [`MoveImplementationToSourceFile.h`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L56) | [MISF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF7.txt) +MISF8 | Pass | [`MoveImplementationToSourceFile.h`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L61) | [MISF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF8.txt) +MISF9 | Pass | [`MoveImplementationToSourceFile.h`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L64) | [MISF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF9.txt) +MISF10 | Pass | [`MoveImplementationToSourceFile.h`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L69) | [MISF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF10.txt) +MISF11 | Pass | [`MoveImplementationToSourceFile.h`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L72) | [MISF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF11.txt) +MISF12 | Pass | [`MoveImplementationToSourceFile.h`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L79) | [MISF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF12.txt) +MISF13 | Pass | [`MoveImplementationToSourceFile.h`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L84) | [MISF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF13.txt) +MISF14 | Pass | [`MoveImplementationToSourceFile.h`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L89) | [MISF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF14.txt) +MISF15 | Pass | [`MoveImplementationToSourceFile.h`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L98) | [MISF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF15.txt) +MISF16 | Failure (operation too complex) [36996](https://youtrack.jetbrains.com/issue/CPP-36996/Split-function-into-declaration-and-definition-fails-with-operation-too-complex) | [`MoveImplementationToSourceFile.h`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L104) | [MISF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF16.txt) +MISF17 | Pass | [`MoveImplementationToSourceFile.h`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L117) | [MISF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF17.txt) +MISF18 | Pass | [`MoveImplementationToSourceFile.h`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L122) | [MISF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF18.txt) +MISF19 | Pass | [`MoveImplementationToSourceFile.h`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L125) | [MISF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF19.txt) +MISF20 | Pass | [`MoveImplementationToSourceFile.h`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L130) | [MISF20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF20.txt) +MISF21 | Pass | [`MoveImplementationToSourceFile.h`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L133) | [MISF21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF21.txt) +MISF22 | Pass | [`MoveImplementationToSourceFile.h`, line 140](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L140) | [MISF22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF22.txt) +MISF23 | Pass | [`MoveImplementationToSourceFile.h`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L145) | [MISF23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF23.txt) +MISF24 | Pass | [`MoveImplementationToSourceFile.h`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L150) | [MISF24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF24.txt) +MISF25 | Pass | [`MoveImplementationToSourceFile.h`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L159) | [MISF25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF25.txt) +MISF26 | Failure (operation too complex) [36996](https://youtrack.jetbrains.com/issue/CPP-36996/Split-function-into-declaration-and-definition-fails-with-operation-too-complex) | [`MoveImplementationToSourceFile.h`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L165) | [MISF26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF26.txt) + +## Move Method +Case | Result | Location +---- | ------ | -------- +MM1 | Pass | [`MoveMethod.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L9) +MM2 | Pass | [`MoveMethod.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L16) +MM3 | Pass | [`MoveMethod.h`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L22) +MM4 | Pass | [`MoveMethod.h`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L29) +MM5 | Pass | [`MoveMethod.h`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L43) +MM6 | Pass | [`MoveMethod.h`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L52) +MM7 | Pass | [`MoveMethod.h`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L59) +MM8 | Failure [16587](https://youtrack.jetbrains.com/issue/CPP-16587) | [`MoveMethod.h`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L66) +MM9 | Failure [16587](https://youtrack.jetbrains.com/issue/CPP-16587) | [`MoveMethod.h`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L72) +MM10 | Pass | [`MoveMethod.h`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L87) +MM11 | Pass | [`MoveMethod.h`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L95) +MM12 | Pass | [`MoveMethod.h`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L110) +MM13 | Pass | [`MoveMethod.h`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L115) +MM14 | Pass | [`MoveMethod.h`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L120) +MM15 | Pass | [`MoveMethod.h`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L125) +MM16 | Pass | [`MoveMethod.h`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L130) +MM17 | Pass | [`MoveMethod.h`, line 141](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L141) +MM18 | Pass | [`MoveMethod.h`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L146) +MM19 | Pass | [`MoveMethod.h`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L151) +MM20 | Pass | [`MoveMethod.h`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L185) +MM21 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L7) +MM22 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L15) +MM23 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L22) +MM24 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L27) +MM25 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L32) +MM26 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L38) +MM27 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L44) +MM28 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L52) +MM29 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L57) +MM30 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L62) +MM31 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L67) +MM32 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L72) +MM33 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L77) +MM34 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 82](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L82) +MM35 | Failure [1933](https://youtrack.jetbrains.com/issue/CPP-1933) | [`MoveMethod.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L87) +MM36 | Failure [1936](https://youtrack.jetbrains.com/issue/CPP-1936) | [`MoveMethod.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L92) + +## Remove Block Delimiter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RBD1 | Pass | [`RemoveBlockDelimiter.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L12) | [RBD1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD1.txt) +RBD2 | Pass | [`RemoveBlockDelimiter.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L15) | [RBD2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD2.txt) +RBD3 | Pass | [`RemoveBlockDelimiter.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L18) | [RBD3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD3.txt) +RBD4 | Pass | [`RemoveBlockDelimiter.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L21) | [RBD4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD4.txt) +RBD5 | Pass | [`RemoveBlockDelimiter.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L24) | [RBD5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD5.txt) +RBD6 | Pass | [`RemoveBlockDelimiter.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L27) | [RBD6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD6.txt) +RBD7 | Pass | [`RemoveBlockDelimiter.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L39) | [RBD7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD7.txt) +RBD8 | Pass | [`RemoveBlockDelimiter.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L44) | [RBD8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD8.txt) + +## Remove Unused Includes +Case | Result | Location | Expected Diff +---- | ----- | -------- | ------------- +RUI1 | Pass | [`RemoveUnusedIncludes.cpp`, line 1](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedIncludes.cpp#L1) | [RUI1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUI1.txt) + +## Remove Unused Parameter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RUP1 | Pass | [`RemoveUnusedParameters.cpp`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedParameters.cpp#L7) | [RUP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUP1.txt) +RUP2 | Pass | [`RemoveUnusedParameters.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedParameters.cpp#L25) | [RUP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUP2.txt) +RUP3 | Pass | [`RemoveUnusedParameters.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedParameters.cpp#L38) | [RUP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUP3.txt) +RUP4 | Pass | [`RemoveUnusedParameters.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedParameters.cpp#L60) | [RUP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUP4.txt) + +## Rename +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +R1 | Pass | [`Rename.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L12) | [R1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1.txt) +R2 | Pass | [`Rename.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L15) | [R2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R2.txt) +R3 | Pass | [`Rename.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L16) | [R3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R3.txt) +R4 | Pass | [`Rename.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L17) | [R4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R4.txt) +R5 | Failure (selects unrelated names) [1938](https://youtrack.jetbrains.com/issue/CPP-1938) | [`Rename.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L33) | [R5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R5.txt) +R6 | Failure (selects unrelated names) [1938](https://youtrack.jetbrains.com/issue/CPP-1938) | [`Rename.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L37) | [R6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R6.txt) +R7 | Failure (selects unrelated instances) [1938](https://youtrack.jetbrains.com/issue/CPP-1938) | [`Rename.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L42) | [R7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R7.txt) +R8 | Failure (selects unrelated instances) [1938](https://youtrack.jetbrains.com/issue/CPP-1938) | [`Rename.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L47) | [R8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R8.txt) +R9 | Pass | [`Rename.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L48) | [R9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R9.txt) +R10 | Failure (selects unrelated names) [1938](https://youtrack.jetbrains.com/issue/CPP-1938) | [`Rename.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L51) | [R10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R10.txt) +R11 | Pass | [`Rename.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L59) | [R11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R11.txt) +R12 | Pass | [`Rename.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L62) | [R12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R12.txt) +R13 | Pass | [`Rename.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L64) | [R13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R13.txt) +R14 | Failure (creates invalid code) [1939](https://youtrack.jetbrains.com/issue/CPP-1939) | [`Rename.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L67) | [R14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R14.txt) +R15 | Failure (creates invalid code) [1939](https://youtrack.jetbrains.com/issue/CPP-1939) | [`Rename.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L75) | [R15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R15.txt) +R16 | Pass | [`Rename.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L85) | [R16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R16.txt) +R17 | Pass | [`Rename.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L93) | [R17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R17.txt) +R18 | Pass | [`Rename.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L96) | [R18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R18.txt) +R19 | Pass | [`Rename.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L127) | [R19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R19.txt) +R20 | Pass | [`Rename.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L152) | [R20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R20.txt) +R21 | Pass | [`Rename.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L153) | [R21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R21.txt) +R22 | Pass | [`Rename.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L154) | [R22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R22.txt) +R23 | Pass | [`Rename.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L157) | [R23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R23.txt) +R24 | Pass | [`Rename.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L158) | [R24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R24.txt) +R25 | Pass | [`Rename.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L159) | [R25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R25.txt) +R26 | Pass | [`Rename.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L161) | [R26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R26.txt) +R27 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L164) | [R27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R27.txt) +R28 | Pass | [`Rename.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L165) | [R28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R28.txt) +R29 | Pass | [`Rename.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L166) | [R29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R29.txt) +R30 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L169) | [R30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R30.txt) +R31 | Pass | [`Rename.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L173) | [R31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R31.txt) +R32 | Pass | [`Rename.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L176) | [R32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R32.txt) +R33 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L185) | [R33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R33.txt) +R34 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L195) | [R34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R34.txt) +R35 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L208) | [R35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R35.txt) +R36 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L218) | [R36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R36.txt) +R37 | Failure (selects unrelated macro by default) [1943](https://youtrack.jetbrains.com/issue/CPP-1943) | [`Rename.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L224) | [R37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R37.txt) +R38 | Failure (selects unrelated macro by default) [1943](https://youtrack.jetbrains.com/issue/CPP-1943) | [`Rename.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L226) | [R38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R38.txt) +R39 | Failure (selects unrelated macro by default) [1943](https://youtrack.jetbrains.com/issue/CPP-1943) | [`Rename.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L228) | [R39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R39.txt) +R40 | Failure (selects unrelated macro by default) [1943](https://youtrack.jetbrains.com/issue/CPP-1943) | [`Rename.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L233) | [R40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R40.txt) +R41 | Failure (selects unrelated macro by default) [1943](https://youtrack.jetbrains.com/issue/CPP-1943) | [`Rename.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L236) | [R41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R41.txt) +R42 | Failure (selects unrelated macro by default) [1943](https://youtrack.jetbrains.com/issue/CPP-1943) | [`Rename.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L238) | [R42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R42.txt) +R43 | Failure (selects unrelated macro by default) [1943](https://youtrack.jetbrains.com/issue/CPP-1943) | [`Rename.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L240) | [R43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R43.txt) +R44 | Failure (selects unrelated macro by default) [1943](https://youtrack.jetbrains.com/issue/CPP-1943) | [`Rename.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L245) | [R44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R44.txt) +R45 | Pass | [`Rename.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L248) | [R45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R45.txt) +R46 | Pass | [`Rename.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L253) | [R46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R46.txt) +R47 | Pass | [`Rename.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L255) | [R47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R47.txt) +R48 | Pass | [`Rename.cpp`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L256) | [R48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R48.txt) +R49 | Pass | [`Rename.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L257) | [R49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R49.txt) +R50 | Pass | [`Rename.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L258) | [R50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R50.txt) +R51 | Pass | [`Rename.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L259) | [R51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R51.txt) +R52 | Pass | [`Rename.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L260) | [R52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R52.txt) +R53 | Pass | [`Rename.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L263) | [R53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R53.txt) +R54 | Pass | [`Rename.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L264) | [R54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R54.txt) +R55 | Pass | [`Rename.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L270) | [R55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R55.txt) +R56 | Pass | [`Rename.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L272) | [R56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R56.txt) +R57 | Pass | [`Rename.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L274) | [R57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R57.txt) +R58 | Pass | [`Rename.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L276) | [R58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R58.txt) +R59 | Pass | [`Rename.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L280) | [R59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R59.txt) +R60 | Pass | [`Rename.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L283) | [R60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R60.txt) +R61 | Pass | [`Rename.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L286) | [R61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R61.txt) +R62 | Pass | [`Rename.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L297) | [R62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R62.txt) +R63 | Pass | [`Rename.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L298) | [R63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R63.txt) +R64 | Pass | [`Rename.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L299) | [R64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R64.txt) +R65 | Pass | [`Rename.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L305) | [R65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R65.txt) +R66 | Pass | [`Rename.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L307) | [R66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R66.txt) +R67 | Pass | [`Rename.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L308) | [R67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R67.txt) +R68 | Pass | [`Rename.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L314) | [R68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R68.txt) +R69 | Pass | [`Rename.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L315) | [R69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R69.txt) +R70 | Pass | [`Rename.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L317) | [R70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R70.txt) +R71 | Pass | [`Rename.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L323) | [R71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R71.txt) +R72 | Pass | [`Rename.cpp`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L324) | [R72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R72.txt) +R73 | Pass | [`Rename.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L326) | [R73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R73.txt) +R74 | Pass | [`Rename.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L327) | [R74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R74.txt) +R75 | Pass | [`Rename.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L328) | [R75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R75.txt) +R76 | Pass | [`Rename.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L334) | [R76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R76.txt) +R77 | Pass | [`Rename.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L335) | [R77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R77.txt) +R78 | Pass | [`Rename.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L336) | [R78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R78.txt) +R79 | Pass | [`Rename.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L338) | [R79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R79.txt) +R80 | Pass | [`Rename.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L339) | [R80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R80.txt) +R81 | Pass | [`Rename.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L345) | [R81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R81.txt) +R82 | Pass | [`Rename.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L346) | [R82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R82.txt) +R83 | Pass | [`Rename.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L347) | [R83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R83.txt) +R84 | Pass | [`Rename.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L349) | [R84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R84.txt) +R85 | Pass | [`Rename.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L351) | [R85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R85.txt) +R86 | Pass | [`Rename.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L365) | [R86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R86.txt) +R87 | Pass | [`Rename.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L369) | [R87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R87.txt) +R88 | Pass | [`Rename.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L370) | [R88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R88.txt) +R89 | Pass | [`Rename.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L374) | [R89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R89.txt) +R90 | Pass | [`Rename.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L378) | [R90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R90.txt) +R91 | Pass | [`Rename.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L381) | [R91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R91.txt) +R92 | Pass | [`Rename.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L382) | [R92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R92.txt) +R93 | Pass | [`Rename.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L384) | [R93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R93.txt) +R94 | Pass | [`Rename.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L385) | [R94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R94.txt) +R95 | Pass | [`Rename.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L386) | [R95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R95.txt) +R96 | Pass | [`Rename.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L389) | [R96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R96.txt) +R97 | Pass | [`Rename.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L390) | [R97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R97.txt) +R98 | Pass | [`Rename.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L391) | [R98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R98.txt) +R99 | Failure (doesn't select all instances) [16696](https://youtrack.jetbrains.com/issue/CPP-16696) | [`Rename.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L393) | [R99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R99.txt) +R100 | Pass | [`Rename.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L395) | [R100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R100.txt) +R101 | Pass | [`Rename.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L397) | [R101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R101.txt) +R102 | Pass | [`Rename.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L398) | [R102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R102.txt) +R103 | Pass | [`Rename.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L399) | [R103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R103.txt) +R104 | Pass | [`Rename.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L401) | [R104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R104.txt) +R105 | Pass | [`Rename.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L403) | [R105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R105.txt) +R106 | Pass | [`Rename.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L404) | [R106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R106.txt) +R107 | Pass | [`Rename.cpp`, line 410](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L410) | [R107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R107.txt) +R108 | Pass | [`Rename.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L411) | [R108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R108.txt) +R109 | Pass | [`Rename.cpp`, line 412](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L412) | [R109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R109.txt) +R110 | Pass | [`Rename.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L416) | [R110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R110.txt) +R111 | Pass | [`Rename.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L418) | [R111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R111.txt) +R112 | Pass | [`Rename.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L422) | [R112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R112.txt) +R113 | Pass | [`Rename.cpp`, line 426](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L426) | [R113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R113.txt) +R114 | Pass | [`Rename.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L428) | [R114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R114.txt) +R115 | Pass | [`Rename.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L433) | [R115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R115.txt) +R116 | Pass | [`Rename.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L437) | [R116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R116.txt) +R117 | Pass | [`Rename.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L439) | [R117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R117.txt) +R118 | Pass | [`Rename.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L445) | [R118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R118.txt) +R119 | Pass | [`Rename.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L446) | [R119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R119.txt) +R120 | Pass | [`Rename.cpp`, line 448](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L448) | [R120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R120.txt) +R121 | Pass | [`Rename.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L449) | [R121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R121.txt) +R122 | Pass | [`Rename.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L451) | [R122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R122.txt) +R123 | Pass | [`Rename.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L452) | [R123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R123.txt) +R124 | Pass | [`Rename.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L454) | [R124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R124.txt) +R125 | Pass | [`Rename.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L455) | [R125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R125.txt) +R126 | Pass | [`Rename.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L459) | [R126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R126.txt) +R127 | Pass | [`Rename.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L461) | [R127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R127.txt) +R128 | Pass | [`Rename.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L465) | [R128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R128.txt) +R129 | Pass | [`Rename.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L466) | [R129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R129.txt) +R130 | Pass | [`Rename.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L468) | [R130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R130.txt) +R131 | Pass | [`Rename.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L469) | [R131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R131.txt) +R132 | Pass | [`Rename.cpp`, line 470](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L470) | [R132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R132.txt) +R133 | Pass | [`Rename.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L475) | [R133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R133.txt) +R134 | Pass | [`Rename.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L479) | [R134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R134.txt) +R135 | Pass | [`Rename.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L481) | [R135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R135.txt) +R136 | Pass | [`Rename.cpp`, line 487](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L487) | [R136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R136.txt) +R137 | Pass | [`Rename.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L488) | [R137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R137.txt) +R138 | Pass | [`Rename.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L490) | [R138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R138.txt) +R139 | Pass | [`Rename.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L491) | [R139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R139.txt) +R140 | Pass | [`Rename.cpp`, line 493](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L493) | [R140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R140.txt) +R141 | Pass | [`Rename.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L494) | [R141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R141.txt) +R142 | Pass | [`Rename.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L496) | [R142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R142.txt) +R143 | Pass | [`Rename.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L497) | [R143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R143.txt) +R144 | Pass | [`Rename.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L503) | [R144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R144.txt) +R145 | Pass | [`Rename.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L504) | [R145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R145.txt) +R146 | (deprecated) | [`Rename.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L506) | [R146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R146.txt) +R147 | Pass | [`Rename.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L507) | [R147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R147.txt) +R148 | Pass | [`Rename.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L508) | [R148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R148.txt) +R149 | Pass | [`Rename.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L509) | [R149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R149.txt) +R150 | Pass | [`Rename.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L510) | [R150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R150.txt) +R151 | Pass | [`Rename.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L511) | [R151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R151.txt) +R152 | Pass | [`Rename.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L512) | [R152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R152.txt) +R153 | Pass | [`Rename.cpp`, line 513](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L513) | [R153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R153.txt) +R154 | Pass | [`Rename.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L516) | [R154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R154.txt) +R155 | Pass | [`Rename.cpp`, line 518](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L518) | [R155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R155.txt) +R156 | Pass | [`Rename.cpp`, line 519](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L519) | [R156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R156.txt) +R157 | Pass | [`Rename.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L523) | [R157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R157.txt) +R158 | Pass | [`Rename.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L524) | [R158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R158.txt) +R159 | Pass | [`Rename.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L526) | [R159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R159.txt) +R160 | Pass | [`Rename.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L527) | [R160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R160.txt) +R161 | Pass | [`Rename.cpp`, line 528](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L528) | [R161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R161.txt) +R162 | Pass | [`Rename.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L529) | [R162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R162.txt) +R163 | Pass | [`Rename.cpp`, line 530](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L530) | [R163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R163.txt) +R164 | Pass | [`Rename.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L531) | [R164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R164.txt) +R165 | Pass | [`Rename.cpp`, line 532](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L532) | [R165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R165.txt) +R166 | Pass | [`Rename.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L535) | [R166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R166.txt) +R167 | Pass | [`Rename.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L537) | [R167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R167.txt) +R168 | Pass | [`Rename.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L538) | [R168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R168.txt) +R169 | Pass | [`Rename.cpp`, line 542](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L542) | [R169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R169.txt) +R170 | Pass | [`Rename.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L549) | [R170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R170.txt) +R171 | Pass | [`Rename.cpp`, line 551](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L551) | [R171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R171.txt) +R172 | Pass | [`Rename.cpp`, line 553](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L553) | [R172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R172.txt) +R173 | Pass | [`Rename.cpp`, line 556](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L556) | [R173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R173.txt) +R174 | Pass | [`Rename.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L558) | [R174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R174.txt) +R175 | Pass | [`Rename.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L560) | [R175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R175.txt) +R176 | Pass | [`Rename.cpp`, line 564](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L564) | [R176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R176.txt) +R177 | Pass | [`Rename.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L567) | [R177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R177.txt) +R178 | Pass | [`Rename.cpp`, line 571](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L571) | [R178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R178.txt) +R179 | Pass | [`Rename.cpp`, line 572](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L572) | [R179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R179.txt) +R180 | Pass | [`Rename.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L575) | [R180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R180.txt) +R181 | Pass | [`Rename.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L576) | [R181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R181.txt) +R182 | Pass | [`Rename.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L583) | [R182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R182.txt) +R183 | Pass | [`Rename.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L584) | [R183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R183.txt) +R184 | Pass | [`Rename.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L585) | [R184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R184.txt) +R185 | Pass | [`Rename.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L587) | [R185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R185.txt) +R186 | Pass | [`Rename.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L588) | [R186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R186.txt) +R187 | Pass | [`Rename.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L589) | [R187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R187.txt) +R188 | Pass | [`Rename.cpp`, line 591](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L591) | [R188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R188.txt) +R189 | Pass | [`Rename.cpp`, line 593](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L593) | [R189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R189.txt) +R190 | Pass | [`Rename.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L609) | [R190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R190.txt) +R191 | Pass | [`Rename.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L617) | [R191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R191.txt) +R192 | Failure (doesn't select all instances, selects unrelated instances) [1938](https://youtrack.jetbrains.com/issue/CPP-1938) | [`Rename.cpp`, line 618](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L618) | [R192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R192.txt) +R193 | Pass | [`Rename.cpp`, line 622](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L622) | [R193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R193.txt) +R194 | Failure (doesn't select all instances, selects unrelated instances) [36997](https://youtrack.jetbrains.com/issue/CPP-36997/Renaming-a-method-from-usage-doesnt-rename-method-and-renames-unrelated-identifiers) | [`Rename.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L624) | [R194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R194.txt) +R195 | Pass | [`Rename.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L626) | [R195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R195.txt) +R196 | Pass | [`Rename.cpp`, line 635](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L635) | [R196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R196.txt) +R197 | Failure (creates invalid code) [1939](https://youtrack.jetbrains.com/issue/CPP-1939) | [`Rename.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L636) | [R197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R197.txt) +R198 | Pass | [`Rename.cpp`, line 637](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L637) | [R198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R198.txt) +R199 | Pass | [`Rename.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L639) | [R199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R199.txt) +R200 | Pass | [`Rename.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L640) | [R200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R200.txt) +R201 | Failure (selects unrelated instances) [36998](https://youtrack.jetbrains.com/issue/CPP-36998/Renaming-a-method-from-usage-renames-unrelated-identifiers) | [`Rename.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L641) | [R201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R201.txt) +R202 | Pass | [`Rename.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L642) | [R202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R202.txt) +R203 | Pass | [`Rename.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L643) | [R203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R203.txt) +R204 | Pass | [`Rename.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L644) | [R204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R204.txt) +R205 | Pass | [`Rename.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L645) | [R205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R205.txt) +R206 | Pass | [`Rename.cpp`, line 652](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L652) | [R206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R206.txt) +R207 | Pass | [`Rename.cpp`, line 653](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L653) | [R207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R207.txt) +R208 | Pass | [`Rename.cpp`, line 655](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L655) | [R208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R208.txt) +R209 | Pass | [`Rename.cpp`, line 662](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L662) | [R209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R209.txt) +R210 | Pass | [`Rename.cpp`, line 674](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L674) | [R210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R210.txt) +R211 | Pass | [`Rename.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L681) | [R211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R211.txt) +R212 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L682) | [R212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R212.txt) +R213 | Pass | [`Rename.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L683) | [R213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R213.txt) +R214 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L685) | [R214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R214.txt) +R215 | Pass | [`Rename.cpp`, line 686](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L686) | [R215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R215.txt) +R216 | Pass | [`Rename.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L687) | [R216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R216.txt) +R217 | Pass | [`Rename.cpp`, line 690](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L690) | [R217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R217.txt) +R218 | Pass | [`Rename.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L691) | [R218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R218.txt) +R219 | Pass | [`Rename.cpp`, line 693](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L693) | [R219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R219.txt) +R220 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L694) | [R220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R220.txt) +R221 | Pass | [`Rename.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L697) | [R221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R221.txt) +R222 | Pass | [`Rename.cpp`, line 699](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L699) | [R222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R222.txt) +R223 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 700](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L700) | [R223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R223.txt) +R224 | Pass | [`Rename.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L702) | [R224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R224.txt) +R225 | Pass | [`Rename.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L705) | [R225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R225.txt) +R226 | Pass | [`Rename.cpp`, line 707](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L707) | [R226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R226.txt) +R227 | Pass (unrelated comments selected by default) [1942](https://youtrack.jetbrains.com/issue/CPP-1942) | [`Rename.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L708) | [R227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R227.txt) +R228 | Pass | [`Rename.cpp`, line 717](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L717) | [R228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R228.txt) +R229 | Pass | [`Rename.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L722) | [R229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R229.txt) +R230 | Pass | [`Rename.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L728) | [R230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R230.txt) +R231 | Pass | [`Rename.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L730) | [R231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R231.txt) +R232 | Pass | [`Rename.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L732) | [R232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R232.txt) +R233 | Pass | [`Rename.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L734) | [R233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R233.txt) +R234 | Pass | [`Rename.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L736) | [R234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R234.txt) +R235 | Pass | [`Rename.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L738) | [R235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R235.txt) +R236 | Pass | [`Rename.cpp`, line 740](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L740) | [R236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R236.txt) +R237 | (deprecated) | [`Rename.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L742) | [R237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R237.txt) +R238 | (deprecated) | [`Rename.cpp`, line 743](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L743) | [R238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R238.txt) +R239 | Pass | [`Rename.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L744) | [R239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R239.txt) +R240 | Pass | [`Rename.cpp`, line 746](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L746) | [R240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R240.txt) +R241 | Pass | [`Rename.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L748) | [R241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R241.txt) +R242 | Pass | [`Rename.cpp`, line 750](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L750) | [R242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R242.txt) +R243 | Pass | [`Rename.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L752) | [R243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R243.txt) +R244 | Pass | [`RenameCpp11.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L7) | [R244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R244.txt) +R245 | Pass | [`RenameCpp11.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L9) | [R245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R245.txt) +R246 | Pass | [`RenameCpp11.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L12) | [R246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R246.txt) +R247 | Pass | [`RenameCpp11.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L16) | [R247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R247.txt) +R248 | Pass | [`RenameCpp11.h`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L23) | [R248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R248.txt) +R249 | Pass | [`RenameCpp11.h`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L25) | [R249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R249.txt) +R250 | Pass | [`RenameCpp11.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L14) | [R250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R250.txt) +R251 | Pass | [`RenameCpp11.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L16) | [R251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R251.txt) +R252 | Pass | [`RenameCpp11.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L18) | [R252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R252.txt) +R253 | Pass | [`RenameCpp11.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L20) | [R253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R253.txt) +R254 | Pass | [`RenameCpp11.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L23) | [R254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R254.txt) +R255 | Pass | [`RenameCpp11.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L25) | [R255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R255.txt) +R256 | Pass | [`RenameCpp11.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L28) | [R256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R256.txt) +R257 | Pass | [`RenameCpp11.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L33) | [R257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R257.txt) +R258 | Pass | [`RenameCpp11.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L38) | [R258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R258.txt) +R259 | Pass | [`RenameCpp11.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L40) | [R259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R259.txt) +R260 | Pass | [`RenameCpp11.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L43) | [R260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R260.txt) +R261 | Pass | [`RenameCpp11.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L49) | [R261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R261.txt) +R262 | Pass | [`RenameCpp11.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L51) | [R262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R262.txt) +R263 | Pass | [`RenameCpp11.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L55) | [R263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R263.txt) +R264 | Pass | [`RenameCpp11.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L57) | [R264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R264.txt) +R265 | Pass | [`RenameCpp11.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L63) | [R265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R265.txt) +R266 | Pass | [`RenameCpp11.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L69) | [R266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R266.txt) +R267 | Pass | [`RenameCpp11.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L75) | [R267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R267.txt) +R268 | Pass | [`RenameCpp11.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L81) | [R268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R268.txt) +R269 | Pass | [`RenameCpp11.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L87) | [R269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R269.txt) +R270 | Pass | [`RenameCpp11.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L89) | [R270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R270.txt) +R271 | Pass | [`RenameCpp11.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L95) | [R271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R271.txt) +R272 | Pass | [`RenameCpp11.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L98) | [R272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R272.txt) +R273 | Pass | [`RenameCpp11.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L100) | [R273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R273.txt) +R274 | Pass | [`RenameCpp11.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L101) | [R274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R274.txt) +R275 | Pass | [`RenameCpp11.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L103) | [R275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R275.txt) +R276 | Pass | [`RenameCpp11.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L104) | [R276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R276.txt) +R277 | Failure (creates invalid code) [16647](https://youtrack.jetbrains.com/issue/CPP-16647) | [`RenameCpp11.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L106) | [R277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R277.txt) +R278 | Pass | [`RenameCpp11.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L108) | [R278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R278.txt) +R279 | Pass | [`RenameCpp11.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L109) | [R279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R279.txt) +R280 | Pass | [`RenameCpp11.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L111) | [R280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R280.txt) +R281 | Pass | [`RenameCpp11.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L112) | [R281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R281.txt) +R282 | Pass | [`RenameCpp11.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L143) | [R282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R282.txt) +R283 | Pass | [`RenameCpp11.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L146) | [R283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R283.txt) +R284 | Pass | [`RenameCpp11.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L148) | [R284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R284.txt) +R285 | Pass | [`RenameCpp11.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L149) | [R285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R285.txt) +R286 | Pass | [`RenameCpp11.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L151) | [R286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R286.txt) +R287 | Pass | [`RenameCpp11.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L152) | [R287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R287.txt) +R288 | Failure (creates invalid code) [16647](https://youtrack.jetbrains.com/issue/CPP-16647) | [`RenameCpp11.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L154) | [R288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R288.txt) +R289 | Pass | [`RenameCpp11.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L156) | [R289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R289.txt) +R290 | Pass | [`RenameCpp11.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L157) | [R290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R290.txt) +R291 | Pass | [`RenameCpp11.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L159) | [R291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R291.txt) +R292 | Pass | [`RenameCpp11.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L160) | [R292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R292.txt) +R293 | Pass | [`RenameCpp11.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L167) | [R293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R293.txt) +R294 | Pass | [`RenameCpp11.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L173) | [R294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R294.txt) +R295 | Pass | [`RenameCpp11.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L175) | [R295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R295.txt) +R296 | Pass | [`RenameCpp11.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L185) | [R296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R296.txt) +R297 | Pass | [`RenameCpp11.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L186) | [R297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R297.txt) +R298 | Pass | [`RenameCpp11.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L188) | [R298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R298.txt) +R299 | Pass | [`RenameCpp11.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L189) | [R299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R299.txt) +R300 | Pass | [`RenameCpp11.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L190) | [R300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R300.txt) +R301 | Pass | [`RenameCpp11.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L191) | [R301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R301.txt) +R302 | Pass | [`RenameCpp11.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L194) | [R302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R302.txt) +R303 | Pass | [`RenameCpp11.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L196) | [R303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R303.txt) +R304 | Pass | [`RenameCpp11.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L197) | [R304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R304.txt) +R305 | Pass | [`RenameCpp11.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L200) | [R305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R305.txt) +R306 | Pass | [`RenameCpp11.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L215) | [R306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R306.txt) +R307 | Failure (renames unrelated instances) [16649](https://youtrack.jetbrains.com/issue/CPP-16649) | [`RenameCpp11.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L217) | [R307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R307.txt) +R308 | Failure (renames unrelated instances) [16649](https://youtrack.jetbrains.com/issue/CPP-16649) | [`RenameCpp11.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L221) | [R308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R308.txt) +R309 | Pass | [`RenameCpp11.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L222) | [R309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R309.txt) +R310 | Pass | [`RenameCpp11.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L223) | [R310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R310.txt) +R311 | Pass | [`RenameCpp11.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L227) | [R311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R311.txt) +R312 | Failure (renames unrelated instances) [16649](https://youtrack.jetbrains.com/issue/CPP-16649) | [`RenameCpp11.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L243) | [R312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R312.txt) +R313 | Pass | [`RenameCpp11.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L251) | [R313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R313.txt) +R314 | Pass | [`RenameCpp11.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L253) | [R314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R314.txt) +R315 | Pass | [`RenameCpp11.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L264) | [R315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R315.txt) +R316 | Pass | [`RenameCpp11.cpp`, line 266](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L266) | [R316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R316.txt) +R317 | Pass | [`RenameCpp11.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L270) | [R317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R317.txt) +R318 | Pass | [`RenameCpp11.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L280) | [R318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R318.txt) +R319 | Pass | [`RenameCpp11.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L281) | [R319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R319.txt) +R320 | Pass | [`RenameCpp11.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L294) | [R320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R320.txt) +R321 | Pass | [`RenameCpp11.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L295) | [R321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R321.txt) +R322 | Pass | [`RenameCpp11.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L346) | [R322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R322.txt) +R323 | Pass | [`RenameCpp11.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L347) | [R323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R323.txt) +R324 | Pass | [`RenameCpp11.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L350) | [R324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R324.txt) +R325 | Pass | [`RenameCpp11.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L354) | [R325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R325.txt) +R326 | Pass | [`RenameCpp11.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L355) | [R326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R326.txt) +R327 | Pass | [`RenameCpp11.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L358) | [R327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R327.txt) +R328 | Pass | [`RenameCpp11.cpp`, line 362](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L362) | [R328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R328.txt) +R329 | Pass | [`RenameCpp11.cpp`, line 363](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L363) | [R329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R329.txt) +R330 | Pass | [`RenameCpp11.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L366) | [R330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R330.txt) +R331 | Pass | [`RenameCpp11.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L370) | [R331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R331.txt) +R332 | Pass | [`RenameCpp11.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L371) | [R332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R332.txt) +R333 | Pass | [`RenameCpp11.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L374) | [R333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R333.txt) +R334 | Pass | [`RenameCpp11.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L378) | [R334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R334.txt) +R335 | Pass | [`RenameCpp11.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L379) | [R335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R335.txt) +R336 | Pass | [`RenameCpp11.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L382) | [R336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R336.txt) +R337 | Pass | [`RenameCpp11.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L386) | [R337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R337.txt) +R338 | Pass | [`RenameCpp11.cpp`, line 387](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L387) | [R338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R338.txt) +R339 | Pass | [`RenameCpp11.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L390) | [R339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R339.txt) +R340 | Pass | [`RenameCpp11.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L394) | [R340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R340.txt) +R341 | Pass | [`RenameCpp11.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L395) | [R341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R341.txt) +R342 | Pass | [`RenameCpp11.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L396) | [R342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R342.txt) +R343 | Pass | [`RenameCpp11.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L399) | [R343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R343.txt) +R344 | Pass | [`RenameCpp11.cpp`, line 400](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L400) | [R344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R344.txt) +R345 | Pass | [`RenameCpp11.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L413) | [R345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R345.txt) +R346 | Pass | [`RenameCpp11.cpp`, line 414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L414) | [R346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R346.txt) +R347 | Pass | [`RenameCpp11.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L415) | [R347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R347.txt) +R348 | Pass | [`RenameCpp11.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L418) | [R348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R348.txt) +R349 | Pass | [`RenameCpp11.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L419) | [R349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R349.txt) +R350 | Pass | [`RenameCpp11.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L423) | [R350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R350.txt) +R351 | Pass | [`RenameCpp11.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L424) | [R351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R351.txt) +R352 | Pass | [`RenameCpp11.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L425) | [R352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R352.txt) +R353 | Pass | [`RenameCpp11.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L428) | [R353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R353.txt) +R354 | Pass | [`RenameCpp11.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L429) | [R354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R354.txt) +R355 | Pass | [`RenameCpp11.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L433) | [R355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R355.txt) +R356 | Pass | [`RenameCpp11.cpp`, line 434](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L434) | [R356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R356.txt) +R357 | Pass | [`RenameCpp11.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L435) | [R357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R357.txt) +R358 | Pass | [`RenameCpp11.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L438) | [R358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R358.txt) +R359 | Pass | [`RenameCpp11.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L439) | [R359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R359.txt) +R360 | Pass | [`RenameCpp11.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L445) | [R360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R360.txt) +R361 | Pass | [`RenameCpp11.cpp`, line 447](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L447) | [R361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R361.txt) +R362 | Pass | [`RenameCpp11.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L449) | [R362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R362.txt) +R363 | Pass | [`RenameCpp11.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L451) | [R363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R363.txt) +R364 | Pass | [`RenameCpp11.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L453) | [R364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R364.txt) +R365 | Pass | [`RenameCpp11.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L455) | [R365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R365.txt) +R366 | Pass | [`RenameCpp11.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L457) | [R366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R366.txt) +R367 | Pass | [`RenameCpp11.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L459) | [R367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R367.txt) +R368 | Pass | [`RenameCpp11.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L461) | [R368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R368.txt) +R369 | Pass | [`RenameCpp11.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L463) | [R369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R369.txt) +R370 | Pass | [`RenameCpp11.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L465) | [R370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R370.txt) +R371 | Pass | [`RenameCpp11.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L467) | [R371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R371.txt) +R372 | Pass | [`RenameCpp11.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L469) | [R372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R372.txt) +R373 | Pass | [`RenameCpp11.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L473) | [R373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R373.txt) +R374 | Pass | [`RenameCpp11.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L475) | [R374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R374.txt) +R375 | Pass | [`RenameCpp11.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L476) | [R375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R375.txt) +R376 | Pass | [`RenameCpp11.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L481) | [R376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R376.txt) +R377 | Pass | [`RenameCpp11.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L483) | [R377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R377.txt) +R378 | Pass | [`RenameCpp11.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L489) | [R378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R378.txt) +R379 | Failure (creates invalid code) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L492) | [R379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R379.txt) +R380 | Failure (creates invalid code) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 499](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L499) | [R380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R380.txt) +R381 | Pass | [`RenameCpp11.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L504) | [R381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R381.txt) +R382 | Pass | [`RenameCpp11.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L505) | [R382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R382.txt) +R383 | Pass | [`RenameCpp11.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L506) | [R383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R383.txt) +R384 | Failure (creates invalid code) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L507) | [R384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R384.txt) +R385 | Failure (creates invalid code) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L509) | [R385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R385.txt) +R386 | Pass | [`RenameCpp11.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L516) | [R386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R386.txt) +R387 | Failure (creates invalid code) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L520) | [R387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R387.txt) +R388 | Failure (creates invalid code) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L522) | [R388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R388.txt) +R389 | Pass | [`RenameCpp11.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L523) | [R389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R389.txt) +R390 | Failure (creates invalid code) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L527) | [R390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R390.txt) +R391 | Failure (creates invalid code) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L529) | [R391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R391.txt) +R392 | Pass | [`RenameCpp11.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L533) | [R392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R392.txt) +R393 | Pass | [`RenameCpp11.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L537) | [R393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R393.txt) +R394 | Pass | [`RenameCpp11.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L538) | [R394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R394.txt) +R395 | Pass | [`RenameCpp11.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L539) | [R395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R395.txt) +R396 | Pass | [`RenameCpp11.cpp`, line 543](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L543) | [R396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R396.txt) +R397 | Pass | [`RenameCpp11.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L555) | [R397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R397.txt) +R398 | Pass | [`RenameCpp11.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L557) | [R398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R398.txt) +R399 | Pass | [`RenameCpp11.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L558) | [R399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R399.txt) +R400 | Pass | [`RenameCpp11.cpp`, line 561](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L561) | [R400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R400.txt) +R401 | Pass | [`RenameCpp11.cpp`, line 562](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L562) | [R401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R401.txt) +R402 | Pass | [`RenameCpp11.cpp`, line 573](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L573) | [R402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R402.txt) +R403 | Pass | [`RenameCpp11.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L577) | [R403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R403.txt) +R404 | Pass | [`RenameCpp11.cpp`, line 581](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L581) | [R404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R404.txt) +R405 | Pass | [`RenameCpp11.cpp`, line 582](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L582) | [R405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R405.txt) +R406 | Pass | [`RenameCpp11.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L587) | [R406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R406.txt) +R407 | Pass | [`RenameCpp11.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L600) | [R407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R407.txt) +R408 | Pass | [`RenameCpp11.cpp`, line 602](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L602) | [R408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R408.txt) +R409 | Pass | [`RenameCpp11.cpp`, line 605](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L605) | [R409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R409.txt) +R410 | Pass | [`RenameCpp11.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L606) | [R410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R410.txt) +R411 | Pass | [`RenameCpp11.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L607) | [R411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R411.txt) +R412 | Pass | [`RenameCpp11.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L608) | [R412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R412.txt) +R413 | Pass | [`RenameCpp11.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L636) | [R413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R413.txt) +R414 | Pass | [`RenameCpp11.cpp`, line 638](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L638) | [R414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R414.txt) +R415 | Pass | [`RenameCpp11.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L639) | [R415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R415.txt) +R416 | Pass | [`RenameCpp11.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L640) | [R416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R416.txt) +R417 | Pass | [`RenameCpp11.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L643) | [R417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R417.txt) +R418 | Pass | [`RenameCpp11.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L644) | [R418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R418.txt) +R419 | Pass | [`RenameCpp11.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L647) | [R419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R419.txt) +R420 | Pass | [`RenameCpp11.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L648) | [R420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R420.txt) +R421 | Pass | [`RenameCpp11.cpp`, line 650](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L650) | [R421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R421.txt) +R422 | Pass | [`RenameCpp11.cpp`, line 664](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L664) | [R422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R422.txt) +R423 | Pass | [`RenameCpp11.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L666) | [R423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R423.txt) +R424 | Pass | [`RenameCpp11.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L676) | [R424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R424.txt) +R425 | Pass | [`RenameCpp11.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L678) | [R425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R425.txt) +R426 | Pass | [`RenameCpp11.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L681) | [R426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R426.txt) +R427 | Pass | [`RenameCpp11.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L682) | [R427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R427.txt) +R428 | Pass | [`RenameCpp11.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L683) | [R428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R428.txt) +R429 | Pass | [`RenameCpp11.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L687) | [R429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R429.txt) +R430 | Pass | [`RenameCpp11.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L701) | [R430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R430.txt) +R431 | Pass | [`RenameCpp11.cpp`, line 704](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L704) | [R431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R431.txt) +R432 | Pass | [`RenameCpp11.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L705) | [R432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R432.txt) +R433 | Pass | [`RenameCpp11.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L709) | [R433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R433.txt) +R434 | Pass | [`RenameCpp11.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L710) | [R434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R434.txt) +R435 | Pass | [`RenameCpp11.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L714) | [R435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R435.txt) +R436 | Pass | [`RenameCpp11.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L722) | [R436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R436.txt) +R437 | Pass | [`RenameCpp11.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L728) | [R437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R437.txt) +R438 | Pass | [`RenameCpp11.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L730) | [R438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R438.txt) +R439 | Pass | [`RenameCpp11.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L731) | [R439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R439.txt) +R440 | Pass | [`RenameCpp11.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L732) | [R440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R440.txt) +R441 | Pass | [`RenameCpp11.cpp`, line 735](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L735) | [R441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R441.txt) +R442 | Pass | [`RenameCpp11.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L736) | [R442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R442.txt) +R443 | Pass | [`RenameCpp11.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L749) | [R443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R443.txt) +R444 | Pass | [`RenameCpp11.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L751) | [R444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R444.txt) +R445 | Pass | [`RenameCpp11.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L752) | [R445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R445.txt) +R446 | Pass | [`RenameCpp11.cpp`, line 753](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L753) | [R446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R446.txt) +R447 | Pass | [`RenameCpp11.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L756) | [R447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R447.txt) +R448 | Pass | [`RenameCpp11.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L758) | [R448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R448.txt) +R449 | Pass | [`RenameCpp11.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L759) | [R449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R449.txt) +R450 | Pass | [`RenameCpp11.cpp`, line 760](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L760) | [R450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R450.txt) +R451 | Pass | [`RenameCpp11.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L761) | [R451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R451.txt) +R452 | Pass | [`RenameCpp11.cpp`, line 762](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L762) | [R452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R452.txt) +R453 | Pass | [`RenameCpp11.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L765) | [R453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R453.txt) +R454 | Pass | [`RenameCpp11.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L766) | [R454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R454.txt) +R455 | Pass | [`RenameCpp11.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L767) | [R455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R455.txt) +R456 | Pass | [`RenameCpp11.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L768) | [R456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R456.txt) +R457 | Pass | [`RenameCpp11.cpp`, line 771](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L771) | [R457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R457.txt) +R458 | Pass | [`RenameCpp11.cpp`, line 772](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L772) | [R458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R458.txt) +R459 | Pass | [`RenameCpp11.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L776) | [R459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R459.txt) +R460 | Pass | [`RenameCpp11.cpp`, line 780](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L780) | [R460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R460.txt) +R461 | Pass | [`RenameCpp11.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L781) | [R461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R461.txt) +R462 | Pass | [`RenameCpp11.cpp`, line 783](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L783) | [R462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R462.txt) +R463 | Pass | [`RenameCpp11.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L787) | [R463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R463.txt) +R464 | Pass | [`RenameCpp11.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L789) | [R464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R464.txt) +R465 | Pass | [`RenameCpp11.cpp`, line 790](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L790) | [R465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R465.txt) +R466 | Pass | [`RenameCpp11.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L791) | [R466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R466.txt) +R467 | Pass | [`RenameCpp11.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L792) | [R467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R467.txt) +R468 | Pass | [`RenameCpp11.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L793) | [R468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R468.txt) +R469 | Pass | [`RenameCpp11.cpp`, line 801](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L801) | [R469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R469.txt) +R470 | Failure (doesn't select all instances) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L805) | [R470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R470.txt) +R471 | Pass | [`RenameCpp11.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L809) | [R471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R471.txt) +R472 | Pass | [`RenameCpp11.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L810) | [R472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R472.txt) +R473 | Pass | [`RenameCpp11.cpp`, line 812](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L812) | [R473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R473.txt) +R474 | Pass | [`RenameCpp11.cpp`, line 813](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L813) | [R474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R474.txt) +R475 | Pass | [`RenameCpp11.cpp`, line 814](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L814) | [R475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R475.txt) +R476 | Failure (doesn't select all instances) [16659](https://youtrack.jetbrains.com/issue/CPP-16659) | [`RenameCpp11.cpp`, line 815](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L815) | [R476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R476.txt) +R477 | Pass | [`RenameCpp11.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L821) | [R477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R477.txt) +R478 | Pass | [`RenameCpp11.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L824) | [R478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R478.txt) +R479 | Pass | [`RenameCpp11.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L825) | [R479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R479.txt) +R480 | Pass | [`RenameCpp11.cpp`, line 828](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L828) | [R480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R480.txt) +R481 | Pass | [`RenameCpp11.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L833) | [R481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R481.txt) +R482 | Pass | [`RenameCpp11.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L834) | [R482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R482.txt) +R483 | Pass | [`RenameCpp11.cpp`, line 837](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L837) | [R483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R483.txt) +R484 | Pass | [`RenameCpp11.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L845) | [R484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R484.txt) +R485 | Pass | [`RenameCpp11.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L846) | [R485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R485.txt) +R486 | Pass | [`RenameCpp11.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L849) | [R486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R486.txt) +R487 | Pass | [`RenameCpp11.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L854) | [R487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R487.txt) +R488 | Pass | [`RenameCpp11.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L855) | [R488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R488.txt) +R489 | Pass | [`RenameCpp11.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L858) | [R489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R489.txt) +R490 | Pass | [`RenameCpp11.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L866) | [R490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R490.txt) +R491 | Pass | [`RenameCpp11.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L867) | [R491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R491.txt) +R492 | Pass | [`RenameCpp11.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L870) | [R492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R492.txt) +R493 | Pass | [`RenameCpp11.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L878) | [R493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R493.txt) +R494 | Pass | [`RenameCpp11.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L880) | [R494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R494.txt) +R495 | Pass | [`RenameCpp11.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L882) | [R495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R495.txt) +R496 | Pass | [`RenameCpp11.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L883) | [R496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R496.txt) +R497 | Pass | [`RenameCpp11.cpp`, line 885](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L885) | [R497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R497.txt) +R498 | Pass | [`RenameCpp11.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L887) | [R498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R498.txt) +R499 | Pass | [`RenameCpp11.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L889) | [R499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R499.txt) +R500 | Pass | [`RenameCpp11.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L890) | [R500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R500.txt) +R501 | Pass | [`RenameCpp11.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L892) | [R501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R501.txt) +R502 | Pass | [`RenameCpp11.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L898) | [R502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R502.txt) +R503 | Pass | [`RenameCpp11.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L900) | [R503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R503.txt) +R504 | Pass | [`RenameCpp11.cpp`, line 901](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L901) | [R504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R504.txt) +R505 | Pass | [`RenameCpp11.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L902) | [R505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R505.txt) +R506 | Pass | [`RenameCpp11.cpp`, line 904](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L904) | [R506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R506.txt) +R507 | Pass | [`RenameCpp11.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L906) | [R507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R507.txt) +R508 | Pass | [`RenameCpp11.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L907) | [R508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R508.txt) +R509 | Pass | [`RenameCpp11.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L909) | [R509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R509.txt) +R510 | Pass | [`RenameCpp11.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L910) | [R510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R510.txt) +R511 | Pass | [`RenameCpp11.cpp`, line 911](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L911) | [R511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R511.txt) +R512 | Pass | [`RenameCpp11.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L912) | [R512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R512.txt) +R513 | Pass | [`RenameCpp11.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L913) | [R513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R513.txt) +R514 | Pass | [`RenameCpp11.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L915) | [R514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R514.txt) +R515 | Pass | [`RenameCpp11.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L921) | [R515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R515.txt) +R516 | Pass | [`RenameCpp11.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L923) | [R516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R516.txt) +R517 | Pass | [`RenameCpp11.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L925) | [R517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R517.txt) +R518 | Pass | [`RenameCpp11.cpp`, line 928](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L928) | [R518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R518.txt) +R519 | Pass | [`RenameCpp11.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L929) | [R519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R519.txt) +R520 | Pass | [`RenameCpp11.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L930) | [R520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R520.txt) +R521 | Pass | [`RenameCpp11.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L940) | [R521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R521.txt) +R522 | Pass | [`RenameCpp11.cpp`, line 942](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L942) | [R522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R522.txt) +R523 | Pass | [`RenameCpp11.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L945) | [R523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R523.txt) +R524 | Pass | [`RenameCpp11.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L952) | [R524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R524.txt) +R525 | Pass | [`RenameCpp11.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L954) | [R525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R525.txt) +R526 | Pass | [`RenameCpp11.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L957) | [R526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R526.txt) +R527 | Pass | [`RenameCpp11.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L958) | [R527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R527.txt) +R528 | Pass | [`RenameCpp11.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L960) | [R528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R528.txt) +R529 | Pass | [`RenameCpp11.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L965) | [R529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R529.txt) +R530 | Pass | [`RenameCpp11.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L970) | [R530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R530.txt) +R531 | Pass | [`RenameCpp11.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L972) | [R531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R531.txt) +R532 | Pass | [`RenameCpp11.cpp`, line 973](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L973) | [R532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R532.txt) +R533 | Pass | [`RenameCpp11.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L975) | [R533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R533.txt) +R534 | Pass | [`RenameCpp11.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L977) | [R534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R534.txt) +R535 | Pass | [`RenameCpp11.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L981) | [R535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R535.txt) +R536 | Pass | [`RenameCpp11.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L982) | [R536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R536.txt) +R537 | Pass | [`RenameCpp11.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L988) | [R537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R537.txt) +R538 | Pass | [`RenameCpp11.cpp`, line 993](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L993) | [R538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R538.txt) +R539 | Pass | [`RenameCpp11.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L997) | [R539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R539.txt) +R540 | Pass | [`RenameCpp11.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1005) | [R540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R540.txt) +R541 | Pass | [`RenameCpp11.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1011) | [R541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R541.txt) +R542 | Pass | [`RenameCpp11.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1018) | [R542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R542.txt) +R543 | Pass | [`RenameCpp11.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1021) | [R543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R543.txt) +R544 | Pass | [`RenameCpp11.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1028) | [R544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R544.txt) +R545 | Pass | [`RenameCpp11.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1030) | [R545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R545.txt) +R546 | Pass | [`RenameCpp11.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1032) | [R546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R546.txt) +R547 | Pass | [`RenameCpp11.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1042) | [R547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R547.txt) +R548 | Pass | [`RenameCpp11.cpp`, line 1044](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1044) | [R548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R548.txt) +R549 | Pass | [`RenameCpp11.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1046) | [R549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R549.txt) +R550 | Pass | [`RenameCpp11.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1052) | [R550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R550.txt) +R551 | Pass | [`RenameCpp11.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1054) | [R551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R551.txt) +R552 | Pass | [`RenameCpp11.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1057) | [R552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R552.txt) +R553 | Pass | [`RenameCpp11.cpp`, line 1059](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1059) | [R553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R553.txt) +R554 | Pass | [`RenameCpp11.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1062) | [R554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R554.txt) +R555 | Pass | [`RenameCpp11.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1064) | [R555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R555.txt) +R556 | Pass | [`RenameCpp11.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1067) | [R556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R556.txt) +R557 | Pass | [`RenameCpp11.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1069) | [R557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R557.txt) +R558 | Pass | [`RenameCpp11.cpp`, line 1073](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1073) | [R558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R558.txt) +R559 | Pass | [`RenameCpp11.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1074) | [R559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R559.txt) +R560 | Pass | [`RenameCpp11.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1075) | [R560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R560.txt) +R561 | Pass | [`RenameCpp11.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1076) | [R561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R561.txt) +R562 | Pass | [`RenameCpp11.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1082) | [R562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R562.txt) +R563 | Pass | [`RenameCpp11.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1087) | [R563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R563.txt) +R564 | Pass | [`RenameCpp11.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1090) | [R564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R564.txt) +R565 | Pass | [`RenameCpp11.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1096) | [R565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R565.txt) +R566 | Pass | [`RenameCpp11.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1101) | [R566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R566.txt) +R567 | Pass | [`RenameCpp11.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1104) | [R567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R567.txt) +R568 | Pass | [`RenameCpp11.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1107) | [R568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R568.txt) +R569 | Pass | [`RenameCpp11.cpp`, line 1111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1111) | [R569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R569.txt) +R570 | Pass | [`RenameCpp11.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1112) | [R570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R570.txt) +R571 | Pass | [`RenameCpp11.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1117) | [R571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R571.txt) +R572 | Pass | [`RenameCpp11.cpp`, line 1118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1118) | [R572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R572.txt) +R573 | Pass | [`RenameCpp11.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1122) | [R573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R573.txt) +R574 | Pass | [`RenameCpp11.cpp`, line 1127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1127) | [R574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R574.txt) +R575 | Pass | [`RenameCpp11.cpp`, line 1131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1131) | [R575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R575.txt) +R576 | Pass | [`RenameCpp11.cpp`, line 1134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1134) | [R576.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R576.txt) +R577 | Pass | [`RenameCpp11.cpp`, line 1143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1143) | [R577.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R577.txt) +R578 | Pass | [`RenameCpp11.cpp`, line 1149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1149) | [R578.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R578.txt) +R579 | Pass | [`RenameCpp11.cpp`, line 1158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1158) | [R579.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R579.txt) +R580 | Pass | [`RenameCpp11.cpp`, line 1165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1165) | [R580.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R580.txt) +R581 | Pass | [`RenameCpp11.cpp`, line 1172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1172) | [R581.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R581.txt) +R582 | Pass | [`RenameCpp11.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1173) | [R582.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R582.txt) +R583 | Pass | [`RenameCpp11.cpp`, line 1178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1178) | [R583.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R583.txt) +R584 | Pass | [`RenameCpp11.cpp`, line 1183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1183) | [R584.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R584.txt) +R585 | Pass | [`RenameCpp11.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1189) | [R585.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R585.txt) +R586 | Pass | [`RenameCpp11.cpp`, line 1194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1194) | [R586.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R586.txt) +R587 | Pass | [`RenameCpp11.cpp`, line 1195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1195) | [R587.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R587.txt) +R588 | Pass | [`RenameCpp11.cpp`, line 1196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1196) | [R588.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R588.txt) +R589 | Pass | [`RenameCpp11.cpp`, line 1206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1206) | [R589.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R589.txt) +R590 | Pass | [`RenameCpp11.cpp`, line 1213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1213) | [R590.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R590.txt) +R591 | Pass | [`RenameCpp11.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1218) | [R591.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R591.txt) +R592 | Pass | [`RenameCpp11.cpp`, line 1222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1222) | [R592.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R592.txt) +R593 | Pass | [`RenameCpp11.cpp`, line 1225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1225) | [R593.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R593.txt) +R594 | Pass | [`RenameCpp11.cpp`, line 1227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1227) | [R594.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R594.txt) +R595 | Pass | [`RenameCpp11.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1229) | [R595.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R595.txt) +R596 | Pass | [`RenameCpp11.cpp`, line 1231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1231) | [R596.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R596.txt) +R597 | Pass | [`RenameCpp11.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1236) | [R597.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R597.txt) +R598 | Pass | [`RenameCpp11.cpp`, line 1237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1237) | [R598.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R598.txt) +R599 | Pass | [`RenameCpp11.cpp`, line 1240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1240) | [R599.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R599.txt) +R600 | Pass | [`RenameCpp11.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1246) | [R600.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R600.txt) +R601 | Pass | [`RenameCpp11.cpp`, line 1247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1247) | [R601.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R601.txt) +R602 | Pass | [`RenameCpp11.cpp`, line 1250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1250) | [R602.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R602.txt) +R603 | Pass | [`RenameCpp11.cpp`, line 1251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1251) | [R603.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R603.txt) +R604 | Pass | [`RenameCpp11.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1290) | [R604.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R604.txt) +R605 | Pass | [`RenameCpp11.cpp`, line 1292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1292) | [R605.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R605.txt) +R606 | Pass | [`RenameCpp14.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L6) | [R606.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R606.txt) +R607 | Pass | [`RenameCpp14.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L8) | [R607.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R607.txt) +R608 | Pass | [`RenameCpp14.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L9) | [R608.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R608.txt) +R609 | Pass | [`RenameCpp14.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L10) | [R609.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R609.txt) +R610 | Pass | [`RenameCpp14.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L11) | [R610.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R610.txt) +R611 | Pass | [`RenameCpp14.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L14) | [R611.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R611.txt) +R612 | Pass | [`RenameCpp14.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L16) | [R612.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R612.txt) +R613 | Pass | [`RenameCpp14.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L17) | [R613.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R613.txt) +R614 | Pass | [`RenameCpp14.h`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L20) | [R614.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R614.txt) +R615 | Pass | [`RenameCpp14.h`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L21) | [R615.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R615.txt) +R616 | Pass | [`RenameCpp14.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L20) | [R616.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R616.txt) +R617 | Pass | [`RenameCpp14.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L22) | [R617.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R617.txt) +R618 | Pass | [`RenameCpp14.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L23) | [R618.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R618.txt) +R619 | Pass | [`RenameCpp14.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L24) | [R619.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R619.txt) +R620 | Pass | [`RenameCpp14.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L27) | [R620.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R620.txt) +R621 | Pass | [`RenameCpp14.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L29) | [R621.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R621.txt) +R622 | Pass | [`RenameCpp14.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L30) | [R622.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R622.txt) +R623 | Pass | [`RenameCpp14.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L33) | [R623.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R623.txt) +R624 | Pass | [`RenameCpp14.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L34) | [R624.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R624.txt) +R625 | Pass | [`RenameCpp14.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L48) | [R625.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R625.txt) +R626 | Pass | [`RenameCpp14.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L52) | [R626.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R626.txt) +R627 | Pass | [`RenameCpp14.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L60) | [R627.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R627.txt) +R628 | Pass | [`RenameCpp14.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L64) | [R628.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R628.txt) +R629 | Pass | [`RenameCpp14.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L70) | [R629.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R629.txt) +R630 | Pass | [`RenameCpp14.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L71) | [R630.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R630.txt) +R631 | Pass | [`RenameCpp14.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L72) | [R631.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R631.txt) +R632 | Pass | [`RenameCpp14.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L73) | [R632.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R632.txt) +R633 | Pass | [`RenameCpp14.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L81) | [R633.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R633.txt) +R634 | Pass | [`RenameCpp14.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L83) | [R634.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R634.txt) +R635 | Pass | [`RenameCpp14.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L84) | [R635.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R635.txt) +R636 | Pass | [`RenameCpp14.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L85) | [R636.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R636.txt) +R637 | Pass | [`RenameCpp14.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L86) | [R637.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R637.txt) +R638 | Pass | [`RenameCpp14.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L87) | [R638.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R638.txt) +R639 | Pass | [`RenameCpp14.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L88) | [R639.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R639.txt) +R640 | Pass | [`RenameCpp14.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L90) | [R640.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R640.txt) +R641 | Pass | [`RenameCpp14.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L92) | [R641.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R641.txt) +R642 | Pass | [`RenameCpp14.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L93) | [R642.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R642.txt) +R643 | Pass | [`RenameCpp14.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L94) | [R643.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R643.txt) +R644 | Pass | [`RenameCpp14.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L95) | [R644.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R644.txt) +R645 | Pass | [`RenameCpp14.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L96) | [R645.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R645.txt) +R646 | Pass | [`RenameCpp14.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L97) | [R646.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R646.txt) +R647 | Pass | [`RenameCpp14.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L99) | [R647.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R647.txt) +R648 | Pass | [`RenameCpp17.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L6) | [R648.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R648.txt) +R649 | Pass | [`RenameCpp17.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L7) | [R649.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R649.txt) +R650 | Pass | [`RenameCpp17.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L8) | [R650.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R650.txt) +R651 | Pass | [`RenameCpp17.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L11) | [R651.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R651.txt) +R652 | Pass | [`RenameCpp17.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L18) | [R652.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R652.txt) +R653 | Pass | [`RenameCpp17.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L26) | [R653.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R653.txt) +R654 | Pass | [`RenameCpp17.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L27) | [R654.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R654.txt) +R655 | Pass | [`RenameCpp17.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L28) | [R655.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R655.txt) +R656 | Pass | [`RenameCpp17.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L32) | [R656.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R656.txt) +R657 | Pass | [`RenameCpp17.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L48) | [R657.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R657.txt) +R658 | Pass | [`RenameCpp17.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L49) | [R658.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R658.txt) +R659 | Pass | [`RenameCpp17.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L50) | [R659.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R659.txt) +R660 | Pass | [`RenameCpp17.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L51) | [R660.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R660.txt) +R661 | Pass | [`RenameCpp17.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L53) | [R661.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R661.txt) +R662 | Pass | [`RenameCpp17.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L55) | [R662.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R662.txt) +R663 | Pass | [`RenameCpp17.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L56) | [R663.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R663.txt) +R664 | Pass | [`RenameCpp17.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L58) | [R664.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R664.txt) +R665 | Pass | [`RenameCpp17.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L68) | [R665.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R665.txt) +R666 | Pass | [`RenameCpp17.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L72) | [R666.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R666.txt) +R667 | Pass | [`RenameCpp17.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L73) | [R667.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R667.txt) +R668 | Pass | [`RenameCpp17.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L75) | [R668.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R668.txt) +R669 | Pass | [`RenameCpp17.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L78) | [R669.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R669.txt) +R670 | Pass | [`RenameCpp17.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L79) | [R670.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R670.txt) +R671 | Pass | [`RenameCpp17.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L99) | [R671.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R671.txt) +R672 | Pass | [`RenameCpp17.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L105) | [R672.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R672.txt) +R673 | Pass | [`RenameCpp17.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L107) | [R673.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R673.txt) +R674 | Pass | [`RenameCpp17.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L109) | [R674.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R674.txt) +R675 | Pass | [`RenameCpp17.cpp`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L110) | [R675.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R675.txt) +R676 | Pass | [`RenameCpp17.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L111) | [R676.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R676.txt) +R677 | Pass | [`RenameCpp17.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L112) | [R677.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R677.txt) +R678 | Pass | [`RenameCpp17.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L113) | [R678.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R678.txt) +R679 | Pass | [`RenameCpp17.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L118) | [R679.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R679.txt) +R680 | Pass | [`RenameCpp17.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L121) | [R680.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R680.txt) +R681 | Pass | [`RenameCpp17.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L130) | [R681.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R681.txt) +R682 | Pass | [`RenameCpp17.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L137) | [R682.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R682.txt) +R683 | Pass | [`RenameCpp17.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L139) | [R683.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R683.txt) +R684 | Pass | [`RenameCpp17.cpp`, line 147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L147) | [R684.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R684.txt) +R685 | Pass | [`RenameCpp17.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L149) | [R685.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R685.txt) +R686 | Pass | [`RenameCpp17.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L150) | [R686.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R686.txt) +R687 | Pass | [`RenameCpp17.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L151) | [R687.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R687.txt) +R688 | Pass | [`RenameCpp17.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L153) | [R688.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R688.txt) +R689 | Pass | [`RenameCpp17.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L155) | [R689.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R689.txt) +R690 | Pass | [`RenameCpp17.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L157) | [R690.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R690.txt) +R691 | Pass | [`RenameCpp17.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L158) | [R691.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R691.txt) +R692 | Pass | [`RenameCpp17.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L159) | [R692.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R692.txt) +R693 | Pass | [`RenameCpp17.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L161) | [R693.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R693.txt) +R694 | Pass | [`RenameCpp17.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L163) | [R694.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R694.txt) +R695 | Pass | [`RenameCpp17.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L165) | [R695.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R695.txt) +R696 | Pass | [`RenameCpp17.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L166) | [R696.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R696.txt) +R697 | Pass | [`RenameCpp17.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L167) | [R697.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R697.txt) +R698 | Pass | [`RenameCpp17.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L169) | [R698.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R698.txt) +R699 | Pass | [`RenameCpp17.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L171) | [R699.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R699.txt) +R700 | Pass | [`RenameCpp17.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L175) | [R700.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R700.txt) +R701 | Pass | [`RenameCpp17.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L176) | [R701.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R701.txt) +R702 | Pass | [`RenameCpp17.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L177) | [R702.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R702.txt) +R703 | Pass | [`RenameCpp17.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L179) | [R703.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R703.txt) +R704 | Pass | [`RenameCpp17.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L181) | [R704.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R704.txt) +R705 | Pass | [`RenameCpp17.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L189) | [R705.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R705.txt) +R706 | Pass | [`RenameCpp17.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L190) | [R706.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R706.txt) +R707 | Pass | [`RenameCpp17.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L191) | [R707.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R707.txt) +R708 | Pass | [`RenameCpp17.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L193) | [R708.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R708.txt) +R709 | Pass | [`RenameCpp17.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L195) | [R709.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R709.txt) +R710 | Pass | [`RenameCpp17.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L197) | [R710.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R710.txt) +R711 | Pass | [`RenameCpp17.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L198) | [R711.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R711.txt) +R712 | Pass | [`RenameCpp17.cpp`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L199) | [R712.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R712.txt) +R713 | Pass | [`RenameCpp17.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L201) | [R713.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R713.txt) +R714 | Pass | [`RenameCpp17.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L203) | [R714.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R714.txt) +R715 | Pass | [`RenameCpp17.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L205) | [R715.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R715.txt) +R716 | Pass | [`RenameCpp17.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L206) | [R716.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R716.txt) +R717 | Pass | [`RenameCpp17.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L207) | [R717.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R717.txt) +R718 | Pass | [`RenameCpp17.cpp`, line 209](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L209) | [R718.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R718.txt) +R719 | Pass | [`RenameCpp17.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L211) | [R719.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R719.txt) +R720 | Pass | [`RenameCpp17.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L215) | [R720.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R720.txt) +R721 | Pass | [`RenameCpp17.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L216) | [R721.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R721.txt) +R722 | Pass | [`RenameCpp17.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L217) | [R722.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R722.txt) +R723 | Pass | [`RenameCpp17.cpp`, line 219](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L219) | [R723.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R723.txt) +R724 | Pass | [`RenameCpp17.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L221) | [R724.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R724.txt) +R725 | Pass | [`RenameCpp17.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L233) | [R725.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R725.txt) +R726 | Pass | [`RenameCpp17.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L234) | [R726.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R726.txt) +R727 | Pass | [`RenameCpp17.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L235) | [R727.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R727.txt) +R728 | Pass | [`RenameCpp17.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L237) | [R728.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R728.txt) +R729 | Pass | [`RenameCpp17.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L239) | [R729.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R729.txt) +R730 | Pass | [`RenameCpp17.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L241) | [R730.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R730.txt) +R731 | Pass | [`RenameCpp17.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L242) | [R731.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R731.txt) +R732 | Pass | [`RenameCpp17.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L243) | [R732.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R732.txt) +R733 | Pass | [`RenameCpp17.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L245) | [R733.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R733.txt) +R734 | Pass | [`RenameCpp17.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L247) | [R734.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R734.txt) +R735 | Pass | [`RenameCpp17.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L249) | [R735.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R735.txt) +R736 | Pass | [`RenameCpp17.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L250) | [R736.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R736.txt) +R737 | Pass | [`RenameCpp17.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L251) | [R737.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R737.txt) +R738 | Pass | [`RenameCpp17.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L253) | [R738.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R738.txt) +R739 | Pass | [`RenameCpp17.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L255) | [R739.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R739.txt) +R740 | Pass | [`RenameCpp17.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L259) | [R740.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R740.txt) +R741 | Pass | [`RenameCpp17.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L260) | [R741.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R741.txt) +R742 | Pass | [`RenameCpp17.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L261) | [R742.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R742.txt) +R743 | Pass | [`RenameCpp17.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L263) | [R743.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R743.txt) +R744 | Pass | [`RenameCpp17.cpp`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L265) | [R744.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R744.txt) +R745 | Pass | [`RenameCpp17.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L273) | [R745.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R745.txt) +R746 | Pass | [`RenameCpp17.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L274) | [R746.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R746.txt) +R747 | Pass | [`RenameCpp17.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L275) | [R747.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R747.txt) +R748 | Pass | [`RenameCpp17.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L278) | [R748.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R748.txt) +R749 | Pass | [`RenameCpp17.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L280) | [R749.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R749.txt) +R750 | Pass | [`RenameCpp17.cpp`, line 285](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L285) | [R750.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R750.txt) +R751 | Pass | [`RenameCpp17.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L286) | [R751.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R751.txt) +R752 | Pass | [`RenameCpp17.cpp`, line 290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L290) | [R752.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R752.txt) +R753 | Pass | [`RenameCpp17.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L292) | [R753.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R753.txt) +R754 | Pass | [`RenameCpp17.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L296) | [R754.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R754.txt) +R755 | Pass | [`RenameCpp17.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L298) | [R755.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R755.txt) +R756 | Pass | [`RenameCpp17.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L308) | [R756.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R756.txt) +R757 | Pass | [`RenameCpp17.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L310) | [R757.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R757.txt) +R758 | Pass | [`RenameCpp17.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L311) | [R758.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R758.txt) +R759 | Pass | [`RenameCpp17.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L312) | [R759.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R759.txt) +R760 | Pass | [`RenameCpp17.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L315) | [R760.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R760.txt) +R761 | Pass | [`RenameCpp17.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L319) | [R761.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R761.txt) +R762 | Pass | [`RenameCpp17.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L321) | [R762.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R762.txt) +R763 | Pass | [`RenameCpp17.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L322) | [R763.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R763.txt) +R764 | Pass | [`RenameCpp17.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L323) | [R764.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R764.txt) +R765 | Pass | [`RenameCpp17.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L326) | [R765.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R765.txt) +R766 | Pass | [`RenameCpp17.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L330) | [R766.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R766.txt) +R767 | Pass | [`RenameCpp17.cpp`, line 332](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L332) | [R767.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R767.txt) +R768 | Pass | [`RenameCpp17.cpp`, line 333](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L333) | [R768.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R768.txt) +R769 | Pass | [`RenameCpp17.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L334) | [R769.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R769.txt) +R770 | Pass | [`RenameCpp17.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L335) | [R770.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R770.txt) +R771 | Pass | [`RenameCpp17.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L338) | [R771.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R771.txt) +R772 | Pass | [`RenameCpp17.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L339) | [R772.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R772.txt) +R773 | Pass | [`RenameCpp17.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L343) | [R773.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R773.txt) +R774 | Pass | [`RenameCpp17.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L345) | [R774.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R774.txt) +R775 | Pass | [`RenameCpp17.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L346) | [R775.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R775.txt) +R776 | Pass | [`RenameCpp17.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L347) | [R776.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R776.txt) +R777 | Pass | [`RenameCpp17.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L348) | [R777.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R777.txt) +R778 | Pass | [`RenameCpp17.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L351) | [R778.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R778.txt) +R779 | Pass | [`RenameCpp17.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L352) | [R779.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R779.txt) +R780 | Pass | [`RenameCpp17.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L384) | [R780.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R780.txt) +R781 | Pass | [`RenameCpp17.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L385) | [R781.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R781.txt) +R782 | Pass | [`RenameCpp17.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L386) | [R782.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R782.txt) +R783 | Pass | [`RenameCpp17.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L388) | [R783.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R783.txt) +R784 | Pass | [`RenameCpp17.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L390) | [R784.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R784.txt) +R785 | Pass | [`RenameCpp17.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L392) | [R785.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R785.txt) +R786 | Pass | [`RenameCpp17.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L393) | [R786.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R786.txt) +R787 | Pass | [`RenameCpp17.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L394) | [R787.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R787.txt) +R788 | Pass | [`RenameCpp17.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L396) | [R788.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R788.txt) +R789 | Pass | [`RenameCpp17.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L398) | [R789.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R789.txt) +R790 | Pass | [`RenameCpp17.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L403) | [R790.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R790.txt) +R791 | Pass | [`RenameCpp17.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L404) | [R791.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R791.txt) +R792 | Pass | [`RenameCpp17.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L405) | [R792.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R792.txt) +R793 | Pass | [`RenameCpp17.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L407) | [R793.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R793.txt) +R794 | Pass | [`RenameCpp17.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L409) | [R794.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R794.txt) +R795 | Pass | [`RenameCpp17.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L411) | [R795.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R795.txt) +R796 | Pass | [`RenameCpp17.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L413) | [R796.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R796.txt) +R797 | Pass | [`RenameCpp17.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L415) | [R797.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R797.txt) +R798 | Pass | [`RenameCpp17.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L416) | [R798.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R798.txt) +R799 | Pass | [`RenameCpp17.cpp`, line 417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L417) | [R799.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R799.txt) +R800 | Pass | [`RenameCpp17.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L419) | [R800.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R800.txt) +R801 | Pass | [`RenameCpp17.cpp`, line 421](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L421) | [R801.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R801.txt) +R802 | Pass | [`RenameCpp17.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L422) | [R802.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R802.txt) +R803 | Pass | [`RenameCpp17.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L424) | [R803.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R803.txt) +R804 | Pass | [`RenameCpp17.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L430) | [R804.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R804.txt) +R805 | Pass | [`RenameCpp17.cpp`, line 432](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L432) | [R805.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R805.txt) +R806 | Pass | [`RenameCpp17.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L438) | [R806.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R806.txt) +R807 | Pass | [`RenameCpp17.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L440) | [R807.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R807.txt) +R808 | Pass | [`RenameCpp17.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L443) | [R808.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R808.txt) +R809 | Pass | [`RenameCpp17.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L444) | [R809.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R809.txt) +R810 | Pass | [`RenameCpp17.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L449) | [R810.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R810.txt) +R811 | Pass | [`RenameCpp17.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L451) | [R811.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R811.txt) +R812 | Pass | [`RenameCpp17.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L452) | [R812.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R812.txt) +R813 | Pass | [`RenameCpp17.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L453) | [R813.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R813.txt) +R814 | Pass | [`RenameCpp17.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L461) | [R814.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R814.txt) +R815 | Pass | [`RenameCpp17.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L463) | [R815.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R815.txt) +R816 | Pass | [`RenameCpp17.cpp`, line 464](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L464) | [R816.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R816.txt) +R817 | Pass | [`RenameCpp17.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L465) | [R817.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R817.txt) +R818 | Pass | [`RenameCpp17.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L466) | [R818.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R818.txt) +R819 | Pass | [`RenameCpp17.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L467) | [R819.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R819.txt) +R820 | Pass | [`RenameCpp17.cpp`, line 472](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L472) | [R820.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R820.txt) +R821 | Pass | [`RenameCpp17.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L473) | [R821.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R821.txt) +R822 | Pass | [`RenameCpp17.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L475) | [R822.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R822.txt) +R823 | Pass | [`RenameCpp17.cpp`, line 478](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L478) | [R823.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R823.txt) +R824 | Pass | [`RenameCpp17.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L479) | [R824.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R824.txt) +R825 | Pass | [`RenameCpp17.cpp`, line 480](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L480) | [R825.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R825.txt) +R826 | Pass | [`RenameCpp17.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L481) | [R826.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R826.txt) +R827 | Pass | [`RenameCpp17.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L483) | [R827.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R827.txt) +R828 | Pass | [`RenameCpp17.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L489) | [R828.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R828.txt) +R829 | Pass | [`RenameCpp17.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L490) | [R829.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R829.txt) +R830 | Pass | [`RenameCpp17.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L491) | [R830.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R830.txt) +R831 | Pass | [`RenameCpp17.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L492) | [R831.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R831.txt) +R832 | Pass | [`RenameCpp17.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L496) | [R832.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R832.txt) +R833 | Pass | [`RenameCpp17.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L497) | [R833.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R833.txt) +R834 | Pass | [`RenameCpp17.cpp`, line 498](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L498) | [R834.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R834.txt) +R835 | Pass | [`RenameCpp17.cpp`, line 500](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L500) | [R835.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R835.txt) +R836 | Pass | [`RenameCpp17.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L508) | [R836.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R836.txt) +R837 | Pass | [`RenameCpp17.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L509) | [R837.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R837.txt) +R838 | Pass | [`RenameCpp17.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L510) | [R838.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R838.txt) +R839 | Pass | [`RenameCpp17.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L511) | [R839.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R839.txt) +R840 | Pass | [`RenameCpp17.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L512) | [R840.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R840.txt) +R841 | Failure (not available) | [`RenameCpp17.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L514) | [R841.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R841.txt) +R842 | Pass | [`RenameCpp17.cpp`, line 515](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L515) | [R842.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R842.txt) +R843 | Pass | [`RenameCpp17.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L520) | [R843.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R843.txt) +R844 | Pass | [`RenameCpp17.cpp`, line 521](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L521) | [R844.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R844.txt) +R845 | Pass | [`RenameCpp17.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L522) | [R845.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R845.txt) +R846 | Pass | [`RenameCpp17.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L523) | [R846.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R846.txt) +R847 | Pass | [`RenameCpp17.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L524) | [R847.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R847.txt) +R848 | Failure (not available) [36999](https://youtrack.jetbrains.com/issue/CPP-36999/Cant-Rename-variable-from-usage) | [`RenameCpp17.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L526) | [R848.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R848.txt) +R849 | Pass | [`RenameCpp17.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L527) | [R849.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R849.txt) +R850 | Pass | [`RenameCpp17.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L531) | [R850.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R850.txt) +R851 | Pass | [`RenameCpp17.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L533) | [R851.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R851.txt) +R852 | Pass | [`RenameCpp17.cpp`, line 534](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L534) | [R852.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R852.txt) +R853 | Pass | [`RenameCpp17.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L535) | [R853.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R853.txt) +R854 | Pass | [`RenameCpp17.cpp`, line 536](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L536) | [R854.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R854.txt) +R855 | Failure (not available) [36999](https://youtrack.jetbrains.com/issue/CPP-36999/Cant-Rename-variable-from-usage) | [`RenameCpp17.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L538) | [R855.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R855.txt) +R856 | Pass | [`RenameCpp17.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L539) | [R856.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R856.txt) +R857 | Pass | [`RenameCpp20.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L10) | [R857.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R857.txt) +R858 | Pass | [`RenameCpp20.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L13) | [R858.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R858.txt) +R859 | Pass | [`RenameCpp20.h`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L15) | [R859.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R859.txt) +R860 | Pass | [`RenameCpp20.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L17) | [R860.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R860.txt) +R861 | Pass | [`RenameCpp20.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L67) | [R861.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R861.txt) +R862 | Pass | [`RenameCpp20.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L69) | [R862.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R862.txt) +R863 | Pass | [`RenameCpp20.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L71) | [R863.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R863.txt) +R864 | Pass | [`RenameCpp20.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L72) | [R864.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R864.txt) +R865 | Pass | [`RenameCpp20.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L74) | [R865.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R865.txt) +R866 | Pass | [`RenameCpp20.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L75) | [R866.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R866.txt) +R867 | Pass | [`RenameCpp20.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L77) | [R867.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R867.txt) +R868 | Pass | [`RenameCpp20.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L78) | [R868.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R868.txt) +R869 | Pass | [`RenameCpp20.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L83) | [R869.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R869.txt) +R870 | Pass | [`RenameCpp20.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L85) | [R870.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R870.txt) +R871 | Pass | [`RenameCpp20.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L87) | [R871.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R871.txt) +R872 | Pass | [`RenameCpp20.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L88) | [R872.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R872.txt) +R873 | Pass | [`RenameCpp20.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L90) | [R873.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R873.txt) +R874 | Pass | [`RenameCpp20.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L91) | [R874.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R874.txt) +R875 | Pass | [`RenameCpp20.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L93) | [R875.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R875.txt) +R876 | Pass | [`RenameCpp20.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L94) | [R876.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R876.txt) +R877 | Pass | [`RenameCpp20.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L102) | [R877.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R877.txt) +R878 | Pass | [`RenameCpp20.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L105) | [R878.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R878.txt) +R879 | Pass | [`RenameCpp20.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L106) | [R879.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R879.txt) +R880 | Pass | [`RenameCpp20.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L107) | [R880.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R880.txt) +R881 | Pass | [`RenameCpp20.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L109) | [R881.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R881.txt) +R882 | Pass | [`RenameCpp20.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L111) | [R882.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R882.txt) +R883 | Pass | [`RenameCpp20.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L113) | [R883.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R883.txt) +R884 | Pass | [`RenameCpp20.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L117) | [R884.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R884.txt) +R885 | Pass | [`RenameCpp20.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L118) | [R885.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R885.txt) +R886 | Pass | [`RenameCpp20.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L119) | [R886.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R886.txt) +R887 | Pass | [`RenameCpp20.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L121) | [R887.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R887.txt) +R888 | Pass | [`RenameCpp20.cpp`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L123) | [R888.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R888.txt) +R889 | Pass | [`RenameCpp20.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L125) | [R889.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R889.txt) +R890 | Pass | [`RenameCpp20.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L129) | [R890.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R890.txt) +R891 | Pass | [`RenameCpp20.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L130) | [R891.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R891.txt) +R892 | Pass | [`RenameCpp20.cpp`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L131) | [R892.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R892.txt) +R893 | Pass | [`RenameCpp20.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L132) | [R893.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R893.txt) +R894 | Pass | [`RenameCpp20.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L134) | [R894.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R894.txt) +R895 | Pass | [`RenameCpp20.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L136) | [R895.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R895.txt) +R896 | Pass | [`RenameCpp20.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L138) | [R896.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R896.txt) +R897 | Pass | [`RenameCpp20.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L143) | [R897.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R897.txt) +R898 | Pass | [`RenameCpp20.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L149) | [R898.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R898.txt) +R899 | Pass | [`RenameCpp20.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L163) | [R899.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R899.txt) +R900 | Pass | [`RenameCpp20.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L164) | [R900.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R900.txt) +R901 | Pass | [`RenameCpp20.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L165) | [R901.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R901.txt) +R902 | Pass | [`RenameCpp20.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L168) | [R902.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R902.txt) +R903 | Pass | [`RenameCpp20.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L175) | [R903.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R903.txt) +R904 | Pass | [`RenameCpp20.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L176) | [R904.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R904.txt) +R905 | Pass | [`RenameCpp20.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L177) | [R905.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R905.txt) +R906 | Pass | [`RenameCpp20.cpp`, line 180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L180) | [R906.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R906.txt) +R907 | Pass | [`RenameCpp20.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L190) | [R907.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R907.txt) +R908 | Pass | [`RenameCpp20.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L191) | [R908.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R908.txt) +R909 | Pass | [`RenameCpp20.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L192) | [R909.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R909.txt) +R910 | Failure (not available) [37000](https://youtrack.jetbrains.com/issue/CPP-37000/Cant-rename-explicit-template-parameter-to-lambda-from-usage) | [`RenameCpp20.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L193) | [R910.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R910.txt) +R911 | Failure (not available) [37000](https://youtrack.jetbrains.com/issue/CPP-37000/Cant-rename-explicit-template-parameter-to-lambda-from-usage) | [`RenameCpp20.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L194) | [R911.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R911.txt) +R912 | Pass | [`RenameCpp20.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L196) | [R912.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R912.txt) +R913 | Pass | [`RenameCpp20.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L198) | [R913.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R913.txt) +R914 | Pass | [`RenameCpp20.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L200) | [R914.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R914.txt) +R915 | Pass | [`RenameCpp20.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L201) | [R915.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R915.txt) +R916 | Pass | [`RenameCpp20.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L202) | [R916.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R916.txt) +R917 | Pass | [`RenameCpp20.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L211) | [R917.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R917.txt) +R918 | Pass | [`RenameCpp20.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L212) | [R918.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R918.txt) +R919 | Pass | [`RenameCpp20.cpp`, line 214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L214) | [R919.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R919.txt) +R920 | Pass | [`RenameCpp20.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L215) | [R920.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R920.txt) +R921 | Pass | [`RenameCpp20.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L216) | [R921.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R921.txt) +R922 | Pass | [`RenameCpp20.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L217) | [R922.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R922.txt) +R923 | Pass | [`RenameCpp20.cpp`, line 220](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L220) | [R923.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R923.txt) +R924 | Pass | [`RenameCpp20.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L221) | [R924.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R924.txt) +R925 | Pass | [`RenameCpp20.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L222) | [R925.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R925.txt) +R926 | Pass | [`RenameCpp20.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L223) | [R926.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R926.txt) +R927 | Pass | [`RenameCpp20.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L224) | [R927.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R927.txt) +R928 | Pass | [`RenameCpp20.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L226) | [R928.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R928.txt) +R929 | Pass | [`RenameCpp20.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L236) | [R929.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R929.txt) +R930 | Pass | [`RenameCpp20.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L237) | [R930.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R930.txt) +R931 | Pass | [`RenameCpp20.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L240) | [R931.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R931.txt) +R932 | Pass | [`RenameCpp20.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L241) | [R932.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R932.txt) +R933 | Pass | [`RenameCpp20.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L248) | [R933.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R933.txt) +R934 | Pass | [`RenameCpp20.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L262) | [R934.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R934.txt) +R935 | Pass | [`RenameCpp20.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L263) | [R935.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R935.txt) +R936 | Pass | [`RenameCpp20.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L269) | [R936.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R936.txt) +R937 | Pass | [`RenameCpp20.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L279) | [R937.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R937.txt) +R938 | Pass | [`RenameCpp20.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L280) | [R938.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R938.txt) +R939 | Pass | [`RenameCpp20.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L282) | [R939.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R939.txt) +R940 | Pass | [`RenameCpp20.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L288) | [R940.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R940.txt) +R941 | Pass | [`RenameCpp20.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L295) | [R941.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R941.txt) +R942 | Pass | [`RenameCpp20.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L296) | [R942.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R942.txt) +R943 | Pass | [`RenameCpp20.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L297) | [R943.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R943.txt) +R944 | Pass | [`RenameCpp20.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L299) | [R944.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R944.txt) +R945 | Pass | [`RenameCpp20.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L305) | [R945.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R945.txt) +R946 | Pass | [`RenameCpp20.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L312) | [R946.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R946.txt) +R947 | Pass | [`RenameCpp20.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L313) | [R947.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R947.txt) +R948 | Pass | [`RenameCpp20.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L314) | [R948.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R948.txt) +R949 | Pass | [`RenameCpp20.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L316) | [R949.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R949.txt) +R950 | Pass | [`RenameCpp20.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L321) | [R950.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R950.txt) +R951 | Pass | [`RenameCpp20.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L322) | [R951.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R951.txt) +R952 | Pass | [`RenameCpp20.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L329) | [R952.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R952.txt) +R953 | Pass | [`RenameCpp20.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L336) | [R953.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R953.txt) +R954 | Pass | [`RenameCpp20.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L345) | [R954.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R954.txt) +R955 | Pass | [`RenameCpp20.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L346) | [R955.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R955.txt) +R956 | Pass | [`RenameCpp20.cpp`, line 357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L357) | [R956.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R956.txt) +R957 | Pass | [`RenameCpp20.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L358) | [R957.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R957.txt) +R958 | Pass | [`RenameCpp20.cpp`, line 361](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L361) | [R958.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R958.txt) +R959 | Pass | [`RenameCpp20.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L364) | [R959.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R959.txt) +R960 | Pass | [`RenameCpp20.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L380) | [R960.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R960.txt) +R961 | Pass | [`RenameCpp20.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L381) | [R961.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R961.txt) +R962 | Pass | [`RenameCpp20.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L384) | [R962.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R962.txt) +R963 | Pass | [`RenameCpp20.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L385) | [R963.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R963.txt) +R964 | Pass | [`RenameCpp20.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L389) | [R964.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R964.txt) +R965 | Pass | [`RenameCpp20.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L390) | [R965.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R965.txt) +R966 | Pass | [`RenameCpp20.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L396) | [R966.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R966.txt) +R967 | Pass | [`RenameCpp20.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L397) | [R967.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R967.txt) +R968 | Pass | [`RenameCpp20.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L403) | [R968.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R968.txt) +R969 | Pass | [`RenameCpp20.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L404) | [R969.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R969.txt) +R970 | Pass | [`RenameCpp20.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L405) | [R970.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R970.txt) +R971 | Pass | [`RenameCpp20.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L408) | [R971.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R971.txt) +R972 | Pass | [`RenameCpp20.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L409) | [R972.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R972.txt) +R973 | Pass | [`RenameCpp20.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L416) | [R973.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R973.txt) +R974 | Pass | [`RenameCpp20.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L418) | [R974.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R974.txt) +R975 | Pass | [`RenameCpp20.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L422) | [R975.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R975.txt) +R976 | Pass | [`RenameCpp20.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L423) | [R976.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R976.txt) +R977 | Pass | [`RenameCpp20.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L429) | [R977.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R977.txt) +R978 | Pass | [`RenameCpp20.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L430) | [R978.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R978.txt) +R979 | Pass | [`RenameCpp20.cpp`, line 436](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L436) | [R979.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R979.txt) +R980 | Pass | [`RenameCpp20.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L437) | [R980.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R980.txt) +R981 | Pass | [`RenameCpp20.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L443) | [R981.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R981.txt) +R982 | Pass | [`RenameCpp20.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L444) | [R982.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R982.txt) +R983 | Pass | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L449) | [R983.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R983.txt) +R984 | Pass | [`RenameCpp20.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L451) | [R984.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R984.txt) +R985 | Pass | [`RenameCpp20.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L452) | [R985.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R985.txt) +R986 | Pass | [`RenameCpp20.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L454) | [R986.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R986.txt) +R987 | | [`RenameCpp20Constraints.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L48) | [R987.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R987.txt) +R988 | | [`RenameCpp20Constraints.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L50) | [R988.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R988.txt) +R989 | | [`RenameCpp20Constraints.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L51) | [R989.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R989.txt) +R990 | | [`RenameCpp20Constraints.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L52) | [R990.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R990.txt) +R991 | | [`RenameCpp20Constraints.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L55) | [R991.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R991.txt) +R992 | | [`RenameCpp20Constraints.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L56) | [R992.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R992.txt) +R993 | | [`RenameCpp20Constraints.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L61) | [R993.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R993.txt) +R994 | | [`RenameCpp20Constraints.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L62) | [R994.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R994.txt) +R995 | | [`RenameCpp20Constraints.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L64) | [R995.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R995.txt) +R996 | | [`RenameCpp20Constraints.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L65) | [R996.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R996.txt) +R997 | | [`RenameCpp20Constraints.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L66) | [R997.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R997.txt) +R998 | | [`RenameCpp20Constraints.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L67) | [R998.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R998.txt) +R999 | | [`RenameCpp20Constraints.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L68) | [R999.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R999.txt) +R1000 | | [`RenameCpp20Constraints.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L71) | [R1000.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1000.txt) +R1001 | | [`RenameCpp20Constraints.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L72) | [R1001.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1001.txt) +R1002 | | [`RenameCpp20Constraints.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L78) | [R1002.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1002.txt) +R1003 | | [`RenameCpp20Constraints.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L80) | [R1003.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1003.txt) +R1004 | | [`RenameCpp20Constraints.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L81) | [R1004.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1004.txt) +R1005 | | [`RenameCpp20Constraints.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L83) | [R1005.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1005.txt) +R1006 | | [`RenameCpp20Constraints.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L84) | [R1006.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1006.txt) +R1007 | | [`RenameCpp20Constraints.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L85) | [R1007.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1007.txt) +R1008 | | [`RenameCpp20Constraints.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L86) | [R1008.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1008.txt) +R1009 | | [`RenameCpp20Constraints.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L89) | [R1009.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1009.txt) +R1010 | | [`RenameCpp20Constraints.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L90) | [R1010.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1010.txt) +R1011 | | [`RenameCpp20Constraints.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L95) | [R1011.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1011.txt) +R1012 | | [`RenameCpp20Constraints.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L97) | [R1012.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1012.txt) +R1013 | | [`RenameCpp20Constraints.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L98) | [R1013.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1013.txt) +R1014 | | [`RenameCpp20Constraints.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L99) | [R1014.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1014.txt) +R1015 | | [`RenameCpp20Constraints.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L100) | [R1015.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1015.txt) +R1016 | | [`RenameCpp20Constraints.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L102) | [R1016.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1016.txt) +R1017 | | [`RenameCpp20Constraints.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L103) | [R1017.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1017.txt) +R1018 | | [`RenameCpp20Constraints.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L106) | [R1018.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1018.txt) +R1019 | | [`RenameCpp20Constraints.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L107) | [R1019.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1019.txt) +R1020 | | [`RenameCpp20Constraints.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L112) | [R1020.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1020.txt) +R1021 | | [`RenameCpp20Constraints.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L114) | [R1021.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1021.txt) +R1022 | | [`RenameCpp20Constraints.cpp`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L115) | [R1022.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1022.txt) +R1023 | | [`RenameCpp20Constraints.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L116) | [R1023.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1023.txt) +R1024 | | [`RenameCpp20Constraints.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L118) | [R1024.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1024.txt) +R1025 | | [`RenameCpp20Constraints.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L119) | [R1025.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1025.txt) +R1026 | | [`RenameCpp20Constraints.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L120) | [R1026.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1026.txt) +R1027 | | [`RenameCpp20Constraints.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L121) | [R1027.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1027.txt) +R1028 | | [`RenameCpp20Constraints.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L124) | [R1028.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1028.txt) +R1029 | | [`RenameCpp20Constraints.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L125) | [R1029.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1029.txt) +R1030 | | [`RenameCpp20Constraints.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L130) | [R1030.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1030.txt) +R1031 | | [`RenameCpp20Constraints.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L132) | [R1031.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1031.txt) +R1032 | | [`RenameCpp20Constraints.cpp`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L133) | [R1032.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1032.txt) +R1033 | | [`RenameCpp20Constraints.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L134) | [R1033.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1033.txt) +R1034 | | [`RenameCpp20Constraints.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L136) | [R1034.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1034.txt) +R1035 | | [`RenameCpp20Constraints.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L137) | [R1035.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1035.txt) +R1036 | | [`RenameCpp20Constraints.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L138) | [R1036.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1036.txt) +R1037 | | [`RenameCpp20Constraints.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L139) | [R1037.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1037.txt) +R1038 | | [`RenameCpp20Constraints.cpp`, line 142](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L142) | [R1038.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1038.txt) +R1039 | | [`RenameCpp20Constraints.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L143) | [R1039.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1039.txt) +R1040 | | [`RenameCpp20Constraints.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L148) | [R1040.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1040.txt) +R1041 | | [`RenameCpp20Constraints.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L150) | [R1041.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1041.txt) +R1042 | | [`RenameCpp20Constraints.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L151) | [R1042.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1042.txt) +R1043 | | [`RenameCpp20Constraints.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L152) | [R1043.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1043.txt) +R1044 | | [`RenameCpp20Constraints.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L153) | [R1044.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1044.txt) +R1045 | | [`RenameCpp20Constraints.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L155) | [R1045.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1045.txt) +R1046 | | [`RenameCpp20Constraints.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L156) | [R1046.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1046.txt) +R1047 | | [`RenameCpp20Constraints.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L157) | [R1047.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1047.txt) +R1048 | | [`RenameCpp20Constraints.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L160) | [R1048.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1048.txt) +R1049 | | [`RenameCpp20Constraints.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L161) | [R1049.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1049.txt) +R1050 | | [`RenameCpp20Constraints.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L166) | [R1050.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1050.txt) +R1051 | | [`RenameCpp20Constraints.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L168) | [R1051.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1051.txt) +R1052 | | [`RenameCpp20Constraints.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L169) | [R1052.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1052.txt) +R1053 | | [`RenameCpp20Constraints.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L170) | [R1053.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1053.txt) +R1054 | | [`RenameCpp20Constraints.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L171) | [R1054.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1054.txt) +R1055 | | [`RenameCpp20Constraints.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L173) | [R1055.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1055.txt) +R1056 | | [`RenameCpp20Constraints.cpp`, line 174](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L174) | [R1056.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1056.txt) +R1057 | | [`RenameCpp20Constraints.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L175) | [R1057.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1057.txt) +R1058 | | [`RenameCpp20Constraints.cpp`, line 178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L178) | [R1058.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1058.txt) +R1059 | | [`RenameCpp20Constraints.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L179) | [R1059.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1059.txt) +R1060 | | [`RenameCpp20Constraints.cpp`, line 184](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L184) | [R1060.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1060.txt) +R1061 | | [`RenameCpp20Constraints.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L186) | [R1061.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1061.txt) +R1062 | | [`RenameCpp20Constraints.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L187) | [R1062.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1062.txt) +R1063 | | [`RenameCpp20Constraints.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L188) | [R1063.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1063.txt) +R1064 | | [`RenameCpp20Constraints.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L189) | [R1064.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1064.txt) +R1065 | | [`RenameCpp20Constraints.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L191) | [R1065.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1065.txt) +R1066 | | [`RenameCpp20Constraints.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L192) | [R1066.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1066.txt) +R1067 | | [`RenameCpp20Constraints.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L193) | [R1067.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1067.txt) +R1068 | | [`RenameCpp20Constraints.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L194) | [R1068.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1068.txt) +R1069 | | [`RenameCpp20Constraints.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L197) | [R1069.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1069.txt) +R1070 | | [`RenameCpp20Constraints.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L198) | [R1070.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1070.txt) +R1071 | | [`RenameCpp20Constraints.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L203) | [R1071.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1071.txt) +R1072 | | [`RenameCpp20Constraints.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L205) | [R1072.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1072.txt) +R1073 | | [`RenameCpp20Constraints.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L206) | [R1073.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1073.txt) +R1074 | | [`RenameCpp20Constraints.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L207) | [R1074.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1074.txt) +R1075 | | [`RenameCpp20Constraints.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L208) | [R1075.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1075.txt) +R1076 | | [`RenameCpp20Constraints.cpp`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L210) | [R1076.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1076.txt) +R1077 | | [`RenameCpp20Constraints.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L211) | [R1077.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1077.txt) +R1078 | | [`RenameCpp20Constraints.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L212) | [R1078.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1078.txt) +R1079 | | [`RenameCpp20Constraints.cpp`, line 213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L213) | [R1079.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1079.txt) +R1080 | | [`RenameCpp20Constraints.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L216) | [R1080.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1080.txt) +R1081 | | [`RenameCpp20Constraints.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L217) | [R1081.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1081.txt) +R1082 | | [`RenameCpp20Constraints.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L222) | [R1082.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1082.txt) +R1083 | | [`RenameCpp20Constraints.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L223) | [R1083.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1083.txt) +R1084 | | [`RenameCpp20Constraints.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L224) | [R1084.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1084.txt) +R1085 | | [`RenameCpp20Constraints.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L226) | [R1085.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1085.txt) +R1086 | | [`RenameCpp20Constraints.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L227) | [R1086.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1086.txt) +R1087 | | [`RenameCpp20Constraints.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L228) | [R1087.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1087.txt) +R1088 | | [`RenameCpp20Constraints.cpp`, line 230](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L230) | [R1088.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1088.txt) +R1089 | | [`RenameCpp20Constraints.cpp`, line 231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L231) | [R1089.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1089.txt) +R1090 | | [`RenameCpp20Constraints.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L232) | [R1090.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1090.txt) +R1091 | | [`RenameCpp20Constraints.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L233) | [R1091.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1091.txt) +R1092 | | [`RenameCpp20Constraints.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L234) | [R1092.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1092.txt) +R1093 | | [`RenameCpp20Constraints.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L235) | [R1093.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1093.txt) +R1094 | | [`RenameCpp20Constraints.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L236) | [R1094.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1094.txt) +R1095 | | [`RenameCpp20Constraints.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L239) | [R1095.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1095.txt) +R1096 | | [`RenameCpp20Constraints.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L240) | [R1096.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1096.txt) +R1097 | | [`RenameCpp20Constraints.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L245) | [R1097.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1097.txt) +R1098 | | [`RenameCpp20Constraints.cpp`, line 246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L246) | [R1098.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1098.txt) +R1099 | | [`RenameCpp20Constraints.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L247) | [R1099.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1099.txt) +R1100 | | [`RenameCpp20Constraints.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L249) | [R1100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1100.txt) +R1101 | | [`RenameCpp20Constraints.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L250) | [R1101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1101.txt) +R1102 | | [`RenameCpp20Constraints.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L251) | [R1102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1102.txt) +R1103 | | [`RenameCpp20Constraints.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L252) | [R1103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1103.txt) +R1104 | | [`RenameCpp20Constraints.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L253) | [R1104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1104.txt) +R1105 | | [`RenameCpp20Constraints.cpp`, line 254](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L254) | [R1105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1105.txt) +R1106 | | [`RenameCpp20Constraints.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L255) | [R1106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1106.txt) +R1107 | | [`RenameCpp20Constraints.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L257) | [R1107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1107.txt) +R1108 | | [`RenameCpp20Constraints.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L258) | [R1108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1108.txt) +R1109 | | [`RenameCpp20Constraints.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L259) | [R1109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1109.txt) +R1110 | | [`RenameCpp20Constraints.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L262) | [R1110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1110.txt) +R1111 | | [`RenameCpp20Constraints.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L263) | [R1111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1111.txt) +R1112 | | [`RenameCpp20Constraints.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L268) | [R1112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1112.txt) +R1113 | | [`RenameCpp20Constraints.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L269) | [R1113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1113.txt) +R1114 | | [`RenameCpp20Constraints.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L270) | [R1114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1114.txt) +R1115 | | [`RenameCpp20Constraints.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L272) | [R1115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1115.txt) +R1116 | | [`RenameCpp20Constraints.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L273) | [R1116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1116.txt) +R1117 | | [`RenameCpp20Constraints.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L274) | [R1117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1117.txt) +R1118 | | [`RenameCpp20Constraints.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L275) | [R1118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1118.txt) +R1119 | | [`RenameCpp20Constraints.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L277) | [R1119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1119.txt) +R1120 | | [`RenameCpp20Constraints.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L278) | [R1120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1120.txt) +R1121 | | [`RenameCpp20Constraints.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L279) | [R1121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1121.txt) +R1122 | | [`RenameCpp20Constraints.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L280) | [R1122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1122.txt) +R1123 | | [`RenameCpp20Constraints.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L281) | [R1123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1123.txt) +R1124 | | [`RenameCpp20Constraints.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L282) | [R1124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1124.txt) +R1125 | | [`RenameCpp20Constraints.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L283) | [R1125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1125.txt) +R1126 | | [`RenameCpp20Constraints.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L286) | [R1126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1126.txt) +R1127 | | [`RenameCpp20Constraints.cpp`, line 287](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L287) | [R1127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1127.txt) +R1128 | | [`RenameCpp20Constraints.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L292) | [R1128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1128.txt) +R1129 | | [`RenameCpp20Constraints.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L293) | [R1129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1129.txt) +R1130 | | [`RenameCpp20Constraints.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L294) | [R1130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1130.txt) +R1131 | | [`RenameCpp20Constraints.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L296) | [R1131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1131.txt) +R1132 | | [`RenameCpp20Constraints.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L297) | [R1132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1132.txt) +R1133 | | [`RenameCpp20Constraints.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L298) | [R1133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1133.txt) +R1134 | | [`RenameCpp20Constraints.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L299) | [R1134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1134.txt) +R1135 | | [`RenameCpp20Constraints.cpp`, line 300](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L300) | [R1135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1135.txt) +R1136 | | [`RenameCpp20Constraints.cpp`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L301) | [R1136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1136.txt) +R1137 | | [`RenameCpp20Constraints.cpp`, line 302](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L302) | [R1137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1137.txt) +R1138 | | [`RenameCpp20Constraints.cpp`, line 304](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L304) | [R1138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1138.txt) +R1139 | | [`RenameCpp20Constraints.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L305) | [R1139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1139.txt) +R1140 | | [`RenameCpp20Constraints.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L306) | [R1140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1140.txt) +R1141 | | [`RenameCpp20Constraints.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L307) | [R1141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1141.txt) +R1142 | | [`RenameCpp20Constraints.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L310) | [R1142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1142.txt) +R1143 | | [`RenameCpp20Constraints.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L311) | [R1143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1143.txt) +R1144 | | [`RenameCpp20Constraints.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L316) | [R1144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1144.txt) +R1145 | | [`RenameCpp20Constraints.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L317) | [R1145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1145.txt) +R1146 | | [`RenameCpp20Constraints.cpp`, line 318](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L318) | [R1146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1146.txt) +R1147 | | [`RenameCpp20Constraints.cpp`, line 320](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L320) | [R1147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1147.txt) +R1148 | | [`RenameCpp20Constraints.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L321) | [R1148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1148.txt) +R1149 | | [`RenameCpp20Constraints.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L322) | [R1149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1149.txt) +R1150 | | [`RenameCpp20Constraints.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L323) | [R1150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1150.txt) +R1151 | | [`RenameCpp20Constraints.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L325) | [R1151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1151.txt) +R1152 | | [`RenameCpp20Constraints.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L326) | [R1152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1152.txt) +R1153 | | [`RenameCpp20Constraints.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L327) | [R1153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1153.txt) +R1154 | | [`RenameCpp20Constraints.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L328) | [R1154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1154.txt) +R1155 | | [`RenameCpp20Constraints.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L329) | [R1155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1155.txt) +R1156 | | [`RenameCpp20Constraints.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L330) | [R1156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1156.txt) +R1157 | | [`RenameCpp20Constraints.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L331) | [R1157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1157.txt) +R1158 | | [`RenameCpp20Constraints.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L334) | [R1158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1158.txt) +R1159 | | [`RenameCpp20Constraints.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L335) | [R1159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1159.txt) +R1160 | | [`RenameCpp20Constraints.cpp`, line 340](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L340) | [R1160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1160.txt) +R1161 | | [`RenameCpp20Constraints.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L341) | [R1161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1161.txt) +R1162 | | [`RenameCpp20Constraints.cpp`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L342) | [R1162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1162.txt) +R1163 | | [`RenameCpp20Constraints.cpp`, line 344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L344) | [R1163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1163.txt) +R1164 | | [`RenameCpp20Constraints.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L345) | [R1164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1164.txt) +R1165 | | [`RenameCpp20Constraints.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L346) | [R1165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1165.txt) +R1166 | | [`RenameCpp20Constraints.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L347) | [R1166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1166.txt) +R1167 | | [`RenameCpp20Constraints.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L348) | [R1167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1167.txt) +R1168 | | [`RenameCpp20Constraints.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L349) | [R1168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1168.txt) +R1169 | | [`RenameCpp20Constraints.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L350) | [R1169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1169.txt) +R1170 | | [`RenameCpp20Constraints.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L352) | [R1170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1170.txt) +R1171 | | [`RenameCpp20Constraints.cpp`, line 353](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L353) | [R1171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1171.txt) +R1172 | | [`RenameCpp20Constraints.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L354) | [R1172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1172.txt) +R1173 | | [`RenameCpp20Constraints.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L355) | [R1173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1173.txt) +R1174 | | [`RenameCpp20Constraints.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L358) | [R1174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1174.txt) +R1175 | | [`RenameCpp20Constraints.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L359) | [R1175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1175.txt) +R1176 | | [`RenameCpp20Constraints.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L364) | [R1176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1176.txt) +R1177 | | [`RenameCpp20Constraints.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L365) | [R1177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1177.txt) +R1178 | | [`RenameCpp20Constraints.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L366) | [R1178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1178.txt) +R1179 | | [`RenameCpp20Constraints.cpp`, line 368](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L368) | [R1179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1179.txt) +R1180 | | [`RenameCpp20Constraints.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L369) | [R1180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1180.txt) +R1181 | | [`RenameCpp20Constraints.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L370) | [R1181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1181.txt) +R1182 | | [`RenameCpp20Constraints.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L371) | [R1182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1182.txt) +R1183 | | [`RenameCpp20Constraints.cpp`, line 372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L372) | [R1183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1183.txt) +R1184 | | [`RenameCpp20Constraints.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L374) | [R1184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1184.txt) +R1185 | | [`RenameCpp20Constraints.cpp`, line 375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L375) | [R1185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1185.txt) +R1186 | | [`RenameCpp20Constraints.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L376) | [R1186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1186.txt) +R1187 | | [`RenameCpp20Constraints.cpp`, line 377](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L377) | [R1187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1187.txt) +R1188 | | [`RenameCpp20Constraints.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L378) | [R1188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1188.txt) +R1189 | | [`RenameCpp20Constraints.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L379) | [R1189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1189.txt) +R1190 | | [`RenameCpp20Constraints.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L380) | [R1190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1190.txt) +R1191 | | [`RenameCpp20Constraints.cpp`, line 383](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L383) | [R1191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1191.txt) +R1192 | | [`RenameCpp20Constraints.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L384) | [R1192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1192.txt) +R1193 | | [`RenameCpp20Constraints.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L389) | [R1193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1193.txt) +R1194 | | [`RenameCpp20Constraints.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L390) | [R1194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1194.txt) +R1195 | | [`RenameCpp20Constraints.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L391) | [R1195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1195.txt) +R1196 | | [`RenameCpp20Constraints.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L393) | [R1196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1196.txt) +R1197 | | [`RenameCpp20Constraints.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L394) | [R1197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1197.txt) +R1198 | | [`RenameCpp20Constraints.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L395) | [R1198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1198.txt) +R1199 | | [`RenameCpp20Constraints.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L396) | [R1199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1199.txt) +R1200 | | [`RenameCpp20Constraints.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L397) | [R1200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1200.txt) +R1201 | | [`RenameCpp20Constraints.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L398) | [R1201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1201.txt) +R1202 | | [`RenameCpp20Constraints.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L399) | [R1202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1202.txt) +R1203 | | [`RenameCpp20Constraints.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L401) | [R1203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1203.txt) +R1204 | | [`RenameCpp20Constraints.cpp`, line 402](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L402) | [R1204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1204.txt) +R1205 | | [`RenameCpp20Constraints.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L403) | [R1205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1205.txt) +R1206 | | [`RenameCpp20Constraints.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L404) | [R1206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1206.txt) +R1207 | | [`RenameCpp20Constraints.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L405) | [R1207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1207.txt) +R1208 | | [`RenameCpp20Constraints.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L408) | [R1208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1208.txt) +R1209 | | [`RenameCpp20Constraints.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L409) | [R1209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1209.txt) +R1210 | | [`RenameCpp20Constraints.cpp`, line 441](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L441) | [R1210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1210.txt) +R1211 | | [`RenameCpp20Constraints.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L443) | [R1211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1211.txt) +R1212 | | [`RenameCpp20Constraints.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L446) | [R1212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1212.txt) +R1213 | | [`RenameCpp20Constraints.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L452) | [R1213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1213.txt) +R1214 | | [`RenameCpp20Constraints.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L454) | [R1214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1214.txt) +R1215 | | [`RenameCpp20Constraints.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L457) | [R1215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1215.txt) +R1216 | | [`RenameCpp20Constraints.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L463) | [R1216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1216.txt) +R1217 | | [`RenameCpp20Constraints.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L465) | [R1217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1217.txt) +R1218 | | [`RenameCpp20Constraints.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L468) | [R1218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1218.txt) +R1219 | | [`RenameCpp20Constraints.cpp`, line 474](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L474) | [R1219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1219.txt) +R1220 | | [`RenameCpp20Constraints.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L476) | [R1220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1220.txt) +R1221 | | [`RenameCpp20Constraints.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L483) | [R1221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1221.txt) +R1222 | | [`RenameCpp20Constraints.cpp`, line 485](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L485) | [R1222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1222.txt) +R1223 | | [`RenameCpp20Constraints.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L488) | [R1223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1223.txt) +R1224 | | [`RenameCpp20Constraints.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L494) | [R1224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1224.txt) +R1225 | | [`RenameCpp20Constraints.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L496) | [R1225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1225.txt) +R1226 | | [`RenameCpp20Constraints.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L503) | [R1226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1226.txt) +R1227 | | [`RenameCpp20Constraints.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L505) | [R1227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1227.txt) +R1228 | | [`RenameCpp20Constraints.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L512) | [R1228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1228.txt) +R1229 | | [`RenameCpp20Constraints.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L514) | [R1229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1229.txt) +R1230 | | [`RenameCpp20Constraints.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L522) | [R1230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1230.txt) +R1231 | | [`RenameCpp20Constraints.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L524) | [R1231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1231.txt) +R1232 | | [`RenameCpp20Constraints.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L527) | [R1232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1232.txt) +R1233 | | [`RenameCpp20Constraints.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L533) | [R1233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1233.txt) +R1234 | | [`RenameCpp20Constraints.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L535) | [R1234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1234.txt) +R1235 | | [`RenameCpp20Constraints.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L538) | [R1235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1235.txt) +R1236 | | [`RenameCpp20Constraints.cpp`, line 544](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L544) | [R1236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1236.txt) +R1237 | | [`RenameCpp20Constraints.cpp`, line 546](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L546) | [R1237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1237.txt) +R1238 | | [`RenameCpp20Constraints.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L549) | [R1238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1238.txt) +R1239 | | [`RenameCpp20Constraints.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L555) | [R1239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1239.txt) +R1240 | | [`RenameCpp20Constraints.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L557) | [R1240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1240.txt) +R1241 | | [`RenameCpp20Constraints.cpp`, line 565](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L565) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1242 | | [`RenameCpp20Constraints.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L567) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1243 | | [`RenameCpp20Constraints.cpp`, line 574](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L574) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1244 | | [`RenameCpp20Constraints.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L576) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1245 | | [`RenameCpp20Constraints.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L583) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L585) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L588) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 594](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L594) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 596](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L596) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 599](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L599) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L606) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L608) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L609) | [R1253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1253.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 611](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L611) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 615](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L615) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 616](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L616) | [R1256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1256.txt) +R1257 | | [`RenameCpp20Constraints.cpp`, line 623](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L623) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1258 | | [`RenameCpp20Constraints.cpp`, line 625](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L625) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L626) | [R1259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1259.txt) +R1260 | | [`RenameCpp20Constraints.cpp`, line 628](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L628) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1261 | | [`RenameCpp20Constraints.cpp`, line 631](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L631) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 632](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L632) | [R1262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1262.txt) +R1263 | | [`RenameCpp20Constraints.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L639) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1264 | | [`RenameCpp20Constraints.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L641) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L642) | [R1265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1265.txt) +R1266 | | [`RenameCpp20Constraints.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L644) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1267 | | [`RenameCpp20Constraints.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L647) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L648) | [R1268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1268.txt) +R1269 | | [`RenameCpp20Constraints.cpp`, line 656](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L656) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1270 | | [`RenameCpp20Constraints.cpp`, line 658](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L658) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 659](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L659) | [R1271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1271.txt) +R1272 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1273 | | [`RenameCpp20Constraints.cpp`, line 665](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L665) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L666) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1275 | | [`RenameCpp20Constraints.cpp`, line 673](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L673) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1276 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L676) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L682) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 689](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L689) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L691) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L697) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 706](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L706) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L708) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L709) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 711](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L711) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 715](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L715) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 723](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L723) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 725](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L725) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 726](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L726) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 739](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L739) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 741](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L741) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L742) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L744) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L756) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L758) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L759) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L761) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 773](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L773) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L776) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 778](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L778) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L781) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L791) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 794](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L794) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 797](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L797) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 798](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L798) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 806](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L806) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L809) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 816](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L816) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 817](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L817) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 818](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L818) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 840](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L840) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 841](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L841) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 842](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L842) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 843](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L843) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 847](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L847) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 853](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L853) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 864](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L864) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 865](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L865) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L866) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L867) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 871](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L871) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 877](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L877) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 888](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L888) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L889) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L890) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 891](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L891) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L892) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 896](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L896) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L902) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 903](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L903) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L912) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L915) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 916](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L916) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 917](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L917) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 927](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L927) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L929) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 936](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L936) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 937](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L937) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L940) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 941](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L941) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L952) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L954) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 962](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L962) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L965) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 966](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L966) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 967](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L967) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 979](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L979) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 980](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L980) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L981) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L988) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 989](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L989) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 994](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L994) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 995](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L995) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 1004](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1004) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1005) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 1006](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1006) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 1013](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1013) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 1014](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1014) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1018) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1019](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1019) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1029](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1029) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1030) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1031](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1031) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1038](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1038) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1039](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1039) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1042) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1045](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1045) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1046) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1056](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1056) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1057) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1058](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1058) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1066](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1066) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1067) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1070](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1070) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1071](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1071) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1077](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1077) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1083](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1083) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1092](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1092) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1096) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1119) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1122) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1126) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1132) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1135) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1139) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1145) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1148) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1152) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1163) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1167) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1176) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1180) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1186) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1189) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1193) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1204) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1221) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1224) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1233) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1243) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1253) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1256) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) + +## Reorder Parameters +Case| Result | Location | Expected Diff +--- | ----- | -------- | ------------- +RP1 | (deprecated) | [`ReorderParameters.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L12) | [RP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP1.txt) +RP2 | Pass | [`ReorderParameters.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L18) | [RP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP2.txt) +RP3 | (deprecated) | [`ReorderParameters.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L53) | [RP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP3.txt) +RP4 | (deprecated) | [`ReorderParameters.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L57) | [RP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP4.txt) +RP5 | Failure (changes member ptr to fn ptr) [1915](https://youtrack.jetbrains.com/issue/CPP-1915) | [`ReorderParameters.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L63) | [RP5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP5.txt) +RP6 | Failure (changes member ptr to fn ptr) [1915](https://youtrack.jetbrains.com/issue/CPP-1915) | [`ReorderParameters.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L78) | [RP6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP6.txt) +RP7 | Pass | [`ReorderParameters.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L95) | [RP7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP7.txt) +RP8 | Pass | [`ReorderParameters.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L112) | [RP8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP8.txt) +RP9 | (deprecated) | [`ReorderParameters.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L129) | [RP9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP9.txt) + +## Replace If With Ternary +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RIT1 | Pass | [`ReplaceIfWithTernary.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L18) | [RIT1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT1.txt) +RIT2 | Failure (not available) [1944](https://youtrack.jetbrains.com/issue/CPP-1944) | [`ReplaceIfWithTernary.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L29) | [RIT2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT2.txt) +RIT3 | Pass | [`ReplaceIfWithTernary.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L40) | [RIT3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT3.txt) +RIT4 | Failure (not available) [1944](https://youtrack.jetbrains.com/issue/CPP-1944) | [`ReplaceIfWithTernary.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L55) | [RIT4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT4.txt) +RIT5 | Pass | [`ReplaceIfWithTernary.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L75) | [RIT5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT5.txt) +RIT6 | Pass | [`ReplaceIfWithTernary.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L88) | [RIT6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT6.txt) +RIT7 | Pass | [`ReplaceIfWithTernary.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L100) | [RIT7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT7.txt) +RIT8 | Pass | [`ReplaceIfWithTernary.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L120) | [RIT8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT8.txt) +RIT9 | Failure (creates invalid code) [1945](https://youtrack.jetbrains.com/issue/CPP-1945) | [`ReplaceIfWithTernary.cpp`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L144) | [RIT9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT9.txt) + +## Replace Ternary With If +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RTI1 | Pass | [`ReplaceTernaryWithIf.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L17) | [RTI1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI1.txt) +RTI2 | Failure (should not be available) [1946](https://youtrack.jetbrains.com/issue/CPP-1946) | [`ReplaceTernaryWithIf.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L22) | [RTI2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI2.txt) +RTI3 | Pass | [`ReplaceTernaryWithIf.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L27) | [RTI3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI3.txt) +RTI4 | Pass | [`ReplaceTernaryWithIf.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L36) | [RTI4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI4.txt) +RTI5 | Failure (should not be available) [1946](https://youtrack.jetbrains.com/issue/CPP-1946) | [`ReplaceTernaryWithIf.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L41) | [RTI5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI5.txt) +RTI6 | Pass | [`ReplaceTernaryWithIf.cpp`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L45) | [RTI6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI6.txt) +RTI7 | Pass | [`ReplaceTernaryWithIf.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L57) | [RTI7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI7.txt) +RTI8 | Pass | [`ReplaceTernaryWithIf.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L61) | [RTI8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI8.txt) +RTI9 | Failure (should not be available) [1946](https://youtrack.jetbrains.com/issue/CPP-1946) | [`ReplaceTernaryWithIf.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L65) | [RTI9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI9.txt) +RTI10 | Pass | [`ReplaceTernaryWithIf.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L81) | [RTI10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI10.txt) +RTI11 | Failure (should not be available) [1946](https://youtrack.jetbrains.com/issue/CPP-1946) | [`ReplaceTernaryWithIf.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L87) | [RTI11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI11.txt) + +## Replace Type With auto +Case | Result | Location | Expected Diff +------ | ------ | -------- | ------------- +RTWA1 | Pass | [`ReplaceTypeWithAuto.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L17) | [RTWA1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA1.txt) +RTWA2 | Pass | [`ReplaceTypeWithAuto.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L25) | [RTWA2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA2.txt) +RTWA3 | Pass | [`ReplaceTypeWithAuto.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L33) | [RTWA3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA3.txt) +RTWA4 | Pass | [`ReplaceTypeWithAuto.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L42) | [RTWA4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA4.txt) +RTWA5 | Pass | [`ReplaceTypeWithAuto.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L57) | [RTWA5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA5.txt) +RTWA6 | Pass | [`ReplaceTypeWithAuto.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L65) | [RTWA6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA6.txt) +RTWA7 | Pass | [`ReplaceTypeWithAuto.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L73) | [RTWA7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA7.txt) +RTWA8 | Pass | [`ReplaceTypeWithAuto.cpp`, line 82](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L82) | [RTWA8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA8.txt) +RTWA9 | Pass | [`ReplaceTypeWithAuto.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L97) | [RTWA9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA9.txt) +RTWA10 | Pass | [`ReplaceTypeWithAuto.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L105) | [RTWA10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA10.txt) +RTWA11 | Pass | [`ReplaceTypeWithAuto.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L113) | [RTWA11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA11.txt) +RTWA12 | Pass | [`ReplaceTypeWithAuto.cpp`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L122) | [RTWA12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA12.txt) +RTWA13 | Pass | [`ReplaceTypeWithAuto.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L137) | [RTWA13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA13.txt) +RTWA14 | Pass | [`ReplaceTypeWithAuto.cpp`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L145) | [RTWA14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA14.txt) +RTWA15 | Pass | [`ReplaceTypeWithAuto.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L153) | [RTWA15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA15.txt) +RTWA16 | Pass | [`ReplaceTypeWithAuto.cpp`, line 162](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L162) | [RTWA16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA16.txt) +RTWA17 | Pass | [`ReplaceTypeWithAuto.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L177) | [RTWA17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA17.txt) +RTWA18 | Pass | [`ReplaceTypeWithAuto.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L185) | [RTWA18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA18.txt) +RTWA19 | Pass | [`ReplaceTypeWithAuto.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L193) | [RTWA19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA19.txt) +RTWA20 | Pass | [`ReplaceTypeWithAuto.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L201) | [RTWA20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA20.txt) +RTWA21 | Pass | [`ReplaceTypeWithAuto.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L215) | [RTWA21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA21.txt) +RTWA22 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L222) | [RTWA22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA22.txt) +RTWA23 | Pass | [`ReplaceTypeWithAuto.cpp`, line 225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L225) | [RTWA23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA23.txt) +RTWA24 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L233) | [RTWA24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA24.txt) +RTWA25 | Pass | [`ReplaceTypeWithAuto.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L242) | [RTWA25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA25.txt) +RTWA26 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L249) | [RTWA26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA26.txt) +RTWA27 | Pass | [`ReplaceTypeWithAuto.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L252) | [RTWA27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA27.txt) +RTWA28 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L259) | [RTWA28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA28.txt) +RTWA29 | Pass | [`ReplaceTypeWithAuto.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L268) | [RTWA29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA29.txt) +RTWA30 | Pass | [`ReplaceTypeWithAuto.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L276) | [RTWA30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA30.txt) +RTWA31 | Pass | [`ReplaceTypeWithAuto.cpp`, line 284](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L284) | [RTWA31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA31.txt) +RTWA32 | Pass | [`ReplaceTypeWithAuto.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L293) | [RTWA32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA32.txt) + +## Reverse Conditional +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RC1 | Pass | [`ReverseConditional.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L18) | [RC1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC1.txt) +RC2 | Pass | [`ReverseConditional.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L21) | [RC2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC2.txt) +RC3 | Pass | [`ReverseConditional.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L24) | [RC3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC3.txt) +RC4 | Pass | [`ReverseConditional.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L27) | [RC4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC4.txt) +RC5 | Pass | [`ReverseConditional.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L52) | [RC5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC5.txt) +RC6 | Pass | [`ReverseConditional.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L65) | [RC6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC6.txt) +RC7 | Pass | [`ReverseConditional.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L78) | [RC7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC7.txt) +RC8 | Pass | [`ReverseConditional.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L91) | [RC8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC8.txt) + +## Simplify Boolean Expression +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +SB1 | Pass | [`SimplifyBooleanExpression.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L30) | [SB1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB1.txt) +SB2 | Pass | [`SimplifyBooleanExpression.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L34) | [SB2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB2.txt) +SB3 | Pass | [`SimplifyBooleanExpression.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L38) | [SB3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB3.txt) +SB4 | Pass | [`SimplifyBooleanExpression.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L42) | [SB4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB4.txt) +SB5 | Pass | [`SimplifyBooleanExpression.cpp`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L46) | [SB5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB5.txt) +SB6 | Pass | [`SimplifyBooleanExpression.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L50) | [SB6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB6.txt) +SB7 | Pass | [`SimplifyBooleanExpression.cpp`, line 54](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L54) | [SB7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB7.txt) +SB8 | Pass | [`SimplifyBooleanExpression.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L58) | [SB8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB8.txt) +SB9 | Pass | [`SimplifyBooleanExpression.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L62) | [SB9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB9.txt) +SB10 | Pass | [`SimplifyBooleanExpression.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L66) | [SB10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB10.txt) +SB11 | Pass | [`SimplifyBooleanExpression.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L71) | [SB11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB11.txt) +SB12 | Pass | [`SimplifyBooleanExpression.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L75) | [SB12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB12.txt) +SB13 | Pass | [`SimplifyBooleanExpression.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L79) | [SB13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB13.txt) + +## Split Initialization From Declaration +Case | Result | Location | Expected Diff +----- | ------ | -------- | ------------- +SID1 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L24) | [SID1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID1.txt) +SID2 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L28) | [SID2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID2.txt) +SID3 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L32) | [SID3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID3.txt) +SID4 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L36) | [SID4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID4.txt) +SID5 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L40) | [SID5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID5.txt) +SID6 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L44) | [SID6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID6.txt) +SID7 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L50) | [SID7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID7.txt) +SID8 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 54](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L54) | [SID8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID8.txt) +SID9 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L58) | [SID9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID9.txt) +SID10 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L62) | [SID10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID10.txt) +SID11 | Failure (not available) [1948](https://youtrack.jetbrains.com/issue/CPP-1948) | [`SplitInitializationFromDeclaration.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L68) | [SID11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID11.txt) + +## Split Multi-Variable Declaration +Case | Result | Location | Expected Diff +----- | ------ | -------- | ------------- +SMVD1 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L44) | [SMVD1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD1.txt) +SMVD2 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L52) | [SMVD2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD2.txt) +SMVD3 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L59) | [SMVD3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD3.txt) +SMVD4 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L64) | [SMVD4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD4.txt) +SMVD5 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L69) | [SMVD5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD5.txt) +SMVD6 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L74) | [SMVD6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD6.txt) +SMVD7 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L77) | [SMVD7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD7.txt) +SMVD8 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L80) | [SMVD8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD8.txt) +SMVD9 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L83) | [SMVD9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD9.txt) +SMVD10 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L87) | [SMVD10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD10.txt) +SMVD11 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L90) | [SMVD11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD11.txt) +SMVD12 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L98) | [SMVD12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD12.txt) +SMVD13 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L101) | [SMVD13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD13.txt) +SMVD14 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L105) | [SMVD14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD14.txt) +SMVD15 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L111) | [SMVD15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD15.txt) +SMVD16 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L116) | [SMVD16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD16.txt) +SMVD17 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L122) | [SMVD17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD17.txt) +SMVD18 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L127) | [SMVD18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD18.txt) +SMVD19 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L132) | [SMVD19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD19.txt) diff --git a/results/annotated/ClangTidyResults.md b/results/annotated/ClangTidyResults.md new file mode 100644 index 0000000..26df387 --- /dev/null +++ b/results/annotated/ClangTidyResults.md @@ -0,0 +1,230 @@ +# clang-tidy + +Home: [clang-tidy](https://clang.llvm.org/extra/clang-tidy/index.html) + +Version: 17.0.6 + +* clang-tidy support may be integrated into an IDE, such as ReSharper for C++. +* All tests performed by invoking clang-tidy from the command-line on a source file. +* clang-tidy checks configured through `.clang-tidy` configuration file +* **Add Block Delimiter** available through check [*readability-braces-around-statements*](https://clang.llvm.org/extra/clang-tidy/checks/readability/braces-around-statements.html) +* **Add Override** available through check [*modernize-use-override*](https://clang.llvm.org/extra/clang-tidy/checks/modernize/use-override.html) +* **Make Method Static** available through check [*readability-convert-member-functions-to-static*](https://clang.llvm.org/extra/clang-tidy/checks/readability/convert-member-functions-to-static.html) +* **Replace `auto_ptr` With `unique_ptr`** available through check [*modernize-replace-auto-ptr*](https://clang.llvm.org/extra/clang-tidy/checks/modernize/replace-auto-ptr.html) +* **Replace Iterative For With Range For** available through check [*modernize-loop-convert*](https://clang.llvm.org/extra/clang-tidy/checks/modernize/loop-convert.html) +* **Replace `NULL`/`0` With `nullptr`** available through check [*modernize-use-nullptr*](https://clang.llvm.org/extra/clang-tidy/checks/modernize/use-nullptr.html) +* **Replace Type With `auto`** available through check [*modernize-use-auto*](https://clang.llvm.org/extra/clang-tidy/checks/modernize/use-auto.html) +* **Simplify Boolean Expression** available through check [*readability-simplify-boolean-expression*](https://clang.llvm.org/extra/clang-tidy/checks/readability/simplify-boolean-expr.html) + +## Add Block Delimiter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +ABD1 | Pass | [`AddBlockDelimiter.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L11) | [ABD1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD1.txt) +ABD2 | Pass | [`AddBlockDelimiter.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L14) | [ABD2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD2.txt) +ABD3 | Pass | [`AddBlockDelimiter.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L17) | [ABD3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD3.txt) +ABD4 | Pass | [`AddBlockDelimiter.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L21) | [ABD4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD4.txt) +ABD5 | Pass | [`AddBlockDelimiter.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L23) | [ABD5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD5.txt) +ABD6 | Pass | [`AddBlockDelimiter.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L25) | [ABD6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD6.txt) +ABD7 | Pass | [`AddBlockDelimiter.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L27) | [ABD7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD7.txt) + +## Add Override +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +AO1 | Pass | [`AddOverride.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L38) | [AO1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO1.txt) +AO2 | Pass | [`AddOverride.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L43) | [AO2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO2.txt) +AO3 | Pass | [`AddOverride.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L48) | [AO3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO3.txt) +AO4 | Pass | [`AddOverride.cpp`, line 54](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L54) | [AO4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO4.txt) +AO5 | Pass | [`AddOverride.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L60) | [AO5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO5.txt) +AO6 | Pass | [`AddOverride.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L66) | [AO6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO6.txt) +AO7 | Pass | [`AddOverride.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L71) | [AO7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO7.txt) +AO8 | Pass | [`AddOverride.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L76) | [AO8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO8.txt) +AO9 | Pass | [`AddOverride.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L81) | [AO9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO9.txt) +AO10 | Pass | [`AddOverride.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L86) | [AO10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO10.txt) +AO11 | Pass | [`AddOverride.cpp`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L131) | [AO11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO11.txt) +AO12 | Pass | [`AddOverride.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L136) | [AO12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO12.txt) +AO13 | Pass | [`AddOverride.cpp`, line 141](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L141) | [AO13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO13.txt) +AO14 | Pass | [`AddOverride.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L146) | [AO14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO14.txt) +AO15 | Pass | [`AddOverride.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L151) | [AO15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO15.txt) +AO16 | Pass | [`AddOverride.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L156) | [AO16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO16.txt) + +## Replace auto_ptr With unique_ptr +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RAWU1 | Pass | [`ReplaceAutoPtrWithUniquePtr.cpp`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoPtrWithUniquePtr.cpp#L7) | [RAWU1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWU1.txt) +RAWU2 | Pass | [`ReplaceAutoPtrWithUniquePtr.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoPtrWithUniquePtr.cpp#L12) | [RAWU2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWU2.txt) +RAWU3 | Pass | [`ReplaceAutoPtrWithUniquePtr.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoPtrWithUniquePtr.cpp#L19) | [RAWU3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWU3.txt) +RAWU4 | Pass | [`ReplaceAutoPtrWithUniquePtr.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoPtrWithUniquePtr.cpp#L27) | [RAWU4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWU4.txt) + +## Replace Iterative For With Range For +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RIRF1 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L9) | [RIRF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF1.txt) +RIRF2 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L17) | [RIRF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF2.txt) +RIRF3 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L25) | [RIRF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF3.txt) +RIRF4 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L34) | [RIRF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF4.txt) +RIRF5 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L41) | [RIRF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF5.txt) +RIRF6 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L49) | [RIRF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF6.txt) +RIRF7 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L57) | [RIRF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF7.txt) +RIRF8 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L71) | [RIRF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF8.txt) +RIRF9 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L79) | [RIRF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF9.txt) +RIRF10 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L87) | [RIRF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF10.txt) +RIRF11 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L95) | [RIRF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF11.txt) +RIRF12 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L103) | [RIRF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF12.txt) +RIRF13 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L111) | [RIRF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF13.txt) +RIRF14 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L123) | [RIRF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF14.txt) +RIRF15 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L139) | [RIRF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF15.txt) +RIRF16 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L155) | [RIRF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF16.txt) +RIRF17 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L171) | [RIRF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF17.txt) +RIRF18 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L187) | [RIRF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF18.txt) +RIRF19 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L203) | [RIRF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF19.txt) +RIRF20 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L225) | [RIRF20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF20.txt) +RIRF21 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L233) | [RIRF21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF21.txt) +RIRF22 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L241) | [RIRF22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF22.txt) +RIRF23 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L249) | [RIRF23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF23.txt) +RIRF24 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L257) | [RIRF24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF24.txt) +RIRF25 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L265) | [RIRF25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF25.txt) +RIRF26 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 284](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L284) | [RIRF26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF26.txt) +RIRF27 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L293) | [RIRF27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF27.txt) +RIRF28 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 302](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L302) | [RIRF28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF28.txt) +RIRF29 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L311) | [RIRF29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF29.txt) +RIRF30 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 320](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L320) | [RIRF30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF30.txt) +RIRF31 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L329) | [RIRF31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF31.txt) +RIRF32 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L343) | [RIRF32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF32.txt) +RIRF33 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L351) | [RIRF33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF33.txt) +RIRF34 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L359) | [RIRF34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF34.txt) +RIRF35 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 367](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L367) | [RIRF35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF35.txt) +RIRF36 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L375) | [RIRF36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF36.txt) +RIRF37 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 383](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L383) | [RIRF37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF37.txt) +RIRF38 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L394) | [RIRF38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF38.txt) +RIRF39 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L404) | [RIRF39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF39.txt) +RIRF40 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L414) | [RIRF40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF40.txt) +RIRF41 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L424) | [RIRF41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF41.txt) +RIRF42 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 434](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L434) | [RIRF42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF42.txt) +RIRF43 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L444) | [RIRF43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF43.txt) +RIRF44 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L459) | [RIRF44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF44.txt) +RIRF45 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L467) | [RIRF45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF45.txt) +RIRF46 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L475) | [RIRF46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF46.txt) +RIRF47 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L483) | [RIRF47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF47.txt) +RIRF48 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L491) | [RIRF48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF48.txt) +RIRF49 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 499](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L499) | [RIRF49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF49.txt) +RIRF50 | Failure (substitutes internal typedefs) [36688](https://llvm.org/show_bug.cgi?id=36688) | [`ReplaceIterativeForWithRangeFor.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L529) | [RIRF50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF50.txt) +RIRF51 | Failure (doesn't recognize caching end compare) [22570](https://github.com/llvm/llvm-project/issues/22570) | [`ReplaceIterativeForWithRangeFor.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L537) | [RIRF51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF51.txt) +RIRF52 | Failure (doesn't recognize caching end compare, reverse loop) [22570](https://github.com/llvm/llvm-project/issues/22570), [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 545](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L545) | [RIRF52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF52.txt) +RIRF53 | Failure (doesn't recognize caching end compare) [22570](https://github.com/llvm/llvm-project/issues/22570) | [`ReplaceIterativeForWithRangeFor.cpp`, line 553](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L553) | [RIRF53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF53.txt) +RIRF54 | Failure (doesn't recognize caching end compare, reverse loop) [22570](https://github.com/llvm/llvm-project/issues/22570), [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 561](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L561) | [RIRF54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF54.txt) +RIRF55 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L568) | [RIRF55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF55.txt) +RIRF56 | Failure (doesn't recognize caching end compare, reverse loop) [22570](https://github.com/llvm/llvm-project/issues/22570), [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L577) | [RIRF56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF56.txt) +RIRF57 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L595) | [RIRF57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF57.txt) +RIRF58 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 603](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L603) | [RIRF58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF58.txt) +RIRF59 | Failure (doesn't recognize 0..N-1 loop) [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 611](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L611) | [RIRF59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF59.txt) +RIRF60 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L627) | [RIRF60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF60.txt) +RIRF61 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 635](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L635) | [RIRF61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF61.txt) +RIRF62 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L643) | [RIRF62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF62.txt) +RIRF63 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 665](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L665) | [RIRF63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF63.txt) +RIRF64 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 673](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L673) | [RIRF64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF64.txt) +RIRF65 | Failure (doesn't recognize caching end compare, 0..N-1 loop) [22570](https://github.com/llvm/llvm-project/issues/22570), [22568](https://github.com/llvm/llvm-project/issues/22568) | [`ReplaceIterativeForWithRangeFor.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L681) | [RIRF65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF65.txt) +RIRF66 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L697) | [RIRF66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF66.txt) +RIRF67 | Pass | [`ReplaceIterativeForWithRangeFor.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L705) | [RIRF67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF67.txt) +RIRF68 | Failure (doesn't recognize reverse loop) [22569](https://github.com/llvm/llvm-project/issues/22569) | [`ReplaceIterativeForWithRangeFor.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIterativeForWithRangeFor.cpp#L713) | [RIRF68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIRF68.txt) + +## Replace NULL/0 With nullptr +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RZNP1 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L10) | [RZNP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP1.txt) +RZNP2 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L12) | [RZNP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP2.txt) +RZNP3 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L14) | [RZNP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP3.txt) +RZNP4 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L16) | [RZNP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP4.txt) +RZNP5 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L18) | [RZNP5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP5.txt) +RZNP6 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L20) | [RZNP6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP6.txt) +RZNP7 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L25) | [RZNP7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP7.txt) +RZNP8 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L27) | [RZNP8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP8.txt) +RZNP9 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L29) | [RZNP9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP9.txt) +RZNP10 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 31](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L31) | [RZNP10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP10.txt) +RZNP11 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L33) | [RZNP11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP11.txt) +RZNP12 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L35) | [RZNP12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP12.txt) +RZNP13 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L83) | [RZNP13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP13.txt) +RZNP14 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L85) | [RZNP14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP14.txt) +RZNP15 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L87) | [RZNP15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP15.txt) +RZNP16 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L89) | [RZNP16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP16.txt) +RZNP17 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L91) | [RZNP17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP17.txt) +RZNP18 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L93) | [RZNP18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP18.txt) +RZNP19 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L106) | [RZNP19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP19.txt) +RZNP20 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L108) | [RZNP20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP20.txt) +RZNP21 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L110) | [RZNP21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP21.txt) +RZNP22 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L112) | [RZNP22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP22.txt) +RZNP23 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L114) | [RZNP23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP23.txt) +RZNP24 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L116) | [RZNP24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP24.txt) +RZNP25 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L118) | [RZNP25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP25.txt) +RZNP26 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L120) | [RZNP26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP26.txt) +RZNP27 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 142](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L142) | [RZNP27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP27.txt) +RZNP28 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L146) | [RZNP28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP28.txt) + +## Replace String Literal With Raw String Literal + +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RAW1 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L8) | [RAW1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW1.txt) +RAW2 | Failure (not available) | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L11) | [RAW2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW2.txt) +RAW3 | Failure (not available) | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L14) | [RAW3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW3.txt) +RAW4 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L17) | [RAW4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW4.txt) +RAW5 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L20) | [RAW5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW5.txt) +RAW6 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L23) | [RAW6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW6.txt) +RAW7 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L26) | [RAW7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW7.txt) +RAW8 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L29) | [RAW8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW8.txt) +RAW9 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L32) | [RAW9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW9.txt) +RAW10 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L35) | [RAW10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW10.txt) +RAW11 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L38) | [RAW11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW11.txt) +RAW12 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L41) | [RAW12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW12.txt) + +## Replace Type With auto +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RTWA1 | Pass | [`ReplaceTypeWithAuto.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L17) | [RTWA1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA1.txt) +RTWA2 | Pass | [`ReplaceTypeWithAuto.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L25) | [RTWA2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA2.txt) +RTWA3 | Pass | [`ReplaceTypeWithAuto.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L33) | [RTWA3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA3.txt) +RTWA4 | Pass | [`ReplaceTypeWithAuto.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L42) | [RTWA4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA4.txt) +RTWA5 | Pass | [`ReplaceTypeWithAuto.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L57) | [RTWA5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA5.txt) +RTWA6 | Pass | [`ReplaceTypeWithAuto.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L65) | [RTWA6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA6.txt) +RTWA7 | Pass | [`ReplaceTypeWithAuto.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L73) | [RTWA7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA7.txt) +RTWA8 | Pass | [`ReplaceTypeWithAuto.cpp`, line 82](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L82) | [RTWA8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA8.txt) +RTWA9 | Pass | [`ReplaceTypeWithAuto.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L97) | [RTWA9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA9.txt) +RTWA10 | Pass | [`ReplaceTypeWithAuto.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L105) | [RTWA10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA10.txt) +RTWA11 | Pass | [`ReplaceTypeWithAuto.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L113) | [RTWA11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA11.txt) +RTWA12 | Pass | [`ReplaceTypeWithAuto.cpp`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L122) | [RTWA12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA12.txt) +RTWA13 | Pass | [`ReplaceTypeWithAuto.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L137) | [RTWA13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA13.txt) +RTWA14 | Pass | [`ReplaceTypeWithAuto.cpp`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L145) | [RTWA14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA14.txt) +RTWA15 | Pass | [`ReplaceTypeWithAuto.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L153) | [RTWA15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA15.txt) +RTWA16 | Pass | [`ReplaceTypeWithAuto.cpp`, line 162](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L162) | [RTWA16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA16.txt) +RTWA17 | Pass | [`ReplaceTypeWithAuto.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L177) | [RTWA17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA17.txt) +RTWA18 | Pass | [`ReplaceTypeWithAuto.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L185) | [RTWA18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA18.txt) +RTWA19 | Pass | [`ReplaceTypeWithAuto.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L193) | [RTWA19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA19.txt) +RTWA20 | Pass | [`ReplaceTypeWithAuto.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L201) | [RTWA20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA20.txt) +RTWA21 | Pass | [`ReplaceTypeWithAuto.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L215) | [RTWA21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA21.txt) +RTWA22 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L222) | [RTWA22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA22.txt) +RTWA23 | Pass | [`ReplaceTypeWithAuto.cpp`, line 225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L225) | [RTWA23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA23.txt) +RTWA24 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L233) | [RTWA24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA24.txt) +RTWA25 | Pass | [`ReplaceTypeWithAuto.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L242) | [RTWA25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA25.txt) +RTWA26 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L249) | [RTWA26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA26.txt) +RTWA27 | Pass | [`ReplaceTypeWithAuto.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L252) | [RTWA27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA27.txt) +RTWA28 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L259) | [RTWA28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA28.txt) +RTWA29 | Pass | [`ReplaceTypeWithAuto.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L268) | [RTWA29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA29.txt) +RTWA30 | Pass | [`ReplaceTypeWithAuto.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L276) | [RTWA30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA30.txt) +RTWA31 | Pass | [`ReplaceTypeWithAuto.cpp`, line 284](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L284) | [RTWA31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA31.txt) +RTWA32 | Pass | [`ReplaceTypeWithAuto.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L293) | [RTWA32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA32.txt) + +## Simplify Boolean Expression +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +SB1 | Pass | [`SimplifyBooleanExpression.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L30) | [SB1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB1.txt) +SB2 | Pass | [`SimplifyBooleanExpression.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L34) | [SB2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB2.txt) +SB3 | Pass | [`SimplifyBooleanExpression.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L38) | [SB3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB3.txt) +SB4 | Pass | [`SimplifyBooleanExpression.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L42) | [SB4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB4.txt) +SB5 | Failure | [`SimplifyBooleanExpression.cpp`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L46) | [SB5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB5.txt) +SB6 | Pass | [`SimplifyBooleanExpression.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L50) | [SB6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB6.txt) +SB7 | Pass | [`SimplifyBooleanExpression.cpp`, line 54](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L54) | [SB7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB7.txt) +SB8 | Failure | [`SimplifyBooleanExpression.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L58) | [SB8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB8.txt) +SB9 | Failure | [`SimplifyBooleanExpression.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L62) | [SB9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB9.txt) +SB10 | Failure | [`SimplifyBooleanExpression.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L66) | [SB10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB10.txt) +SB11 | Failure | [`SimplifyBooleanExpression.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L71) | [SB11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB11.txt) +SB12 | Failure | [`SimplifyBooleanExpression.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L75) | [SB12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB12.txt) +SB13 | Failure | [`SimplifyBooleanExpression.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SimplifyBooleanExpression.cpp#L79) | [SB13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SB13.txt) diff --git a/results/annotated/ReSharperCppResults.md b/results/annotated/ReSharperCppResults.md new file mode 100644 index 0000000..822960b --- /dev/null +++ b/results/annotated/ReSharperCppResults.md @@ -0,0 +1,2283 @@ +# ReSharper for C++ + +Home: [ReSharper for C++](http://www.jetbrains.com/resharper-cpp/) + +Version: 2023.3.2 + +Notes: +* `clang-tidy` is integrated with ReSharper for C++ and provides quick fixes for issues found by clang-tidy. + Only re Pass implemented directly by ReSharper for C++ are reported here. +* **Add Block Delimiter** is available as the quick fix *Surround with block* with selected code + or with the quick action *Add braces*. + The tests pass with *Surround with block* if only code is selected and not the surrounding comment lines. + The tests pass with *Add braces* with no additional constraints. +* **Add Override** is available as the quick fix *Add 'override' specifier to an overriding function*. +* **Add Parameter** is available through **Change Signature**. + Default file selections were accepted and the argument value of zero was chosen. +* **Create Method Stub** is available as the quick fix *Create member function*, + *Create constructor* or *Create global function* followed by the quick fix + *Generate inline implementation of function*. +* **Create Multi-Variable Declaration** is available by selecting the multiple declarations and + applying the quick fix *Join declarations*. +* **Flatten Conditional** is available as the quick fix *Merge nested 'if' statements*. +* **Inline Macro** is available as the quick fix *Substitute macro call*. +* **Inline Type Alias** is available as the quick fix *Substitute type alias* or *Substitute typedef*. +* **Make Method Static** is available as a quick fix. +* **Move Implementation to Source File** is available as the quick fix *Move definition to source file* or + *Move definition out of class scope*. +* **Remove Block Delimiter** is available as the quick fix *Remove braces*. +* **Remove Unused Parameter** is available as a quick fix. +* **Reorder Parameters** is available through **Change Signature**. +* **Replace auto With Type** is available as the quick fix *Specify type explicitly*. +* **Replace If With Ternary** is available as the quick fix *Convert 'if' to '?:'*. +* **Replace NULL/0 With nullptr** is available as the quick fix *Replace expression with 'nullptr'*. +* **Replace String Literal With Raw String Literal** is available as the quick fix *Convert to raw string literal*. +* **Replace Ternary With If** is available as the quick fix *Convert '?:' to 'if'*. +* **Replace typedef With Type Alias** is available as the quick fix *Replace with a type alias*. +* **Replace Type WIth Auto** is available as the quick fix *Use 'auto'*. +* **Reverse Conditional** is available as the quick fix *Invert 'if' statement*. +* **Split Initialization From Declaration** is available as the quick fix *Split declaration and assignment*. +* **Split Multi-Variable Declaration** is available as the quick fix *Split declaration*. + +
+ +## Add Block Delimiter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +ABD1 | Pass | [`AddBlockDelimiter.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L11) | [ABD1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD1.txt) +ABD2 | Pass | [`AddBlockDelimiter.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L14) | [ABD2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD2.txt) +ABD3 | Pass | [`AddBlockDelimiter.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L17) | [ABD3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD3.txt) +ABD4 | Pass | [`AddBlockDelimiter.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L21) | [ABD4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD4.txt) +ABD5 | Pass | [`AddBlockDelimiter.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L23) | [ABD5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD5.txt) +ABD6 | Pass | [`AddBlockDelimiter.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L25) | [ABD6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD6.txt) +ABD7 | Pass | [`AddBlockDelimiter.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L27) | [ABD7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD7.txt) + +## Add Override +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +AO1 | Pass | [`AddOverride.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L38) | [AO1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO1.txt) +AO2 | Pass | [`AddOverride.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L43) | [AO2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO2.txt) +AO3 | Pass | [`AddOverride.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L48) | [AO3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO3.txt) +AO4 | Pass | [`AddOverride.cpp`, line 54](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L54) | [AO4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO4.txt) +AO5 | Pass | [`AddOverride.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L60) | [AO5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO5.txt) +AO6 | Pass | [`AddOverride.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L66) | [AO6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO6.txt) +AO7 | Pass | [`AddOverride.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L71) | [AO7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO7.txt) +AO8 | Pass | [`AddOverride.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L76) | [AO8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO8.txt) +AO9 | Pass | [`AddOverride.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L81) | [AO9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO9.txt) +AO10 | Pass | [`AddOverride.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L86) | [AO10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO10.txt) +AO11 | Pass | [`AddOverride.cpp`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L131) | [AO11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO11.txt) +AO12 | Pass | [`AddOverride.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L136) | [AO12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO12.txt) +AO13 | Pass | [`AddOverride.cpp`, line 141](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L141) | [AO13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO13.txt) +AO14 | Pass | [`AddOverride.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L146) | [AO14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO14.txt) +AO15 | Pass | [`AddOverride.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L151) | [AO15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO15.txt) +AO16 | Pass | [`AddOverride.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddOverride.cpp#L156) | [AO16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AO16.txt) + +## Add Parameter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +AP1 | Pass | [`AddParameter.h`, line 3](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L3) | [AP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP1.txt) +AP2 | Pass | [`AddParameter.h`, line 5](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L5) | [AP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP2.txt) +AP3 | Pass | [`AddParameter.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L7) | [AP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP3.txt) +AP4 | Pass | [`AddParameter.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L9) | [AP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP4.txt) +AP5 | Pass | [`AddParameter.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L11) | [AP5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP5.txt) +AP6 | Pass | [`AddParameter.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L13) | [AP6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP6.txt) +AP7 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L19) | [AP7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP7.txt) +AP8 | Failure (modifies unrelated code) [RSCPP-35259](https://youtrack.jetbrains.com/issue/RSCPP-35259/Change-Signature-modifies-unrelated-template-usage) | [`AddParameter.h`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L27) | [AP8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP8.txt) +AP9 | Pass | [`AddParameter.h`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L32) | [AP9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP9.txt) +AP10 | Pass | [`AddParameter.h`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L38) | [AP10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP10.txt) +AP11 | Pass | [`AddParameter.h`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L40) | [AP11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP11.txt) +AP12 | Pass | [`AddParameter.h`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L42) | [AP12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP12.txt) +AP13 | Pass | [`AddParameter.h`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L45) | [AP13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP13.txt) +AP14 | Pass | [`AddParameter.h`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L49) | [AP14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP14.txt) +AP15 | Pass | [`AddParameter.h`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L53) | [AP15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP15.txt) +AP16 | Pass | [`AddParameter.h`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L55) | [AP16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP16.txt) +AP17 | Pass | [`AddParameter.h`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L58) | [AP17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP17.txt) +AP18 | Pass | [`AddParameter.h`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L64) | [AP18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP18.txt) +AP19 | Pass | [`AddParameter.h`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L74) | [AP19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP19.txt) +AP20 | Pass | [`AddParameter.h`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L80) | [AP20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP20.txt) +AP21 | Pass | [`AddParameter.h`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L86) | [AP21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP21.txt) +AP22 | Pass | [`AddParameter.h`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L91) | [AP22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP22.txt) +AP23 | Pass | [`AddParameter.h`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L96) | [AP23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP23.txt) +AP24 | Pass | [`AddParameter.h`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L103) | [AP24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP24.txt) +AP25 | Failure (unavailable) [RSCPP-35262](https://youtrack.jetbrains.com/issue/RSCPP-35262/Change-Signature-unavailable-on-call-site-in-template-function) | [`AddParameter.h`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L106) | [AP25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP25.txt) +AP26 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.h`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L112) | [AP26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP26.txt) +AP27 | Failure (modifies unrelated code) [RSCPP-35259](https://youtrack.jetbrains.com/issue/RSCPP-35259/Change-Signature-modifies-unrelated-template-usage) | [`AddParameter.h`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L120) | [AP27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP27.txt) +AP28 | Pass | [`AddParameter.h`, line 126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L126) | [AP28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP28.txt) +AP29 | Pass | [`AddParameter.h`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L131) | [AP29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP29.txt) +AP30 | Pass | [`AddParameter.h`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L133) | [AP30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP30.txt) +AP31 | Pass | [`AddParameter.h`, line 135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L135) | [AP31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP31.txt) +AP32 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.h`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L136) | [AP32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP32.txt) +AP33 | Pass | [`AddParameter.h`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L139) | [AP33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP33.txt) +AP34 | Pass | [`AddParameter.h`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L143) | [AP34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP34.txt) +AP35 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.h`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L144) | [AP35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP35.txt) +AP36 | Pass | [`AddParameter.h`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L148) | [AP36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP36.txt) +AP37 | Pass | [`AddParameter.h`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L150) | [AP37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP37.txt) +AP38 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.h`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L151) | [AP38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP38.txt) +AP39 | Pass | [`AddParameter.h`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L154) | [AP39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP39.txt) +AP40 | Pass | [`AddParameter.h`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L160) | [AP40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP40.txt) +AP41 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.h`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L169) | [AP41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP41.txt) +AP42 | Failure (modifies unrelated code) [RSCPP-35259](https://youtrack.jetbrains.com/issue/RSCPP-35259/Change-Signature-modifies-unrelated-template-usage) | [`AddParameter.h`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L177) | [AP42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP42.txt) +AP43 | Pass | [`AddParameter.h`, line 183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L183) | [AP43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP43.txt) +AP44 | Pass | [`AddParameter.h`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L188) | [AP44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP44.txt) +AP45 | Pass | [`AddParameter.h`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L190) | [AP45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP45.txt) +AP46 | Pass | [`AddParameter.h`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L192) | [AP46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP46.txt) +AP47 | Pass | [`AddParameter.h`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L195) | [AP47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP47.txt) +AP48 | Pass | [`AddParameter.h`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L199) | [AP48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP48.txt) +AP49 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.h`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L200) | [AP49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP49.txt) +AP50 | Pass | [`AddParameter.h`, line 204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L204) | [AP50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP50.txt) +AP51 | Pass | [`AddParameter.h`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L206) | [AP51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP51.txt) +AP52 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.h`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L207) | [AP52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP52.txt) +AP53 | Pass | [`AddParameter.h`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L210) | [AP53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP53.txt) +AP54 | Pass | [`AddParameter.h`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L216) | [AP54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP54.txt) +AP55 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.h`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L226) | [AP55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP55.txt) +AP56 | Failure (modifies unrelated code) [RSCPP-35259](https://youtrack.jetbrains.com/issue/RSCPP-35259/Change-Signature-modifies-unrelated-template-usage) | [`AddParameter.h`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L234) | [AP56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP56.txt) +AP57 | Pass | [`AddParameter.h`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L240) | [AP57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP57.txt) +AP58 | Pass | [`AddParameter.h`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L245) | [AP58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP58.txt) +AP59 | Pass | [`AddParameter.h`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L247) | [AP59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP59.txt) +AP60 | Pass | [`AddParameter.h`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L249) | [AP60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP60.txt) +AP61 | Pass | [`AddParameter.h`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L252) | [AP61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP61.txt) +AP62 | Pass | [`AddParameter.h`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L256) | [AP62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP62.txt) +AP63 | Pass | [`AddParameter.h`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L260) | [AP63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP63.txt) +AP64 | Pass | [`AddParameter.h`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L262) | [AP64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP64.txt) +AP65 | Pass | [`AddParameter.h`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L265) | [AP65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP65.txt) +AP66 | Pass | [`AddParameter.h`, line 271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L271) | [AP66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP66.txt) +AP67 | Pass | [`AddParameter.h`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L276) | [AP67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP67.txt) +AP68 | Pass | [`AddParameter.h`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L281) | [AP68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP68.txt) +AP69 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.h`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L293) | [AP69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP69.txt) +AP70 | Pass | [`AddParameter.h`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L301) | [AP70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP70.txt) +AP71 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.h`, line 309](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L309) | [AP71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP71.txt) +AP72 | Pass | [`AddParameter.h`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L314) | [AP72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP72.txt) +AP73 | Pass | [`AddParameter.h`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L324) | [AP73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP73.txt) +AP74 | Pass | [`AddParameter.h`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L330) | [AP74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP74.txt) +AP75 | Pass | [`AddParameter.h`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L336) | [AP75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP75.txt) +AP76 | Pass | [`AddParameter.h`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L342) | [AP76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP76.txt) +AP77 | Pass | [`AddParameter.h`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L348) | [AP77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP77.txt) +AP78 | Pass | [`AddParameter.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L14) | [AP78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP78.txt) +AP79 | Failure (doesn't update other template arguments) [RSCPP-21202](https://youtrack.jetbrains.com/issue/RSCPP-21202/Adding-a-parameter-with-Change-Signature-doesnt-follow-template-usages-and-change-all-methods-accordingly) | [`AddParameter.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L20) | [AP79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP79.txt) +AP80 | Failure (doesn't update other template arguments) [RSCPP-21202](https://youtrack.jetbrains.com/issue/RSCPP-21202/Adding-a-parameter-with-Change-Signature-doesnt-follow-template-usages-and-change-all-methods-accordingly) | [`AddParameter.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L28) | [AP80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP80.txt) +AP81 | Pass | [`AddParameter.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L36) | [AP81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP81.txt) +AP82 | Pass | [`AddParameter.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L38) | [AP82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP82.txt) +AP83 | Pass | [`AddParameter.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L40) | [AP83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP83.txt) +AP84 | Pass | [`AddParameter.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L43) | [AP84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP84.txt) +AP85 | Pass | [`AddParameter.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L47) | [AP85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP85.txt) +AP86 | Pass | [`AddParameter.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L49) | [AP86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP86.txt) +AP87 | Pass | [`AddParameter.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L51) | [AP87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP87.txt) +AP88 | Failure (modifies unrelated code) [RSCPP-35259](https://youtrack.jetbrains.com/issue/RSCPP-35259/Change-Signature-modifies-unrelated-template-usage) | [`AddParameter.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L55) | [AP88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP88.txt) +AP89 | Pass | [`AddParameter.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L57) | [AP89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP89.txt) +AP90 | Pass | [`AddParameter.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L59) | [AP90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP90.txt) +AP91 | Pass | [`AddParameter.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L61) | [AP91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP91.txt) +AP92 | Pass | [`AddParameter.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L63) | [AP92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP92.txt) +AP93 | Pass | [`AddParameter.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L65) | [AP93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP93.txt) +AP94 | Pass | [`AddParameter.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L67) | [AP94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP94.txt) +AP95 | Pass | [`AddParameter.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L70) | [AP95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP95.txt) +AP96 | Pass | [`AddParameter.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L72) | [AP96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP96.txt) +AP97 | Pass | [`AddParameter.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L74) | [AP97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP97.txt) +AP98 | Pass | [`AddParameter.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L76) | [AP98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP98.txt) +AP99 | Pass | [`AddParameter.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L78) | [AP99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP99.txt) +AP100 | Pass | [`AddParameter.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L80) | [AP100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP100.txt) +AP101 | Pass | [`AddParameter.cpp`, line 82](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L82) | [AP101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP101.txt) +AP102 | Pass | [`AddParameter.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L84) | [AP102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP102.txt) +AP103 | Pass | [`AddParameter.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L86) | [AP103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP103.txt) +AP104 | Pass | [`AddParameter.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L88) | [AP104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP104.txt) +AP105 | Failure (modifies unrelated code) [RSCPP-35259](https://youtrack.jetbrains.com/issue/RSCPP-35259/Change-Signature-modifies-unrelated-template-usage) | [`AddParameter.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L92) | [AP105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP105.txt) +AP106 | Pass | [`AddParameter.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L94) | [AP106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP106.txt) +AP107 | Pass | [`AddParameter.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L96) | [AP107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP107.txt) +AP108 | Pass | [`AddParameter.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L98) | [AP108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP108.txt) +AP109 | Pass | [`AddParameter.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L100) | [AP109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP109.txt) +AP110 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L101) | [AP110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP110.txt) +AP111 | Pass | [`AddParameter.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L103) | [AP111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP111.txt) +AP112 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L104) | [AP112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP112.txt) +AP113 | Pass | [`AddParameter.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L106) | [AP113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP113.txt) +AP114 | Pass | [`AddParameter.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L108) | [AP114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP114.txt) +AP115 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L109) | [AP115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP115.txt) +AP116 | Pass | [`AddParameter.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L111) | [AP116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP116.txt) +AP117 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L112) | [AP117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP117.txt) +AP118 | Pass | [`AddParameter.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L114) | [AP118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP118.txt) +AP119 | Pass | [`AddParameter.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L116) | [AP119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP119.txt) +AP120 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L117) | [AP120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP120.txt) +AP121 | Pass | [`AddParameter.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L119) | [AP121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP121.txt) +AP122 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L120) | [AP122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP122.txt) +AP123 | Pass | [`AddParameter.cpp`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L122) | [AP123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP123.txt) +AP124 | Pass | [`AddParameter.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L124) | [AP124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP124.txt) +AP125 | Pass | [`AddParameter.cpp`, line 126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L126) | [AP125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP125.txt) +AP126 | Pass | [`AddParameter.cpp`, line 128](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L128) | [AP126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP126.txt) +AP127 | Pass | [`AddParameter.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L132) | [AP127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP127.txt) +AP128 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L134) | [AP128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP128.txt) +AP129 | Pass | [`AddParameter.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L136) | [AP129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP129.txt) +AP130 | Pass | [`AddParameter.cpp`, line 141](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L141) | [AP130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP130.txt) +AP131 | Pass | [`AddParameter.cpp`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L145) | [AP131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP131.txt) +AP132 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L150) | [AP132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP132.txt) +AP133 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L154) | [AP133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP133.txt) +AP134 | Pass | [`AddParameter.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L157) | [AP134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP134.txt) +AP135 | Pass | [`AddParameter.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L164) | [AP135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP135.txt) +AP136 | Failure (not available) [RSCPP-12542](https://youtrack.jetbrains.com/issue/RSCPP-12542/Change-signature-doesnt-work-for-constructors) | [`AddParameter.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L167) | [AP136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP136.txt) +AP137 | Pass | [`AddParameter.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L171) | [AP137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP137.txt) +AP138 | Pass | [`AddParameter.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L176) | [AP138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP138.txt) +AP139 | Pass | [`AddParameter.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L181) | [AP139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP139.txt) +AP140 | Pass | [`AddParameter.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L187) | [AP140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP140.txt) +AP141 | Pass | [`AddParameter.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L192) | [AP141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP141.txt) +AP142 | Pass | [`AddParameter.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L197) | [AP142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP142.txt) +AP143 | Pass | [`AddParameter.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L202) | [AP143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP143.txt) +AP144 | Pass | [`AddParameter.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L207) | [AP144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP144.txt) +AP145 | Pass | [`AddParameter.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L212) | [AP145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP145.txt) +AP146 | Pass | [`AddParameter.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L217) | [AP146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP146.txt) +AP147 | Pass | [`AddParameter.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L222) | [AP147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP147.txt) +AP148 | Pass | [`AddParameter.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L227) | [AP148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP148.txt) +AP149 | Pass | [`AddParameter.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L232) | [AP149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP149.txt) +AP150 | Pass | [`AddParameter.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L237) | [AP150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP150.txt) +AP151 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L238) | [AP151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP151.txt) +AP152 | Pass | [`AddParameter.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L243) | [AP152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP152.txt) +AP153 | Pass | [`AddParameter.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L248) | [AP153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP153.txt) +AP154 | Failure (creates invalid code) [RSCPP-35261](https://youtrack.jetbrains.com/issue/RSCPP-35261/Change-Signature-cant-add-parameters-with-default-values) | [`AddParameter.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L249) | [AP154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP154.txt) +AP155 | Failure (creates invalid code) [RSCPP-35031](https://youtrack.jetbrains.com/issue/RSCPP-35031/Invalid-code-in-macro-call-after-change-signature) | [`AddParameter.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L264) | [AP155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP155.txt) +AP156 | Pass | [`AddParameter.cpp`, line 267](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L267) | [AP156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP156.txt) +AP157 | Failure (creates invalid code) [RSCPP-35031](https://youtrack.jetbrains.com/issue/RSCPP-35031/Invalid-code-in-macro-call-after-change-signature) | [`AddParameter.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L276) | [AP157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP157.txt) +AP158 | Pass | [`AddParameter.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L279) | [AP158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP158.txt) +AP159 | Failure (creates invalid code) [RSCPP-35031](https://youtrack.jetbrains.com/issue/RSCPP-35031/Invalid-code-in-macro-call-after-change-signature) | [`AddParameter.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L288) | [AP159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP159.txt) +AP160 | Pass | [`AddParameter.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L294) | [AP160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP160.txt) +AP161 | Failure (creates invalid code) [RSCPP-35031](https://youtrack.jetbrains.com/issue/RSCPP-35031/Invalid-code-in-macro-call-after-change-signature) | [`AddParameter.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L306) | [AP161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP161.txt) +AP162 | Pass | [`AddParameter.cpp`, line 309](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L309) | [AP162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP162.txt) +AP163 | Failure (creates invalid code) [RSCPP-35031](https://youtrack.jetbrains.com/issue/RSCPP-35031/Invalid-code-in-macro-call-after-change-signature) | [`AddParameter.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L313) | [AP163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP163.txt) +AP164 | Pass | [`AddParameter.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L319) | [AP164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP164.txt) +AP165 | Failure (creates invalid code) [RSCPP-35031](https://youtrack.jetbrains.com/issue/RSCPP-35031/Invalid-code-in-macro-call-after-change-signature) | [`AddParameter.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L325) | [AP165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP165.txt) +AP166 | Pass | [`AddParameter.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L331) | [AP166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP166.txt) +AP167 | Pass | [`AddParameter.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L334) | [AP167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP167.txt) +AP168 | Failure (creates invalid code) [RSCPP-35031](https://youtrack.jetbrains.com/issue/RSCPP-35031/Invalid-code-in-macro-call-after-change-signature) | [`AddParameter.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L341) | [AP168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP168.txt) +AP169 | Pass | [`AddParameter.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L343) | [AP169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP169.txt) +AP170 | Failure (creates invalid code) [RSCPP-35031](https://youtrack.jetbrains.com/issue/RSCPP-35031/Invalid-code-in-macro-call-after-change-signature) | [`AddParameter.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L348) | [AP170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP170.txt) +AP171 | Pass | [`AddParameter.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L351) | [AP171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP171.txt) +AP172 | Failure (creates invalid code) [RSCPP-35031](https://youtrack.jetbrains.com/issue/RSCPP-35031/Invalid-code-in-macro-call-after-change-signature) | [`AddParameter.cpp`, line 356](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L356) | [AP172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP172.txt) +AP173 | Pass | [`AddParameter.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L359) | [AP173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP173.txt) +AP174 | Failure (modifies unrelated code) [RSCPP-35259](https://youtrack.jetbrains.com/issue/RSCPP-35259/Change-Signature-modifies-unrelated-template-usage) | [`AddParameter.cpp`, line 367](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L367) | [AP174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP174.txt) +AP175 | Pass | [`AddParameter.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L369) | [AP175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP175.txt) +AP176 | Pass | [`AddParameter.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L371) | [AP176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP176.txt) +AP177 | Pass | [`AddParameter.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L374) | [AP177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP177.txt) +AP178 | Pass | [`AddParameter.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L376) | [AP178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP178.txt) +AP179 | Pass | [`AddParameter.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L378) | [AP179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP179.txt) +AP180 | Pass | [`AddParameter.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L380) | [AP180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP180.txt) +AP181 | Pass | [`AddParameter.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L382) | [AP181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP181.txt) +AP182 | Pass | [`AddParameter.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L384) | [AP182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP182.txt) +AP183 | Pass | [`AddParameter.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L386) | [AP183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP183.txt) +AP184 | Pass | [`AddParameter.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L388) | [AP184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP184.txt) +AP185 | Failure (modifies unrelated code) [RSCPP-35259](https://youtrack.jetbrains.com/issue/RSCPP-35259/Change-Signature-modifies-unrelated-template-usage) | [`AddParameter.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L392) | [AP185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP185.txt) +AP186 | Pass | [`AddParameter.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L394) | [AP186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP186.txt) +AP187 | Pass | [`AddParameter.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L396) | [AP187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP187.txt) +AP188 | Pass | [`AddParameter.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L399) | [AP188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP188.txt) +AP189 | Pass | [`AddParameter.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L401) | [AP189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP189.txt) +AP190 | Pass | [`AddParameter.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L403) | [AP190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP190.txt) +AP191 | Pass | [`AddParameter.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L405) | [AP191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP191.txt) +AP192 | Pass | [`AddParameter.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L407) | [AP192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP192.txt) +AP193 | Pass | [`AddParameter.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L409) | [AP193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP193.txt) +AP194 | Pass | [`AddParameter.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L411) | [AP194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP194.txt) +AP195 | Pass | [`AddParameter.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L413) | [AP195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP195.txt) +AP196 | Pass | [`AddParameter.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L415) | [AP196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP196.txt) +AP197 | Pass | [`AddParameter.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L418) | [AP197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP197.txt) +AP198 | Pass | [`AddParameter.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L425) | [AP198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP198.txt) +AP199 | Pass | [`AddParameter.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L430) | [AP199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP199.txt) +AP200 | Pass | [`AddParameter.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L435) | [AP200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP200.txt) +AP201 | Pass | [`AddParameter.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L440) | [AP201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP201.txt) +AP202 | Pass | [`AddParameter.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L445) | [AP202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP202.txt) + +## Change Signature +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +CS1 | Pass | [`ChangeSignature.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L8) | [CS1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS1.txt) +CS2 | Pass | [`ChangeSignature.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L9) | [CS2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS2.txt) +CS3 | Pass | [`ChangeSignature.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L10) | [CS3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS3.txt) +CS4 | Pass | [`ChangeSignature.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L11) | [CS4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS4.txt) +CS5 | Pass | [`ChangeSignature.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L12) | [CS5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS5.txt) +CS6 | Pass | [`ChangeSignature.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L18) | [CS6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS6.txt) +CS7 | Pass | [`ChangeSignature.h`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L26) | [CS7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS7.txt) +CS8 | Pass | [`ChangeSignature.h`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L27) | [CS8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS8.txt) +CS9 | Pass | [`ChangeSignature.h`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L28) | [CS9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS9.txt) +CS10 | Pass | [`ChangeSignature.h`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L29) | [CS10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS10.txt) +CS11 | Pass | [`ChangeSignature.h`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L30) | [CS11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS11.txt) +CS12 | Pass | [`ChangeSignature.h`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L36) | [CS12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS12.txt) +CS13 | Pass | [`ChangeSignature.h`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L37) | [CS13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS13.txt) +CS14 | Pass | [`ChangeSignature.h`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L38) | [CS14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS14.txt) +CS15 | Pass | [`ChangeSignature.h`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L39) | [CS15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS15.txt) +CS16 | Pass | [`ChangeSignature.h`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L40) | [CS16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS16.txt) +CS17 | Pass | [`ChangeSignature.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L46) | [CS17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS17.txt) +CS18 | Pass | [`ChangeSignature.h`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L47) | [CS18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS18.txt) +CS19 | Pass | [`ChangeSignature.h`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L48) | [CS19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS19.txt) +CS20 | Pass | [`ChangeSignature.h`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L49) | [CS20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS20.txt) +CS21 | Pass | [`ChangeSignature.cpp`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L9) | [CS21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS21.txt) +CS22 | Pass | [`ChangeSignature.cpp`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L10) | [CS22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS22.txt) +CS23 | Pass | [`ChangeSignature.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L11) | [CS23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS23.txt) +CS24 | Pass | [`ChangeSignature.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L12) | [CS24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS24.txt) +CS25 | Pass | [`ChangeSignature.cpp`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L13) | [CS25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS25.txt) +CS26 | Pass | [`ChangeSignature.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L19) | [CS26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS26.txt) +CS27 | Pass | [`ChangeSignature.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L20) | [CS27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS27.txt) +CS28 | Pass | [`ChangeSignature.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L21) | [CS28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS28.txt) +CS29 | Pass | [`ChangeSignature.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L22) | [CS29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS29.txt) +CS30 | Pass | [`ChangeSignature.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L23) | [CS30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS30.txt) +CS31 | Pass | [`ChangeSignature.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L34) | [CS31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS31.txt) +CS32 | Pass | [`ChangeSignature.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L35) | [CS32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS32.txt) +CS33 | Pass | [`ChangeSignature.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L36) | [CS33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS33.txt) +CS34 | Pass | [`ChangeSignature.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L37) | [CS34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS34.txt) +CS35 | Pass | [`ChangeSignature.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L38) | [CS35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS35.txt) +CS36 | Pass | [`ChangeSignature.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L44) | [CS36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS36.txt) +CS37 | Pass | [`ChangeSignature.cpp`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L45) | [CS37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS37.txt) +CS38 | Pass | [`ChangeSignature.cpp`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L46) | [CS38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS38.txt) +CS39 | Pass | [`ChangeSignature.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L47) | [CS39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS39.txt) +CS40 | Pass | [`ChangeSignature.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L48) | [CS40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS40.txt) +CS41 | Pass | [`ChangeSignature.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L66) | [CS41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS41.txt) +CS42 | Pass | [`ChangeSignature.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L67) | [CS42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS42.txt) +CS43 | Pass | [`ChangeSignature.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L68) | [CS43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS43.txt) +CS44 | Pass | [`ChangeSignature.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L69) | [CS44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS44.txt) +CS45 | Pass | [`ChangeSignature.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L70) | [CS45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS45.txt) + +## Create Method Stub +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +CMS1 | Pass | [`CreateMethodStub.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L27) | [CMS1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS1.txt) +CMS2 | Pass | [`CreateMethodStub.cpp`, line 31](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L31) | [CMS2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS2.txt) +CMS3 | Pass | [`CreateMethodStub.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L61) | [CMS3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS3.txt) +CMS4 | Pass | [`CreateMethodStub.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L63) | [CMS4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS4.txt) +CMS5 | Pass | [`CreateMethodStub.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L65) | [CMS5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS5.txt) +CMS6 | Pass | [`CreateMethodStub.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L69) | [CMS6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS6.txt) +CMS7 | Pass | [`CreateMethodStub.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L75) | [CMS7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS7.txt) +CMS8 | Failure (does not build) [RSCPP-35263](https://youtrack.jetbrains.com/issue/RSCPP-35263/Create-member-function-generates-code-with-incorrect-visibility) | [`CreateMethodStub.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L85) | [CMS8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS8.txt) +CMS9 | Pass | [`CreateMethodStub.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L99) | [CMS9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS9.txt) +CMS10 | Pass | [`CreateMethodStub.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L111) | [CMS10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS10.txt) +CMS11 | Pass | [`CreateMethodStub.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L120) | [CMS11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS11.txt) +CMS12 | Pass | [`CreateMethodStub.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L127) | [CMS12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS12.txt) +CMS13 | Pass | [`CreateMethodStub.cpp`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L133) | [CMS13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS13.txt) +CMS14 | Pass | [`CreateMethodStub.cpp`, line 140](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L140) | [CMS14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS14.txt) +CMS15 | Pass | [`CreateMethodStub.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L148) | [CMS15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS15.txt) +CMS16 | Pass | [`CreateMethodStub.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L151) | [CMS16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS16.txt) +CMS17 | Pass | [`CreateMethodStub.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L154) | [CMS17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS17.txt) +CMS18 | Pass | [`CreateMethodStub.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L157) | [CMS18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS18.txt) +CMS19 | Failure (does not build) [RSCPP-21496](https://youtrack.jetbrains.com/issue/RSCPP-21496) | [`CreateMethodStub.cpp`, line 162](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L162) | [CMS19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS19.txt) +CMS20 | Failure (does not build) [RSCPP-21496](https://youtrack.jetbrains.com/issue/RSCPP-21496) | [`CreateMethodStub.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L166) | [CMS20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS20.txt) +CMS21 | Pass | [`CreateMethodStub.cpp`, line 172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L172) | [CMS21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS21.txt) +CMS22 | Pass | [`CreateMethodStub.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMethodStub.cpp#L175) | [CMS22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMS22.txt) + +## Create Multi-Variable Declaration +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +CMVD1 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L41) | [CMVD1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD1.txt) +CMVD2 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L47) | [CMVD2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD2.txt) +CMVD3 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L53) | [CMVD3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD3.txt) +CMVD4 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L59) | [CMVD4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD4.txt) +CMVD5 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L64) | [CMVD5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD5.txt) +CMVD6 | Failure [RSCPP-15791](https://youtrack.jetbrains.com/issue/RSCPP-15791/CMVD-Joining-delcarations-is-confused-by-class-struct-union-keywords) | [`CreateMultiVariableDeclaration.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L70) | [CMVD6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD6.txt) +CMVD7 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L79) | [CMVD7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD7.txt) +CMVD8 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L83) | [CMVD8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD8.txt) +CMVD9 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L87) | [CMVD9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD9.txt) +CMVD10 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L91) | [CMVD10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD10.txt) +CMVD11 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L96) | [CMVD11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD11.txt) +CMVD12 | Pass | [`CreateMultiVariableDeclaration.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateMultiVariableDeclaration.cpp#L106) | [CMVD12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CMVD12.txt) + +## Extract Function +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EXF1 | Pass | [`ExtractFunction.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L11) | [EXF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF1.txt) +EXF2 | Pass | [`ExtractFunction.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L14) | [EXF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF2.txt) +EXF3 | Pass | [`ExtractFunction.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L17) | [EXF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF3.txt) +EXF4 | Pass | [`ExtractFunction.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L20) | [EXF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF4.txt) +EXF5 | Pass | [`ExtractFunction.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L23) | [EXF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF5.txt) +EXF6 | Pass | [`ExtractFunction.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L26) | [EXF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF6.txt) +EXF7 | Pass | [`ExtractFunction.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L30) | [EXF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF7.txt) +EXF8 | Pass | [`ExtractFunction.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L33) | [EXF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF8.txt) +EXF9 | Pass | [`ExtractFunction.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L36) | [EXF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF9.txt) +EXF10 | Pass | [`ExtractFunction.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L39) | [EXF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF10.txt) +EXF11 | Pass | [`ExtractFunction.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L42) | [EXF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF11.txt) +EXF12 | Pass | [`ExtractFunction.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L60) | [EXF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF12.txt) +EXF13 | Pass | [`ExtractFunction.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L76) | [EXF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF13.txt) +EXF14 | Pass | [`ExtractFunction.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L113) | [EXF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF14.txt) +EXF15 | Pass | [`ExtractFunction.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L129) | [EXF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF15.txt) +EXF16 | Pass | [`ExtractFunction.cpp`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L144) | [EXF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF16.txt) +EXF17 | Pass | [`ExtractFunction.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L160) | [EXF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF17.txt) +EXF18 | Pass (extracts method, not function) [CPP-1916](https://youtrack.jetbrains.com/issue/CPP-1916/Make-Extract-Function-available-in-a-class-context) | [`ExtractFunction.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L186) | [EXF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF18.txt) +EXF19 | Pass | [`ExtractFunction2.c`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction2.c#L9) | [EXF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF19.txt) + +## Extract Method +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EM1 | Pass | [`ExtractMethod.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L19) | [EM1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM1.txt) +EM2 | Pass | [`ExtractMethod.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L26) | [EM2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM2.txt) +EM3 | Pass | [`ExtractMethod.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L38) | [EM3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM3.txt) +EM4 | Pass | [`ExtractMethod.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L58) | [EM4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM4.txt) +EM5 | Pass | [`ExtractMethod.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L74) | [EM5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM5.txt) +EM6 | Pass | [`ExtractMethod.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L75) | [EM6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM6.txt) +EM7 | Pass | [`ExtractMethod.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L90) | [EM7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM7.txt) +EM8 | Pass | [`ExtractMethod.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L106) | [EM8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM8.txt) +EM9 | Pass | [`ExtractMethod.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L124) | [EM9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM9.txt) +EM10 | Pass | [`ExtractMethod.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L134) | [EM10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM10.txt) +EM11 | Pass | [`ExtractMethod.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L155) | [EM11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM11.txt) +EM12 | Pass | [`ExtractMethod.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L170) | [EM12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM12.txt) +EM13 | Pass | [`ExtractMethod.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L185) | [EM13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM13.txt) +EM14 | Pass | [`ExtractMethod.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L201) | [EM14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM14.txt) +EM15 | Pass | [`ExtractMethod.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L232) | [EM15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM15.txt) +EM16 | Pass | [`ExtractMethod.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L241) | [EM16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM16.txt) +EM17 | Pass | [`ExtractMethod.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L261) | [EM17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM17.txt) +EM18 | Pass | [`ExtractMethod.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L277) | [EM18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM18.txt) +EM19 | Pass | [`ExtractMethod.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L292) | [EM19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM19.txt) +EM20 | Pass | [`ExtractMethod.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L308) | [EM20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM20.txt) +EM21 | Pass | [`ExtractMethod.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L326) | [EM21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM21.txt) + +## Extract Variable +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EXV1 | Pass | [`ExtractVariable.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L32) | [EXV1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV1.txt) +EXV2 | Pass | [`ExtractVariable.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L39) | [EXV2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV2.txt) +EXV3 | Pass | [`ExtractVariable.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L50) | [EXV3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV3.txt) +EXV4 | Pass | [`ExtractVariable.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L59) | [EXV4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV4.txt) +EXV5 | Pass | [`ExtractVariable.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L68) | [EXV5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV5.txt) +EXV6 | Pass | [`ExtractVariable.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L86) | [EXV6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV6.txt) + +## Flatten Conditional +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +FC1 | Failure | [`FlattenConditional.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/FlattenConditional.cpp#L15) | [FC1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/FC1.txt) + +## Inline Macro +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +IM1 | Failure (not available) [RSCPP-15900](https://youtrack.jetbrains.com/issue/RSCPP-15900) | [`InlineMacro.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L12) | [IM1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM1.txt) +IM2 | Pass | [`InlineMacro.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L48) | [IM2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM2.txt) +IM3 | Pass | [`InlineMacro.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L59) | [IM3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM3.txt) +IM4 | Pass | [`InlineMacro.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L63) | [IM4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM4.txt) +IM5 | Pass | [`InlineMacro.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L67) | [IM5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM5.txt) +IM6 | Pass | [`InlineMacro.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L71) | [IM6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM6.txt) +IM7 | Pass | [`InlineMacro.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineMacro.cpp#L75) | [IM7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IM7.txt) + +## Inline Type Alias +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +ITA1 | Pass | [`InlineTypeAlias.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L15) | [ITA1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA1.txt) +ITA2 | Pass | [`InlineTypeAlias.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L35) | [ITA2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA2.txt) +ITA3 | Pass | [`InlineTypeAlias.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L39) | [ITA3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA3.txt) +ITA4 | Pass | [`InlineTypeAlias.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L41) | [ITA4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA4.txt) +ITA5 | Pass | [`InlineTypeAlias.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L43) | [ITA5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA5.txt) +ITA6 | Pass | [`InlineTypeAlias.cpp`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L45) | [ITA6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA6.txt) +ITA7 | Pass | [`InlineTypeAlias.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L47) | [ITA7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA7.txt) +ITA8 | Pass | [`InlineTypeAlias.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L55) | [ITA8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA8.txt) +ITA9 | Pass | [`InlineTypeAlias.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L59) | [ITA9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA9.txt) +ITA10 | Pass | [`InlineTypeAlias.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L61) | [ITA10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA10.txt) +ITA11 | Pass | [`InlineTypeAlias.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L63) | [ITA11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA11.txt) +ITA12 | Pass | [`InlineTypeAlias.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L65) | [ITA12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA12.txt) +ITA13 | Pass | [`InlineTypeAlias.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineTypeAlias.cpp#L67) | [ITA13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ITA13.txt) + +## Inline Variable +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +IV1 | Pass | [`InlineVariable.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L15) | [IV1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV1.txt) +IV2 | Pass | [`InlineVariable.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L29) | [IV2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV2.txt) +IV3 | Pass (leaves behind syntactical noise) [RSCPP-21205](https://youtrack.jetbrains.com/issue/RSCPP-21205) | [`InlineVariable.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L41) | [IV3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV3.txt) +IV4 | Pass (leaves behind syntactical noise) [RSCPP-21205](https://youtrack.jetbrains.com/issue/RSCPP-21205) | [`InlineVariable.cpp`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L45) | [IV4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV4.txt) +IV5 | Pass | [`InlineVariable.cpp`, line 54](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L54) | [IV5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV5.txt) +IV6 | Pass (leaves behind syntactical noise, doesn't inline all occurrences) [RSCPP-21205](https://youtrack.jetbrains.com/issue/RSCPP-21205), [RSCPP-21204](https://youtrack.jetbrains.com/issue/RSCPP-21204) | [`InlineVariable.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L77) | [IV6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV6.txt) +IV7 | Pass (leaves behind syntactical noise, doesn't inline all occurrences) [RSCPP-21205](https://youtrack.jetbrains.com/issue/RSCPP-21205), [RSCPP-21204](https://youtrack.jetbrains.com/issue/RSCPP-21204) | [`InlineVariable.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L89) | [IV7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV7.txt) +IV8 | Pass (leaves behind syntactical noise) [RSCPP-21205](https://youtrack.jetbrains.com/issue/RSCPP-21205) | [`InlineVariable.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L103) | [IV8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV8.txt) +IV9 | Pass (leaves behind syntactical noise) [RSCPP-21205](https://youtrack.jetbrains.com/issue/RSCPP-21205) | [`InlineVariable.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L107) | [IV9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV9.txt) +IV10 | Pass (leaves behind syntactical noise) [RSCPP-21205](https://youtrack.jetbrains.com/issue/RSCPP-21205) | [`InlineVariable.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L116) | [IV10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV10.txt) +IV11 | Pass (leaves behind syntactical noise) [RSCPP-21205](https://youtrack.jetbrains.com/issue/RSCPP-21205) | [`InlineVariable.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L120) | [IV11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV11.txt) +IV12 | Pass | [`InlineVariable.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/InlineVariable.cpp#L138) | [IV12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/IV12.txt) + +## Make Method Static +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +MMS1 | Failure (does not update usages) [RSCPP-15794](https://youtrack.jetbrains.com/issue/RSCPP-15794) | [`MakeMethodStatic.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MakeMethodStatic.cpp#L11) | [MMS1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MMS1.txt) +MMS2 | Failure (does not update usages) [RSCPP-15794](https://youtrack.jetbrains.com/issue/RSCPP-15794) | [`MakeMethodStatic.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MakeMethodStatic.cpp#L14) | [MMS2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MMS2.txt) +MMS3 | Failure (does not update usages) [RSCPP-15794](https://youtrack.jetbrains.com/issue/RSCPP-15794) | [`MakeMethodStatic.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MakeMethodStatic.cpp#L17) | [MMS3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MMS3.txt) + +## Move Implementation to Source File +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +MISF1 | Pass | [`MoveImplementationToSourceFile.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L6) | [MISF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF1.txt) +MISF2 | Pass | [`MoveImplementationToSourceFile.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L14) | [MISF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF2.txt) +MISF3 | Pass | [`MoveImplementationToSourceFile.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L19) | [MISF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF3.txt) +MISF4 | Pass | [`MoveImplementationToSourceFile.h`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L24) | [MISF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF4.txt) +MISF5 | Pass | [`MoveImplementationToSourceFile.h`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L30) | [MISF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF5.txt) +MISF6 | Pass | [`MoveImplementationToSourceFile.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L46) | [MISF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF6.txt) +MISF7 | Pass | [`MoveImplementationToSourceFile.h`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L56) | [MISF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF7.txt) +MISF8 | Pass | [`MoveImplementationToSourceFile.h`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L61) | [MISF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF8.txt) +MISF9 | Pass | [`MoveImplementationToSourceFile.h`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L64) | [MISF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF9.txt) +MISF10 | Pass | [`MoveImplementationToSourceFile.h`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L69) | [MISF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF10.txt) +MISF11 | Pass | [`MoveImplementationToSourceFile.h`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L72) | [MISF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF11.txt) +MISF12 | Pass | [`MoveImplementationToSourceFile.h`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L79) | [MISF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF12.txt) +MISF13 | Pass | [`MoveImplementationToSourceFile.h`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L84) | [MISF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF13.txt) +MISF14 | Pass | [`MoveImplementationToSourceFile.h`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L89) | [MISF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF14.txt) +MISF15 | Pass | [`MoveImplementationToSourceFile.h`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L98) | [MISF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF15.txt) +MISF16 | Pass | [`MoveImplementationToSourceFile.h`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L104) | [MISF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF16.txt) +MISF17 | Pass | [`MoveImplementationToSourceFile.h`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L117) | [MISF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF17.txt) +MISF18 | Pass | [`MoveImplementationToSourceFile.h`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L122) | [MISF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF18.txt) +MISF19 | Pass | [`MoveImplementationToSourceFile.h`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L125) | [MISF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF19.txt) +MISF20 | Pass | [`MoveImplementationToSourceFile.h`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L130) | [MISF20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF20.txt) +MISF21 | Pass | [`MoveImplementationToSourceFile.h`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L133) | [MISF21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF21.txt) +MISF22 | Pass | [`MoveImplementationToSourceFile.h`, line 140](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L140) | [MISF22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF22.txt) +MISF23 | Pass | [`MoveImplementationToSourceFile.h`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L145) | [MISF23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF23.txt) +MISF24 | Pass | [`MoveImplementationToSourceFile.h`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L150) | [MISF24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF24.txt) +MISF25 | Pass | [`MoveImplementationToSourceFile.h`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L159) | [MISF25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF25.txt) +MISF26 | Pass | [`MoveImplementationToSourceFile.h`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L165) | [MISF26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF26.txt) + +## Remove Block Delimiter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RBD1 | Pass | [`RemoveBlockDelimiter.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L12) | [RBD1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD1.txt) +RBD2 | Pass | [`RemoveBlockDelimiter.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L15) | [RBD2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD2.txt) +RBD3 | Pass | [`RemoveBlockDelimiter.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L18) | [RBD3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD3.txt) +RBD4 | Pass | [`RemoveBlockDelimiter.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L21) | [RBD4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD4.txt) +RBD5 | Pass | [`RemoveBlockDelimiter.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L24) | [RBD5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD5.txt) +RBD6 | Pass | [`RemoveBlockDelimiter.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L27) | [RBD6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD6.txt) +RBD7 | Pass | [`RemoveBlockDelimiter.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L39) | [RBD7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD7.txt) +RBD8 | Pass | [`RemoveBlockDelimiter.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveBlockDelimiter.cpp#L44) | [RBD8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RBD8.txt) + +## Remove Unused Includes +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RUI1 | Pass | [`RemoveUnusedIncludes.cpp`, line 1](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedIncludes.cpp#L1) | [RUI1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUI1.txt) + +## Remove Unused Parameter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RUP1 | Pass | [`RemoveUnusedParameters.cpp`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedParameters.cpp#L7) | [RUP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUP1.txt) +RUP2 | Failure (creates invalid syntax in macro arguments) [RSCPP-21208](https://youtrack.jetbrains.com/issue/RSCPP-21208) | [`RemoveUnusedParameters.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedParameters.cpp#L25) | [RUP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUP2.txt) +RUP3 | Pass | [`RemoveUnusedParameters.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedParameters.cpp#L38) | [RUP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUP3.txt) +RUP4 | Failure (claims errors in the source) [RSCPP-21207](https://youtrack.jetbrains.com/issue/RSCPP-21207) | [`RemoveUnusedParameters.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedParameters.cpp#L60) | [RUP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUP4.txt) + +## Rename +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +R1 | Pass | [`Rename.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L12) | [R1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1.txt) +R2 | Failure (unavailable) [RSCPP-15796](https://youtrack.jetbrains.com/issue/RSCPP-15796) | [`Rename.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L15) | [R2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R2.txt) +R3 | Failure (unavailable) [RSCPP-15796](https://youtrack.jetbrains.com/issue/RSCPP-15796) | [`Rename.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L16) | [R3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R3.txt) +R4 | Pass | [`Rename.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L17) | [R4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R4.txt) +R5 | Pass | [`Rename.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L33) | [R5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R5.txt) +R6 | Pass | [`Rename.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L37) | [R6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R6.txt) +R7 | Pass | [`Rename.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L42) | [R7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R7.txt) +R8 | Pass | [`Rename.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L47) | [R8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R8.txt) +R9 | Pass | [`Rename.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L48) | [R9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R9.txt) +R10 | Pass | [`Rename.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L51) | [R10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R10.txt) +R11 | Pass | [`Rename.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L59) | [R11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R11.txt) +R12 | Pass | [`Rename.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L62) | [R12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R12.txt) +R13 | Pass | [`Rename.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L64) | [R13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R13.txt) +R14 | Pass | [`Rename.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L67) | [R14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R14.txt) +R15 | Pass | [`Rename.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L75) | [R15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R15.txt) +R16 | Pass | [`Rename.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L85) | [R16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R16.txt) +R17 | Pass | [`Rename.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L93) | [R17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R17.txt) +R18 | Pass | [`Rename.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L96) | [R18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R18.txt) +R19 | Pass | [`Rename.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L127) | [R19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R19.txt) +R20 | Pass | [`Rename.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L152) | [R20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R20.txt) +R21 | Pass | [`Rename.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L153) | [R21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R21.txt) +R22 | Pass | [`Rename.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L154) | [R22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R22.txt) +R23 | Pass | [`Rename.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L157) | [R23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R23.txt) +R24 | Pass | [`Rename.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L158) | [R24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R24.txt) +R25 | Pass | [`Rename.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L159) | [R25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R25.txt) +R26 | Pass | [`Rename.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L161) | [R26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R26.txt) +R27 | Pass | [`Rename.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L164) | [R27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R27.txt) +R28 | Pass | [`Rename.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L165) | [R28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R28.txt) +R29 | Pass | [`Rename.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L166) | [R29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R29.txt) +R30 | Pass | [`Rename.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L169) | [R30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R30.txt) +R31 | Pass | [`Rename.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L173) | [R31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R31.txt) +R32 | Pass | [`Rename.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L176) | [R32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R32.txt) +R33 | Pass | [`Rename.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L185) | [R33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R33.txt) +R34 | Pass | [`Rename.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L195) | [R34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R34.txt) +R35 | Pass | [`Rename.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L208) | [R35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R35.txt) +R36 | Pass | [`Rename.cpp`, line 218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L218) | [R36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R36.txt) +R37 | Pass | [`Rename.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L224) | [R37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R37.txt) +R38 | Pass | [`Rename.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L226) | [R38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R38.txt) +R39 | Pass | [`Rename.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L228) | [R39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R39.txt) +R40 | Pass | [`Rename.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L233) | [R40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R40.txt) +R41 | Pass | [`Rename.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L236) | [R41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R41.txt) +R42 | Pass | [`Rename.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L238) | [R42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R42.txt) +R43 | Pass | [`Rename.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L240) | [R43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R43.txt) +R44 | Pass | [`Rename.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L245) | [R44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R44.txt) +R45 | Pass | [`Rename.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L248) | [R45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R45.txt) +R46 | Pass | [`Rename.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L253) | [R46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R46.txt) +R47 | Pass | [`Rename.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L255) | [R47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R47.txt) +R48 | Pass | [`Rename.cpp`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L256) | [R48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R48.txt) +R49 | Pass | [`Rename.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L257) | [R49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R49.txt) +R50 | Pass | [`Rename.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L258) | [R50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R50.txt) +R51 | Pass | [`Rename.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L259) | [R51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R51.txt) +R52 | Pass | [`Rename.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L260) | [R52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R52.txt) +R53 | Pass | [`Rename.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L263) | [R53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R53.txt) +R54 | Pass | [`Rename.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L264) | [R54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R54.txt) +R55 | Pass | [`Rename.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L270) | [R55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R55.txt) +R56 | Pass | [`Rename.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L272) | [R56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R56.txt) +R57 | Pass | [`Rename.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L274) | [R57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R57.txt) +R58 | Pass | [`Rename.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L276) | [R58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R58.txt) +R59 | Pass | [`Rename.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L280) | [R59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R59.txt) +R60 | Pass | [`Rename.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L283) | [R60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R60.txt) +R61 | Pass | [`Rename.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L286) | [R61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R61.txt) +R62 | Pass | [`Rename.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L297) | [R62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R62.txt) +R63 | Pass | [`Rename.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L298) | [R63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R63.txt) +R64 | Pass | [`Rename.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L299) | [R64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R64.txt) +R65 | Pass | [`Rename.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L305) | [R65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R65.txt) +R66 | Pass | [`Rename.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L307) | [R66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R66.txt) +R67 | Pass | [`Rename.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L308) | [R67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R67.txt) +R68 | Pass | [`Rename.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L314) | [R68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R68.txt) +R69 | Pass | [`Rename.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L315) | [R69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R69.txt) +R70 | Pass | [`Rename.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L317) | [R70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R70.txt) +R71 | Pass | [`Rename.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L323) | [R71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R71.txt) +R72 | Pass | [`Rename.cpp`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L324) | [R72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R72.txt) +R73 | Pass | [`Rename.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L326) | [R73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R73.txt) +R74 | Pass | [`Rename.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L327) | [R74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R74.txt) +R75 | Pass | [`Rename.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L328) | [R75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R75.txt) +R76 | Pass | [`Rename.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L334) | [R76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R76.txt) +R77 | Pass | [`Rename.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L335) | [R77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R77.txt) +R78 | Pass | [`Rename.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L336) | [R78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R78.txt) +R79 | Pass | [`Rename.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L338) | [R79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R79.txt) +R80 | Pass | [`Rename.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L339) | [R80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R80.txt) +R81 | Pass | [`Rename.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L345) | [R81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R81.txt) +R82 | Pass | [`Rename.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L346) | [R82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R82.txt) +R83 | Pass | [`Rename.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L347) | [R83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R83.txt) +R84 | Pass | [`Rename.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L349) | [R84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R84.txt) +R85 | Pass | [`Rename.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L351) | [R85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R85.txt) +R86 | Pass | [`Rename.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L365) | [R86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R86.txt) +R87 | Pass | [`Rename.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L369) | [R87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R87.txt) +R88 | Pass | [`Rename.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L370) | [R88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R88.txt) +R89 | Pass | [`Rename.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L374) | [R89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R89.txt) +R90 | Pass | [`Rename.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L378) | [R90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R90.txt) +R91 | Pass | [`Rename.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L381) | [R91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R91.txt) +R92 | Pass | [`Rename.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L382) | [R92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R92.txt) +R93 | Pass | [`Rename.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L384) | [R93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R93.txt) +R94 | Pass | [`Rename.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L385) | [R94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R94.txt) +R95 | Pass | [`Rename.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L386) | [R95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R95.txt) +R96 | Pass | [`Rename.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L389) | [R96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R96.txt) +R97 | Pass | [`Rename.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L390) | [R97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R97.txt) +R98 | Pass | [`Rename.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L391) | [R98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R98.txt) +R99 | Failure (unavailable) [RSCPP-21422](https://youtrack.jetbrains.com/issue/RSCPP-21422) | [`Rename.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L393) | [R99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R99.txt) +R100 | Pass | [`Rename.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L395) | [R100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R100.txt) +R101 | Pass | [`Rename.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L397) | [R101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R101.txt) +R102 | Pass | [`Rename.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L398) | [R102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R102.txt) +R103 | Pass | [`Rename.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L399) | [R103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R103.txt) +R104 | Pass | [`Rename.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L401) | [R104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R104.txt) +R105 | Pass | [`Rename.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L403) | [R105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R105.txt) +R106 | Pass | [`Rename.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L404) | [R106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R106.txt) +R107 | Pass | [`Rename.cpp`, line 410](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L410) | [R107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R107.txt) +R108 | Pass | [`Rename.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L411) | [R108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R108.txt) +R109 | Pass | [`Rename.cpp`, line 412](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L412) | [R109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R109.txt) +R110 | Pass | [`Rename.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L416) | [R110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R110.txt) +R111 | Pass | [`Rename.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L418) | [R111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R111.txt) +R112 | Pass | [`Rename.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L422) | [R112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R112.txt) +R113 | Pass | [`Rename.cpp`, line 426](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L426) | [R113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R113.txt) +R114 | Pass | [`Rename.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L428) | [R114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R114.txt) +R115 | Pass | [`Rename.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L433) | [R115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R115.txt) +R116 | Pass | [`Rename.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L437) | [R116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R116.txt) +R117 | Pass | [`Rename.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L439) | [R117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R117.txt) +R118 | Pass | [`Rename.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L445) | [R118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R118.txt) +R119 | Pass | [`Rename.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L446) | [R119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R119.txt) +R120 | Pass | [`Rename.cpp`, line 448](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L448) | [R120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R120.txt) +R121 | Pass | [`Rename.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L449) | [R121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R121.txt) +R122 | Pass | [`Rename.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L451) | [R122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R122.txt) +R123 | Pass | [`Rename.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L452) | [R123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R123.txt) +R124 | Pass | [`Rename.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L454) | [R124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R124.txt) +R125 | Pass | [`Rename.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L455) | [R125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R125.txt) +R126 | Pass | [`Rename.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L459) | [R126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R126.txt) +R127 | Pass | [`Rename.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L461) | [R127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R127.txt) +R128 | Pass | [`Rename.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L465) | [R128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R128.txt) +R129 | Pass | [`Rename.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L466) | [R129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R129.txt) +R130 | Pass | [`Rename.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L468) | [R130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R130.txt) +R131 | Pass | [`Rename.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L469) | [R131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R131.txt) +R132 | Pass | [`Rename.cpp`, line 470](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L470) | [R132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R132.txt) +R133 | Pass | [`Rename.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L475) | [R133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R133.txt) +R134 | Pass | [`Rename.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L479) | [R134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R134.txt) +R135 | Pass | [`Rename.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L481) | [R135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R135.txt) +R136 | Pass | [`Rename.cpp`, line 487](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L487) | [R136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R136.txt) +R137 | Pass | [`Rename.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L488) | [R137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R137.txt) +R138 | Pass | [`Rename.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L490) | [R138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R138.txt) +R139 | Pass | [`Rename.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L491) | [R139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R139.txt) +R140 | Pass | [`Rename.cpp`, line 493](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L493) | [R140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R140.txt) +R141 | Pass | [`Rename.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L494) | [R141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R141.txt) +R142 | Pass | [`Rename.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L496) | [R142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R142.txt) +R143 | Pass | [`Rename.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L497) | [R143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R143.txt) +R144 | Pass | [`Rename.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L503) | [R144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R144.txt) +R145 | Pass | [`Rename.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L504) | [R145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R145.txt) +R146 | (deprecated) | [`Rename.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L506) | [R146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R146.txt) +R147 | Pass | [`Rename.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L507) | [R147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R147.txt) +R148 | Pass | [`Rename.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L508) | [R148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R148.txt) +R149 | Pass | [`Rename.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L509) | [R149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R149.txt) +R150 | Pass | [`Rename.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L510) | [R150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R150.txt) +R151 | Pass | [`Rename.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L511) | [R151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R151.txt) +R152 | Pass | [`Rename.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L512) | [R152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R152.txt) +R153 | Pass | [`Rename.cpp`, line 513](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L513) | [R153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R153.txt) +R154 | Pass | [`Rename.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L516) | [R154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R154.txt) +R155 | Pass | [`Rename.cpp`, line 518](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L518) | [R155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R155.txt) +R156 | Pass | [`Rename.cpp`, line 519](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L519) | [R156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R156.txt) +R157 | Pass | [`Rename.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L523) | [R157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R157.txt) +R158 | Pass | [`Rename.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L524) | [R158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R158.txt) +R159 | Pass | [`Rename.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L526) | [R159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R159.txt) +R160 | Pass | [`Rename.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L527) | [R160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R160.txt) +R161 | Pass | [`Rename.cpp`, line 528](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L528) | [R161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R161.txt) +R162 | Pass | [`Rename.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L529) | [R162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R162.txt) +R163 | Pass | [`Rename.cpp`, line 530](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L530) | [R163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R163.txt) +R164 | Pass | [`Rename.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L531) | [R164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R164.txt) +R165 | Pass | [`Rename.cpp`, line 532](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L532) | [R165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R165.txt) +R166 | Pass | [`Rename.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L535) | [R166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R166.txt) +R167 | Pass | [`Rename.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L537) | [R167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R167.txt) +R168 | Pass | [`Rename.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L538) | [R168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R168.txt) +R169 | Pass | [`Rename.cpp`, line 542](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L542) | [R169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R169.txt) +R170 | Pass | [`Rename.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L549) | [R170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R170.txt) +R171 | Pass | [`Rename.cpp`, line 551](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L551) | [R171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R171.txt) +R172 | Pass | [`Rename.cpp`, line 553](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L553) | [R172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R172.txt) +R173 | Pass | [`Rename.cpp`, line 556](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L556) | [R173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R173.txt) +R174 | Pass | [`Rename.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L558) | [R174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R174.txt) +R175 | Pass | [`Rename.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L560) | [R175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R175.txt) +R176 | Pass | [`Rename.cpp`, line 564](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L564) | [R176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R176.txt) +R177 | Pass | [`Rename.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L567) | [R177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R177.txt) +R178 | Pass | [`Rename.cpp`, line 571](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L571) | [R178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R178.txt) +R179 | Pass | [`Rename.cpp`, line 572](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L572) | [R179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R179.txt) +R180 | Pass | [`Rename.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L575) | [R180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R180.txt) +R181 | Pass | [`Rename.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L576) | [R181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R181.txt) +R182 | Pass | [`Rename.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L583) | [R182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R182.txt) +R183 | Pass | [`Rename.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L584) | [R183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R183.txt) +R184 | Pass | [`Rename.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L585) | [R184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R184.txt) +R185 | Pass | [`Rename.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L587) | [R185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R185.txt) +R186 | Pass | [`Rename.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L588) | [R186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R186.txt) +R187 | Pass | [`Rename.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L589) | [R187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R187.txt) +R188 | Pass | [`Rename.cpp`, line 591](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L591) | [R188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R188.txt) +R189 | Pass | [`Rename.cpp`, line 593](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L593) | [R189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R189.txt) +R190 | Pass | [`Rename.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L609) | [R190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R190.txt) +R191 | Pass | [`Rename.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L617) | [R191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R191.txt) +R192 | Pass | [`Rename.cpp`, line 618](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L618) | [R192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R192.txt) +R193 | Pass | [`Rename.cpp`, line 622](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L622) | [R193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R193.txt) +R194 | Pass | [`Rename.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L624) | [R194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R194.txt) +R195 | Pass | [`Rename.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L626) | [R195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R195.txt) +R196 | Pass | [`Rename.cpp`, line 635](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L635) | [R196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R196.txt) +R197 | Pass | [`Rename.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L636) | [R197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R197.txt) +R198 | Pass | [`Rename.cpp`, line 637](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L637) | [R198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R198.txt) +R199 | Pass | [`Rename.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L639) | [R199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R199.txt) +R200 | Pass | [`Rename.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L640) | [R200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R200.txt) +R201 | Pass | [`Rename.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L641) | [R201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R201.txt) +R202 | Pass | [`Rename.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L642) | [R202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R202.txt) +R203 | Pass | [`Rename.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L643) | [R203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R203.txt) +R204 | Pass | [`Rename.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L644) | [R204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R204.txt) +R205 | Pass | [`Rename.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L645) | [R205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R205.txt) +R206 | Pass | [`Rename.cpp`, line 652](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L652) | [R206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R206.txt) +R207 | Pass | [`Rename.cpp`, line 653](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L653) | [R207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R207.txt) +R208 | Pass | [`Rename.cpp`, line 655](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L655) | [R208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R208.txt) +R209 | Pass | [`Rename.cpp`, line 662](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L662) | [R209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R209.txt) +R210 | Pass | [`Rename.cpp`, line 674](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L674) | [R210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R210.txt) +R211 | Pass | [`Rename.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L681) | [R211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R211.txt) +R212 | Pass | [`Rename.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L682) | [R212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R212.txt) +R213 | Pass | [`Rename.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L683) | [R213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R213.txt) +R214 | Pass | [`Rename.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L685) | [R214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R214.txt) +R215 | Pass | [`Rename.cpp`, line 686](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L686) | [R215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R215.txt) +R216 | Pass | [`Rename.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L687) | [R216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R216.txt) +R217 | Pass | [`Rename.cpp`, line 690](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L690) | [R217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R217.txt) +R218 | Pass | [`Rename.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L691) | [R218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R218.txt) +R219 | Pass | [`Rename.cpp`, line 693](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L693) | [R219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R219.txt) +R220 | Pass | [`Rename.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L694) | [R220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R220.txt) +R221 | Pass | [`Rename.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L697) | [R221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R221.txt) +R222 | Pass | [`Rename.cpp`, line 699](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L699) | [R222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R222.txt) +R223 | Pass | [`Rename.cpp`, line 700](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L700) | [R223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R223.txt) +R224 | Pass | [`Rename.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L702) | [R224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R224.txt) +R225 | Pass | [`Rename.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L705) | [R225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R225.txt) +R226 | Pass | [`Rename.cpp`, line 707](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L707) | [R226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R226.txt) +R227 | Pass | [`Rename.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L708) | [R227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R227.txt) +R228 | Failure (unavailable) [RSCPP-15798](https://youtrack.jetbrains.com/issue/RSCPP-15798) | [`Rename.cpp`, line 717](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L717) | [R228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R228.txt) +R229 | Failure (unavailable) [RSCPP-15798](https://youtrack.jetbrains.com/issue/RSCPP-15798) | [`Rename.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L722) | [R229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R229.txt) +R230 | Pass | [`Rename.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L728) | [R230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R230.txt) +R231 | Pass | [`Rename.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L730) | [R231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R231.txt) +R232 | Pass | [`Rename.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L732) | [R232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R232.txt) +R233 | Pass | [`Rename.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L734) | [R233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R233.txt) +R234 | Pass | [`Rename.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L736) | [R234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R234.txt) +R235 | Pass | [`Rename.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L738) | [R235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R235.txt) +R236 | Pass | [`Rename.cpp`, line 740](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L740) | [R236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R236.txt) +R237 | (deprecated) | [`Rename.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L742) | [R237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R237.txt) +R238 | (deprecated) | [`Rename.cpp`, line 743](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L743) | [R238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R238.txt) +R239 | Pass | [`Rename.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L744) | [R239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R239.txt) +R240 | Pass | [`Rename.cpp`, line 746](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L746) | [R240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R240.txt) +R241 | Pass | [`Rename.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L748) | [R241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R241.txt) +R242 | Pass | [`Rename.cpp`, line 750](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L750) | [R242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R242.txt) +R243 | Pass | [`Rename.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L752) | [R243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R243.txt) +R244 | Pass | [`RenameCpp11.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L7) | [R244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R244.txt) +R245 | Pass | [`RenameCpp11.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L9) | [R245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R245.txt) +R246 | Pass | [`RenameCpp11.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L12) | [R246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R246.txt) +R247 | Pass | [`RenameCpp11.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L16) | [R247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R247.txt) +R248 | Pass | [`RenameCpp11.h`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L23) | [R248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R248.txt) +R249 | Pass | [`RenameCpp11.h`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L25) | [R249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R249.txt) +R250 | Pass | [`RenameCpp11.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L14) | [R250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R250.txt) +R251 | Pass | [`RenameCpp11.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L16) | [R251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R251.txt) +R252 | Pass | [`RenameCpp11.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L18) | [R252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R252.txt) +R253 | Pass | [`RenameCpp11.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L20) | [R253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R253.txt) +R254 | Pass | [`RenameCpp11.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L23) | [R254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R254.txt) +R255 | Pass | [`RenameCpp11.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L25) | [R255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R255.txt) +R256 | Pass | [`RenameCpp11.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L28) | [R256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R256.txt) +R257 | Pass | [`RenameCpp11.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L33) | [R257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R257.txt) +R258 | Pass | [`RenameCpp11.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L38) | [R258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R258.txt) +R259 | Pass | [`RenameCpp11.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L40) | [R259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R259.txt) +R260 | Pass | [`RenameCpp11.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L43) | [R260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R260.txt) +R261 | Pass | [`RenameCpp11.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L49) | [R261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R261.txt) +R262 | Pass | [`RenameCpp11.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L51) | [R262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R262.txt) +R263 | Pass | [`RenameCpp11.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L55) | [R263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R263.txt) +R264 | Pass | [`RenameCpp11.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L57) | [R264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R264.txt) +R265 | Pass | [`RenameCpp11.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L63) | [R265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R265.txt) +R266 | Pass | [`RenameCpp11.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L69) | [R266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R266.txt) +R267 | Pass | [`RenameCpp11.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L75) | [R267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R267.txt) +R268 | Pass | [`RenameCpp11.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L81) | [R268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R268.txt) +R269 | Pass | [`RenameCpp11.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L87) | [R269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R269.txt) +R270 | Pass | [`RenameCpp11.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L89) | [R270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R270.txt) +R271 | Pass | [`RenameCpp11.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L95) | [R271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R271.txt) +R272 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L98) | [R272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R272.txt) +R273 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L100) | [R273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R273.txt) +R274 | Pass | [`RenameCpp11.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L101) | [R274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R274.txt) +R275 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L103) | [R275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R275.txt) +R276 | Pass | [`RenameCpp11.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L104) | [R276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R276.txt) +R277 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L106) | [R277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R277.txt) +R278 | Pass | [`RenameCpp11.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L108) | [R278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R278.txt) +R279 | Pass | [`RenameCpp11.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L109) | [R279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R279.txt) +R280 | Pass | [`RenameCpp11.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L111) | [R280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R280.txt) +R281 | Pass | [`RenameCpp11.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L112) | [R281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R281.txt) +R282 | Pass | [`RenameCpp11.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L143) | [R282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R282.txt) +R283 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L146) | [R283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R283.txt) +R284 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L148) | [R284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R284.txt) +R285 | Pass | [`RenameCpp11.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L149) | [R285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R285.txt) +R286 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L151) | [R286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R286.txt) +R287 | Pass | [`RenameCpp11.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L152) | [R287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R287.txt) +R288 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L154) | [R288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R288.txt) +R289 | Pass | [`RenameCpp11.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L156) | [R289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R289.txt) +R290 | Pass | [`RenameCpp11.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L157) | [R290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R290.txt) +R291 | Pass | [`RenameCpp11.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L159) | [R291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R291.txt) +R292 | Pass | [`RenameCpp11.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L160) | [R292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R292.txt) +R293 | Pass | [`RenameCpp11.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L167) | [R293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R293.txt) +R294 | Pass | [`RenameCpp11.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L173) | [R294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R294.txt) +R295 | Pass | [`RenameCpp11.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L175) | [R295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R295.txt) +R296 | Pass | [`RenameCpp11.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L185) | [R296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R296.txt) +R297 | Failure (doesn't select all usages) [RSCPP-13845](https://youtrack.jetbrains.com/issue/RSCPP-13845) | [`RenameCpp11.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L186) | [R297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R297.txt) +R298 | Pass | [`RenameCpp11.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L188) | [R298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R298.txt) +R299 | Pass | [`RenameCpp11.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L189) | [R299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R299.txt) +R300 | Failure (doesn't select all usages) [RSCPP-13845](https://youtrack.jetbrains.com/issue/RSCPP-13845) | [`RenameCpp11.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L190) | [R300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R300.txt) +R301 | Failure (doesn't select all usages) [RSCPP-13845](https://youtrack.jetbrains.com/issue/RSCPP-13845) | [`RenameCpp11.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L191) | [R301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R301.txt) +R302 | Pass | [`RenameCpp11.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L194) | [R302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R302.txt) +R303 | Failure (doesn't select all usages) [RSCPP-13845](https://youtrack.jetbrains.com/issue/RSCPP-13845) | [`RenameCpp11.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L196) | [R303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R303.txt) +R304 | Failure (doesn't select all usages) [RSCPP-13845](https://youtrack.jetbrains.com/issue/RSCPP-13845) | [`RenameCpp11.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L197) | [R304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R304.txt) +R305 | Failure (doesn't select all usages) [RSCPP-13845](https://youtrack.jetbrains.com/issue/RSCPP-13845) | [`RenameCpp11.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L200) | [R305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R305.txt) +R306 | Pass | [`RenameCpp11.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L215) | [R306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R306.txt) +R307 | Pass | [`RenameCpp11.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L217) | [R307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R307.txt) +R308 | Pass | [`RenameCpp11.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L221) | [R308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R308.txt) +R309 | Pass | [`RenameCpp11.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L222) | [R309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R309.txt) +R310 | Pass | [`RenameCpp11.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L223) | [R310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R310.txt) +R311 | Pass | [`RenameCpp11.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L227) | [R311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R311.txt) +R312 | Pass | [`RenameCpp11.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L243) | [R312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R312.txt) +R313 | Pass | [`RenameCpp11.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L251) | [R313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R313.txt) +R314 | Pass | [`RenameCpp11.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L253) | [R314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R314.txt) +R315 | Pass | [`RenameCpp11.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L264) | [R315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R315.txt) +R316 | Pass | [`RenameCpp11.cpp`, line 266](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L266) | [R316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R316.txt) +R317 | Pass | [`RenameCpp11.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L270) | [R317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R317.txt) +R318 | Pass | [`RenameCpp11.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L280) | [R318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R318.txt) +R319 | Pass | [`RenameCpp11.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L281) | [R319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R319.txt) +R320 | Pass | [`RenameCpp11.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L294) | [R320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R320.txt) +R321 | Pass | [`RenameCpp11.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L295) | [R321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R321.txt) +R322 | Pass | [`RenameCpp11.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L346) | [R322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R322.txt) +R323 | Pass | [`RenameCpp11.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L347) | [R323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R323.txt) +R324 | Pass | [`RenameCpp11.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L350) | [R324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R324.txt) +R325 | Pass | [`RenameCpp11.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L354) | [R325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R325.txt) +R326 | Pass | [`RenameCpp11.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L355) | [R326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R326.txt) +R327 | Pass | [`RenameCpp11.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L358) | [R327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R327.txt) +R328 | Pass | [`RenameCpp11.cpp`, line 362](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L362) | [R328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R328.txt) +R329 | Pass | [`RenameCpp11.cpp`, line 363](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L363) | [R329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R329.txt) +R330 | Pass | [`RenameCpp11.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L366) | [R330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R330.txt) +R331 | Pass | [`RenameCpp11.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L370) | [R331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R331.txt) +R332 | Pass | [`RenameCpp11.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L371) | [R332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R332.txt) +R333 | Pass | [`RenameCpp11.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L374) | [R333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R333.txt) +R334 | Pass | [`RenameCpp11.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L378) | [R334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R334.txt) +R335 | Pass | [`RenameCpp11.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L379) | [R335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R335.txt) +R336 | Pass | [`RenameCpp11.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L382) | [R336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R336.txt) +R337 | Pass | [`RenameCpp11.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L386) | [R337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R337.txt) +R338 | Pass | [`RenameCpp11.cpp`, line 387](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L387) | [R338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R338.txt) +R339 | Pass | [`RenameCpp11.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L390) | [R339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R339.txt) +R340 | Pass | [`RenameCpp11.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L394) | [R340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R340.txt) +R341 | Pass | [`RenameCpp11.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L395) | [R341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R341.txt) +R342 | Pass | [`RenameCpp11.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L396) | [R342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R342.txt) +R343 | Pass | [`RenameCpp11.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L399) | [R343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R343.txt) +R344 | Pass | [`RenameCpp11.cpp`, line 400](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L400) | [R344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R344.txt) +R345 | Pass | [`RenameCpp11.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L413) | [R345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R345.txt) +R346 | Pass | [`RenameCpp11.cpp`, line 414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L414) | [R346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R346.txt) +R347 | Pass | [`RenameCpp11.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L415) | [R347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R347.txt) +R348 | Pass | [`RenameCpp11.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L418) | [R348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R348.txt) +R349 | Pass | [`RenameCpp11.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L419) | [R349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R349.txt) +R350 | Pass | [`RenameCpp11.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L423) | [R350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R350.txt) +R351 | Pass | [`RenameCpp11.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L424) | [R351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R351.txt) +R352 | Pass | [`RenameCpp11.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L425) | [R352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R352.txt) +R353 | Pass | [`RenameCpp11.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L428) | [R353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R353.txt) +R354 | Pass | [`RenameCpp11.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L429) | [R354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R354.txt) +R355 | Pass | [`RenameCpp11.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L433) | [R355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R355.txt) +R356 | Pass | [`RenameCpp11.cpp`, line 434](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L434) | [R356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R356.txt) +R357 | Pass | [`RenameCpp11.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L435) | [R357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R357.txt) +R358 | Pass | [`RenameCpp11.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L438) | [R358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R358.txt) +R359 | Pass | [`RenameCpp11.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L439) | [R359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R359.txt) +R360 | Pass | [`RenameCpp11.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L445) | [R360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R360.txt) +R361 | Pass | [`RenameCpp11.cpp`, line 447](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L447) | [R361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R361.txt) +R362 | Pass | [`RenameCpp11.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L449) | [R362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R362.txt) +R363 | Pass | [`RenameCpp11.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L451) | [R363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R363.txt) +R364 | Pass | [`RenameCpp11.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L453) | [R364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R364.txt) +R365 | Pass | [`RenameCpp11.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L455) | [R365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R365.txt) +R366 | Pass | [`RenameCpp11.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L457) | [R366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R366.txt) +R367 | Pass | [`RenameCpp11.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L459) | [R367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R367.txt) +R368 | Pass | [`RenameCpp11.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L461) | [R368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R368.txt) +R369 | Pass | [`RenameCpp11.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L463) | [R369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R369.txt) +R370 | Pass | [`RenameCpp11.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L465) | [R370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R370.txt) +R371 | Pass | [`RenameCpp11.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L467) | [R371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R371.txt) +R372 | Pass | [`RenameCpp11.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L469) | [R372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R372.txt) +R373 | Pass | [`RenameCpp11.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L473) | [R373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R373.txt) +R374 | Pass | [`RenameCpp11.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L475) | [R374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R374.txt) +R375 | Pass | [`RenameCpp11.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L476) | [R375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R375.txt) +R376 | Pass | [`RenameCpp11.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L481) | [R376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R376.txt) +R377 | Pass | [`RenameCpp11.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L483) | [R377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R377.txt) +R378 | Pass | [`RenameCpp11.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L489) | [R378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R378.txt) +R379 | Pass | [`RenameCpp11.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L492) | [R379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R379.txt) +R380 | Pass | [`RenameCpp11.cpp`, line 499](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L499) | [R380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R380.txt) +R381 | Pass | [`RenameCpp11.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L504) | [R381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R381.txt) +R382 | Pass | [`RenameCpp11.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L505) | [R382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R382.txt) +R383 | Pass | [`RenameCpp11.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L506) | [R383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R383.txt) +R384 | Pass | [`RenameCpp11.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L507) | [R384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R384.txt) +R385 | Pass | [`RenameCpp11.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L509) | [R385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R385.txt) +R386 | Pass | [`RenameCpp11.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L516) | [R386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R386.txt) +R387 | Pass | [`RenameCpp11.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L520) | [R387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R387.txt) +R388 | Pass | [`RenameCpp11.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L522) | [R388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R388.txt) +R389 | Pass | [`RenameCpp11.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L523) | [R389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R389.txt) +R390 | Pass | [`RenameCpp11.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L527) | [R390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R390.txt) +R391 | Pass | [`RenameCpp11.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L529) | [R391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R391.txt) +R392 | Pass | [`RenameCpp11.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L533) | [R392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R392.txt) +R393 | Pass | [`RenameCpp11.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L537) | [R393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R393.txt) +R394 | Pass | [`RenameCpp11.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L538) | [R394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R394.txt) +R395 | Pass | [`RenameCpp11.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L539) | [R395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R395.txt) +R396 | Pass | [`RenameCpp11.cpp`, line 543](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L543) | [R396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R396.txt) +R397 | Pass | [`RenameCpp11.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L555) | [R397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R397.txt) +R398 | Pass | [`RenameCpp11.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L557) | [R398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R398.txt) +R399 | Pass | [`RenameCpp11.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L558) | [R399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R399.txt) +R400 | Pass | [`RenameCpp11.cpp`, line 561](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L561) | [R400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R400.txt) +R401 | Pass | [`RenameCpp11.cpp`, line 562](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L562) | [R401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R401.txt) +R402 | Pass | [`RenameCpp11.cpp`, line 573](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L573) | [R402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R402.txt) +R403 | Pass | [`RenameCpp11.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L577) | [R403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R403.txt) +R404 | Pass | [`RenameCpp11.cpp`, line 581](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L581) | [R404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R404.txt) +R405 | Pass | [`RenameCpp11.cpp`, line 582](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L582) | [R405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R405.txt) +R406 | Pass | [`RenameCpp11.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L587) | [R406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R406.txt) +R407 | Pass | [`RenameCpp11.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L600) | [R407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R407.txt) +R408 | Pass | [`RenameCpp11.cpp`, line 602](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L602) | [R408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R408.txt) +R409 | Pass | [`RenameCpp11.cpp`, line 605](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L605) | [R409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R409.txt) +R410 | Pass | [`RenameCpp11.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L606) | [R410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R410.txt) +R411 | Pass | [`RenameCpp11.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L607) | [R411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R411.txt) +R412 | Pass | [`RenameCpp11.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L608) | [R412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R412.txt) +R413 | Pass | [`RenameCpp11.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L636) | [R413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R413.txt) +R414 | Pass | [`RenameCpp11.cpp`, line 638](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L638) | [R414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R414.txt) +R415 | Pass | [`RenameCpp11.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L639) | [R415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R415.txt) +R416 | Pass | [`RenameCpp11.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L640) | [R416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R416.txt) +R417 | Pass | [`RenameCpp11.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L643) | [R417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R417.txt) +R418 | Pass | [`RenameCpp11.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L644) | [R418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R418.txt) +R419 | Pass | [`RenameCpp11.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L647) | [R419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R419.txt) +R420 | Pass | [`RenameCpp11.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L648) | [R420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R420.txt) +R421 | Pass | [`RenameCpp11.cpp`, line 650](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L650) | [R421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R421.txt) +R422 | Pass | [`RenameCpp11.cpp`, line 664](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L664) | [R422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R422.txt) +R423 | Pass | [`RenameCpp11.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L666) | [R423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R423.txt) +R424 | Pass | [`RenameCpp11.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L676) | [R424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R424.txt) +R425 | Pass | [`RenameCpp11.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L678) | [R425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R425.txt) +R426 | Pass | [`RenameCpp11.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L681) | [R426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R426.txt) +R427 | Pass | [`RenameCpp11.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L682) | [R427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R427.txt) +R428 | Pass | [`RenameCpp11.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L683) | [R428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R428.txt) +R429 | Pass | [`RenameCpp11.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L687) | [R429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R429.txt) +R430 | Pass | [`RenameCpp11.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L701) | [R430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R430.txt) +R431 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 704](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L704) | [R431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R431.txt) +R432 | Pass | [`RenameCpp11.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L705) | [R432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R432.txt) +R433 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L709) | [R433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R433.txt) +R434 | Pass | [`RenameCpp11.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L710) | [R434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R434.txt) +R435 | Pass (moves cursor location) [RSCPP-21198](https://youtrack.jetbrains.com/issue/RSCPP-21198) | [`RenameCpp11.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L714) | [R435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R435.txt) +R436 | Pass | [`RenameCpp11.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L722) | [R436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R436.txt) +R437 | Pass | [`RenameCpp11.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L728) | [R437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R437.txt) +R438 | Pass | [`RenameCpp11.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L730) | [R438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R438.txt) +R439 | Pass | [`RenameCpp11.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L731) | [R439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R439.txt) +R440 | Pass | [`RenameCpp11.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L732) | [R440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R440.txt) +R441 | Pass | [`RenameCpp11.cpp`, line 735](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L735) | [R441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R441.txt) +R442 | Pass | [`RenameCpp11.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L736) | [R442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R442.txt) +R443 | Pass | [`RenameCpp11.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L749) | [R443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R443.txt) +R444 | Pass | [`RenameCpp11.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L751) | [R444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R444.txt) +R445 | Pass | [`RenameCpp11.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L752) | [R445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R445.txt) +R446 | Pass | [`RenameCpp11.cpp`, line 753](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L753) | [R446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R446.txt) +R447 | Pass | [`RenameCpp11.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L756) | [R447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R447.txt) +R448 | Pass | [`RenameCpp11.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L758) | [R448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R448.txt) +R449 | Pass | [`RenameCpp11.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L759) | [R449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R449.txt) +R450 | Pass | [`RenameCpp11.cpp`, line 760](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L760) | [R450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R450.txt) +R451 | Pass | [`RenameCpp11.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L761) | [R451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R451.txt) +R452 | Pass | [`RenameCpp11.cpp`, line 762](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L762) | [R452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R452.txt) +R453 | Pass | [`RenameCpp11.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L765) | [R453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R453.txt) +R454 | Pass | [`RenameCpp11.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L766) | [R454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R454.txt) +R455 | Pass | [`RenameCpp11.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L767) | [R455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R455.txt) +R456 | Pass | [`RenameCpp11.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L768) | [R456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R456.txt) +R457 | Pass | [`RenameCpp11.cpp`, line 771](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L771) | [R457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R457.txt) +R458 | Pass | [`RenameCpp11.cpp`, line 772](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L772) | [R458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R458.txt) +R459 | Pass | [`RenameCpp11.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L776) | [R459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R459.txt) +R460 | Pass | [`RenameCpp11.cpp`, line 780](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L780) | [R460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R460.txt) +R461 | Pass | [`RenameCpp11.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L781) | [R461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R461.txt) +R462 | Pass | [`RenameCpp11.cpp`, line 783](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L783) | [R462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R462.txt) +R463 | Pass | [`RenameCpp11.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L787) | [R463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R463.txt) +R464 | Pass | [`RenameCpp11.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L789) | [R464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R464.txt) +R465 | Pass | [`RenameCpp11.cpp`, line 790](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L790) | [R465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R465.txt) +R466 | Pass | [`RenameCpp11.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L791) | [R466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R466.txt) +R467 | Pass | [`RenameCpp11.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L792) | [R467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R467.txt) +R468 | Pass | [`RenameCpp11.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L793) | [R468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R468.txt) +R469 | Pass | [`RenameCpp11.cpp`, line 801](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L801) | [R469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R469.txt) +R470 | Pass | [`RenameCpp11.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L805) | [R470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R470.txt) +R471 | Pass | [`RenameCpp11.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L809) | [R471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R471.txt) +R472 | Pass | [`RenameCpp11.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L810) | [R472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R472.txt) +R473 | Pass | [`RenameCpp11.cpp`, line 812](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L812) | [R473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R473.txt) +R474 | Pass | [`RenameCpp11.cpp`, line 813](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L813) | [R474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R474.txt) +R475 | Pass | [`RenameCpp11.cpp`, line 814](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L814) | [R475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R475.txt) +R476 | Pass | [`RenameCpp11.cpp`, line 815](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L815) | [R476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R476.txt) +R477 | Pass | [`RenameCpp11.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L821) | [R477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R477.txt) +R478 | Pass | [`RenameCpp11.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L824) | [R478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R478.txt) +R479 | Pass | [`RenameCpp11.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L825) | [R479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R479.txt) +R480 | Pass | [`RenameCpp11.cpp`, line 828](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L828) | [R480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R480.txt) +R481 | Pass | [`RenameCpp11.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L833) | [R481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R481.txt) +R482 | Pass | [`RenameCpp11.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L834) | [R482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R482.txt) +R483 | Pass | [`RenameCpp11.cpp`, line 837](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L837) | [R483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R483.txt) +R484 | Pass | [`RenameCpp11.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L845) | [R484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R484.txt) +R485 | Pass | [`RenameCpp11.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L846) | [R485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R485.txt) +R486 | Pass | [`RenameCpp11.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L849) | [R486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R486.txt) +R487 | Pass | [`RenameCpp11.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L854) | [R487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R487.txt) +R488 | Pass | [`RenameCpp11.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L855) | [R488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R488.txt) +R489 | Pass | [`RenameCpp11.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L858) | [R489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R489.txt) +R490 | Pass | [`RenameCpp11.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L866) | [R490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R490.txt) +R491 | Pass | [`RenameCpp11.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L867) | [R491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R491.txt) +R492 | Pass | [`RenameCpp11.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L870) | [R492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R492.txt) +R493 | Pass | [`RenameCpp11.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L878) | [R493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R493.txt) +R494 | Pass | [`RenameCpp11.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L880) | [R494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R494.txt) +R495 | Pass | [`RenameCpp11.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L882) | [R495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R495.txt) +R496 | Pass | [`RenameCpp11.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L883) | [R496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R496.txt) +R497 | Pass | [`RenameCpp11.cpp`, line 885](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L885) | [R497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R497.txt) +R498 | Pass | [`RenameCpp11.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L887) | [R498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R498.txt) +R499 | Pass | [`RenameCpp11.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L889) | [R499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R499.txt) +R500 | Pass | [`RenameCpp11.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L890) | [R500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R500.txt) +R501 | Pass | [`RenameCpp11.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L892) | [R501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R501.txt) +R502 | Pass | [`RenameCpp11.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L898) | [R502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R502.txt) +R503 | Pass | [`RenameCpp11.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L900) | [R503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R503.txt) +R504 | Pass | [`RenameCpp11.cpp`, line 901](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L901) | [R504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R504.txt) +R505 | Pass | [`RenameCpp11.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L902) | [R505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R505.txt) +R506 | Pass | [`RenameCpp11.cpp`, line 904](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L904) | [R506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R506.txt) +R507 | Pass | [`RenameCpp11.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L906) | [R507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R507.txt) +R508 | Pass | [`RenameCpp11.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L907) | [R508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R508.txt) +R509 | Pass | [`RenameCpp11.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L909) | [R509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R509.txt) +R510 | Pass | [`RenameCpp11.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L910) | [R510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R510.txt) +R511 | Pass | [`RenameCpp11.cpp`, line 911](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L911) | [R511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R511.txt) +R512 | Pass | [`RenameCpp11.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L912) | [R512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R512.txt) +R513 | Pass | [`RenameCpp11.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L913) | [R513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R513.txt) +R514 | Pass | [`RenameCpp11.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L915) | [R514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R514.txt) +R515 | Pass | [`RenameCpp11.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L921) | [R515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R515.txt) +R516 | Pass | [`RenameCpp11.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L923) | [R516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R516.txt) +R517 | Pass | [`RenameCpp11.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L925) | [R517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R517.txt) +R518 | Pass | [`RenameCpp11.cpp`, line 928](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L928) | [R518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R518.txt) +R519 | Pass | [`RenameCpp11.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L929) | [R519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R519.txt) +R520 | Pass | [`RenameCpp11.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L930) | [R520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R520.txt) +R521 | Pass | [`RenameCpp11.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L940) | [R521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R521.txt) +R522 | Pass | [`RenameCpp11.cpp`, line 942](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L942) | [R522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R522.txt) +R523 | Pass | [`RenameCpp11.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L945) | [R523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R523.txt) +R524 | Pass | [`RenameCpp11.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L952) | [R524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R524.txt) +R525 | Pass | [`RenameCpp11.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L954) | [R525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R525.txt) +R526 | Pass | [`RenameCpp11.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L957) | [R526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R526.txt) +R527 | Pass | [`RenameCpp11.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L958) | [R527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R527.txt) +R528 | Pass | [`RenameCpp11.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L960) | [R528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R528.txt) +R529 | Pass | [`RenameCpp11.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L965) | [R529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R529.txt) +R530 | Pass | [`RenameCpp11.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L970) | [R530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R530.txt) +R531 | Pass | [`RenameCpp11.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L972) | [R531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R531.txt) +R532 | Pass | [`RenameCpp11.cpp`, line 973](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L973) | [R532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R532.txt) +R533 | Pass | [`RenameCpp11.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L975) | [R533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R533.txt) +R534 | Pass | [`RenameCpp11.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L977) | [R534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R534.txt) +R535 | Pass | [`RenameCpp11.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L981) | [R535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R535.txt) +R536 | Pass | [`RenameCpp11.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L982) | [R536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R536.txt) +R537 | Pass | [`RenameCpp11.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L988) | [R537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R537.txt) +R538 | Pass | [`RenameCpp11.cpp`, line 993](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L993) | [R538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R538.txt) +R539 | Pass | [`RenameCpp11.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L997) | [R539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R539.txt) +R540 | Pass | [`RenameCpp11.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1005) | [R540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R540.txt) +R541 | Pass | [`RenameCpp11.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1011) | [R541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R541.txt) +R542 | Pass | [`RenameCpp11.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1018) | [R542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R542.txt) +R543 | Pass | [`RenameCpp11.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1021) | [R543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R543.txt) +R544 | Pass | [`RenameCpp11.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1028) | [R544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R544.txt) +R545 | Pass | [`RenameCpp11.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1030) | [R545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R545.txt) +R546 | Pass | [`RenameCpp11.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1032) | [R546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R546.txt) +R547 | Pass | [`RenameCpp11.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1042) | [R547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R547.txt) +R548 | Pass | [`RenameCpp11.cpp`, line 1044](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1044) | [R548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R548.txt) +R549 | Pass | [`RenameCpp11.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1046) | [R549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R549.txt) +R550 | Pass | [`RenameCpp11.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1052) | [R550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R550.txt) +R551 | Pass | [`RenameCpp11.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1054) | [R551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R551.txt) +R552 | Pass | [`RenameCpp11.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1057) | [R552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R552.txt) +R553 | Pass | [`RenameCpp11.cpp`, line 1059](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1059) | [R553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R553.txt) +R554 | Pass | [`RenameCpp11.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1062) | [R554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R554.txt) +R555 | Pass | [`RenameCpp11.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1064) | [R555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R555.txt) +R556 | Pass | [`RenameCpp11.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1067) | [R556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R556.txt) +R557 | Pass | [`RenameCpp11.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1069) | [R557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R557.txt) +R558 | Pass | [`RenameCpp11.cpp`, line 1073](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1073) | [R558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R558.txt) +R559 | Pass | [`RenameCpp11.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1074) | [R559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R559.txt) +R560 | Pass | [`RenameCpp11.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1075) | [R560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R560.txt) +R561 | Pass | [`RenameCpp11.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1076) | [R561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R561.txt) +R562 | Pass | [`RenameCpp11.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1082) | [R562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R562.txt) +R563 | Pass | [`RenameCpp11.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1087) | [R563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R563.txt) +R564 | Pass | [`RenameCpp11.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1090) | [R564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R564.txt) +R565 | Pass | [`RenameCpp11.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1096) | [R565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R565.txt) +R566 | Pass | [`RenameCpp11.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1101) | [R566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R566.txt) +R567 | Pass | [`RenameCpp11.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1104) | [R567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R567.txt) +R568 | Pass | [`RenameCpp11.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1107) | [R568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R568.txt) +R569 | Pass | [`RenameCpp11.cpp`, line 1111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1111) | [R569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R569.txt) +R570 | Pass | [`RenameCpp11.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1112) | [R570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R570.txt) +R571 | Pass | [`RenameCpp11.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1117) | [R571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R571.txt) +R572 | Pass | [`RenameCpp11.cpp`, line 1118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1118) | [R572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R572.txt) +R573 | Pass | [`RenameCpp11.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1122) | [R573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R573.txt) +R574 | Pass | [`RenameCpp11.cpp`, line 1127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1127) | [R574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R574.txt) +R575 | Pass | [`RenameCpp11.cpp`, line 1131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1131) | [R575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R575.txt) +R576 | Pass | [`RenameCpp11.cpp`, line 1134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1134) | [R576.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R576.txt) +R577 | Pass | [`RenameCpp11.cpp`, line 1143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1143) | [R577.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R577.txt) +R578 | Pass | [`RenameCpp11.cpp`, line 1149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1149) | [R578.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R578.txt) +R579 | Pass | [`RenameCpp11.cpp`, line 1158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1158) | [R579.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R579.txt) +R580 | Pass | [`RenameCpp11.cpp`, line 1165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1165) | [R580.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R580.txt) +R581 | Pass | [`RenameCpp11.cpp`, line 1172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1172) | [R581.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R581.txt) +R582 | Pass | [`RenameCpp11.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1173) | [R582.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R582.txt) +R583 | Pass | [`RenameCpp11.cpp`, line 1178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1178) | [R583.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R583.txt) +R584 | Pass | [`RenameCpp11.cpp`, line 1183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1183) | [R584.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R584.txt) +R585 | Pass | [`RenameCpp11.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1189) | [R585.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R585.txt) +R586 | Pass | [`RenameCpp11.cpp`, line 1194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1194) | [R586.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R586.txt) +R587 | Pass | [`RenameCpp11.cpp`, line 1195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1195) | [R587.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R587.txt) +R588 | Pass | [`RenameCpp11.cpp`, line 1196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1196) | [R588.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R588.txt) +R589 | Pass | [`RenameCpp11.cpp`, line 1206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1206) | [R589.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R589.txt) +R590 | Pass | [`RenameCpp11.cpp`, line 1213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1213) | [R590.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R590.txt) +R591 | Pass | [`RenameCpp11.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1218) | [R591.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R591.txt) +R592 | Pass | [`RenameCpp11.cpp`, line 1222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1222) | [R592.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R592.txt) +R593 | Pass | [`RenameCpp11.cpp`, line 1225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1225) | [R593.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R593.txt) +R594 | Pass | [`RenameCpp11.cpp`, line 1227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1227) | [R594.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R594.txt) +R595 | Pass | [`RenameCpp11.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1229) | [R595.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R595.txt) +R596 | Pass | [`RenameCpp11.cpp`, line 1231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1231) | [R596.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R596.txt) +R597 | Pass | [`RenameCpp11.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1236) | [R597.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R597.txt) +R598 | Pass | [`RenameCpp11.cpp`, line 1237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1237) | [R598.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R598.txt) +R599 | Pass | [`RenameCpp11.cpp`, line 1240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1240) | [R599.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R599.txt) +R600 | Pass | [`RenameCpp11.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1246) | [R600.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R600.txt) +R601 | Pass | [`RenameCpp11.cpp`, line 1247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1247) | [R601.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R601.txt) +R602 | Pass | [`RenameCpp11.cpp`, line 1250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1250) | [R602.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R602.txt) +R603 | Pass | [`RenameCpp11.cpp`, line 1251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1251) | [R603.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R603.txt) +R604 | Pass | [`RenameCpp11.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1290) | [R604.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R604.txt) +R605 | Pass | [`RenameCpp11.cpp`, line 1292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1292) | [R605.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R605.txt) +R606 | Pass | [`RenameCpp14.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L6) | [R606.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R606.txt) +R607 | Pass | [`RenameCpp14.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L8) | [R607.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R607.txt) +R608 | Pass | [`RenameCpp14.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L9) | [R608.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R608.txt) +R609 | Pass | [`RenameCpp14.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L10) | [R609.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R609.txt) +R610 | Pass | [`RenameCpp14.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L11) | [R610.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R610.txt) +R611 | Pass | [`RenameCpp14.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L14) | [R611.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R611.txt) +R612 | Pass | [`RenameCpp14.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L16) | [R612.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R612.txt) +R613 | Pass | [`RenameCpp14.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L17) | [R613.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R613.txt) +R614 | Failure (doesn't update macro arguments) [RSCPP-35264](https://youtrack.jetbrains.com/issue/RSCPP-35264/Rename-use-of-variable-template-doesnt-update-macro-arguments) | [`RenameCpp14.h`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L20) | [R614.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R614.txt) +R615 | Pass | [`RenameCpp14.h`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L21) | [R615.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R615.txt) +R616 | Pass | [`RenameCpp14.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L20) | [R616.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R616.txt) +R617 | Pass | [`RenameCpp14.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L22) | [R617.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R617.txt) +R618 | Pass | [`RenameCpp14.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L23) | [R618.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R618.txt) +R619 | Pass | [`RenameCpp14.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L24) | [R619.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R619.txt) +R620 | Pass | [`RenameCpp14.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L27) | [R620.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R620.txt) +R621 | Pass | [`RenameCpp14.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L29) | [R621.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R621.txt) +R622 | Pass | [`RenameCpp14.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L30) | [R622.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R622.txt) +R623 | Failure (doesn't update macro arguments) [RSCPP-35264](https://youtrack.jetbrains.com/issue/RSCPP-35264/Rename-use-of-variable-template-doesnt-update-macro-arguments) | [`RenameCpp14.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L33) | [R623.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R623.txt) +R624 | Pass | [`RenameCpp14.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L34) | [R624.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R624.txt) +R625 | Pass | [`RenameCpp14.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L48) | [R625.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R625.txt) +R626 | Pass | [`RenameCpp14.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L52) | [R626.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R626.txt) +R627 | Pass | [`RenameCpp14.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L60) | [R627.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R627.txt) +R628 | Pass | [`RenameCpp14.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L64) | [R628.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R628.txt) +R629 | Pass | [`RenameCpp14.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L70) | [R629.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R629.txt) +R630 | Pass | [`RenameCpp14.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L71) | [R630.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R630.txt) +R631 | Pass | [`RenameCpp14.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L72) | [R631.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R631.txt) +R632 | Pass | [`RenameCpp14.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L73) | [R632.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R632.txt) +R633 | Pass | [`RenameCpp14.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L81) | [R633.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R633.txt) +R634 | Pass | [`RenameCpp14.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L83) | [R634.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R634.txt) +R635 | Pass | [`RenameCpp14.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L84) | [R635.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R635.txt) +R636 | Pass | [`RenameCpp14.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L85) | [R636.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R636.txt) +R637 | Pass | [`RenameCpp14.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L86) | [R637.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R637.txt) +R638 | Pass | [`RenameCpp14.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L87) | [R638.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R638.txt) +R639 | Pass | [`RenameCpp14.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L88) | [R639.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R639.txt) +R640 | Pass | [`RenameCpp14.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L90) | [R640.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R640.txt) +R641 | Pass | [`RenameCpp14.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L92) | [R641.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R641.txt) +R642 | Pass | [`RenameCpp14.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L93) | [R642.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R642.txt) +R643 | Pass | [`RenameCpp14.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L94) | [R643.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R643.txt) +R644 | Pass | [`RenameCpp14.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L95) | [R644.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R644.txt) +R645 | Pass | [`RenameCpp14.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L96) | [R645.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R645.txt) +R646 | Pass | [`RenameCpp14.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L97) | [R646.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R646.txt) +R647 | Pass | [`RenameCpp14.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L99) | [R647.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R647.txt) +R648 | Pass | [`RenameCpp17.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L6) | [R648.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R648.txt) +R649 | Pass | [`RenameCpp17.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L7) | [R649.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R649.txt) +R650 | Pass | [`RenameCpp17.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L8) | [R650.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R650.txt) +R651 | Pass | [`RenameCpp17.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L11) | [R651.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R651.txt) +R652 | Pass | [`RenameCpp17.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L18) | [R652.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R652.txt) +R653 | Pass | [`RenameCpp17.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L26) | [R653.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R653.txt) +R654 | Pass | [`RenameCpp17.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L27) | [R654.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R654.txt) +R655 | Pass | [`RenameCpp17.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L28) | [R655.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R655.txt) +R656 | Pass | [`RenameCpp17.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L32) | [R656.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R656.txt) +R657 | Pass | [`RenameCpp17.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L48) | [R657.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R657.txt) +R658 | Pass | [`RenameCpp17.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L49) | [R658.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R658.txt) +R659 | Pass | [`RenameCpp17.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L50) | [R659.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R659.txt) +R660 | Pass | [`RenameCpp17.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L51) | [R660.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R660.txt) +R661 | Pass | [`RenameCpp17.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L53) | [R661.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R661.txt) +R662 | Pass | [`RenameCpp17.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L55) | [R662.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R662.txt) +R663 | Pass | [`RenameCpp17.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L56) | [R663.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R663.txt) +R664 | Pass | [`RenameCpp17.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L58) | [R664.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R664.txt) +R665 | Pass | [`RenameCpp17.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L68) | [R665.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R665.txt) +R666 | Pass | [`RenameCpp17.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L72) | [R666.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R666.txt) +R667 | Pass | [`RenameCpp17.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L73) | [R667.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R667.txt) +R668 | Pass | [`RenameCpp17.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L75) | [R668.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R668.txt) +R669 | Pass | [`RenameCpp17.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L78) | [R669.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R669.txt) +R670 | Pass | [`RenameCpp17.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L79) | [R670.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R670.txt) +R671 | Pass | [`RenameCpp17.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L99) | [R671.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R671.txt) +R672 | Pass | [`RenameCpp17.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L105) | [R672.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R672.txt) +R673 | Pass | [`RenameCpp17.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L107) | [R673.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R673.txt) +R674 | Pass | [`RenameCpp17.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L109) | [R674.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R674.txt) +R675 | Pass | [`RenameCpp17.cpp`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L110) | [R675.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R675.txt) +R676 | Pass | [`RenameCpp17.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L111) | [R676.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R676.txt) +R677 | Pass | [`RenameCpp17.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L112) | [R677.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R677.txt) +R678 | Pass | [`RenameCpp17.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L113) | [R678.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R678.txt) +R679 | Pass | [`RenameCpp17.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L118) | [R679.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R679.txt) +R680 | Pass | [`RenameCpp17.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L121) | [R680.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R680.txt) +R681 | Pass | [`RenameCpp17.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L130) | [R681.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R681.txt) +R682 | Pass | [`RenameCpp17.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L137) | [R682.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R682.txt) +R683 | Pass | [`RenameCpp17.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L139) | [R683.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R683.txt) +R684 | Pass | [`RenameCpp17.cpp`, line 147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L147) | [R684.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R684.txt) +R685 | Pass | [`RenameCpp17.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L149) | [R685.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R685.txt) +R686 | Pass | [`RenameCpp17.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L150) | [R686.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R686.txt) +R687 | Pass | [`RenameCpp17.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L151) | [R687.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R687.txt) +R688 | Pass | [`RenameCpp17.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L153) | [R688.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R688.txt) +R689 | Pass | [`RenameCpp17.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L155) | [R689.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R689.txt) +R690 | Pass | [`RenameCpp17.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L157) | [R690.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R690.txt) +R691 | Pass | [`RenameCpp17.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L158) | [R691.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R691.txt) +R692 | Pass | [`RenameCpp17.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L159) | [R692.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R692.txt) +R693 | Pass | [`RenameCpp17.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L161) | [R693.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R693.txt) +R694 | Pass | [`RenameCpp17.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L163) | [R694.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R694.txt) +R695 | Pass | [`RenameCpp17.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L165) | [R695.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R695.txt) +R696 | Pass | [`RenameCpp17.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L166) | [R696.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R696.txt) +R697 | Pass | [`RenameCpp17.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L167) | [R697.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R697.txt) +R698 | Pass | [`RenameCpp17.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L169) | [R698.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R698.txt) +R699 | Pass | [`RenameCpp17.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L171) | [R699.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R699.txt) +R700 | Pass | [`RenameCpp17.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L175) | [R700.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R700.txt) +R701 | Pass | [`RenameCpp17.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L176) | [R701.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R701.txt) +R702 | Pass | [`RenameCpp17.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L177) | [R702.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R702.txt) +R703 | Pass | [`RenameCpp17.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L179) | [R703.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R703.txt) +R704 | Pass | [`RenameCpp17.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L181) | [R704.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R704.txt) +R705 | Pass | [`RenameCpp17.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L189) | [R705.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R705.txt) +R706 | Pass | [`RenameCpp17.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L190) | [R706.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R706.txt) +R707 | Pass | [`RenameCpp17.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L191) | [R707.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R707.txt) +R708 | Pass | [`RenameCpp17.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L193) | [R708.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R708.txt) +R709 | Pass | [`RenameCpp17.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L195) | [R709.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R709.txt) +R710 | Pass | [`RenameCpp17.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L197) | [R710.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R710.txt) +R711 | Pass | [`RenameCpp17.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L198) | [R711.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R711.txt) +R712 | Pass | [`RenameCpp17.cpp`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L199) | [R712.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R712.txt) +R713 | Pass | [`RenameCpp17.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L201) | [R713.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R713.txt) +R714 | Pass | [`RenameCpp17.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L203) | [R714.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R714.txt) +R715 | Pass | [`RenameCpp17.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L205) | [R715.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R715.txt) +R716 | Pass | [`RenameCpp17.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L206) | [R716.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R716.txt) +R717 | Pass | [`RenameCpp17.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L207) | [R717.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R717.txt) +R718 | Pass | [`RenameCpp17.cpp`, line 209](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L209) | [R718.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R718.txt) +R719 | Pass | [`RenameCpp17.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L211) | [R719.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R719.txt) +R720 | Pass | [`RenameCpp17.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L215) | [R720.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R720.txt) +R721 | Pass | [`RenameCpp17.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L216) | [R721.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R721.txt) +R722 | Pass | [`RenameCpp17.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L217) | [R722.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R722.txt) +R723 | Pass | [`RenameCpp17.cpp`, line 219](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L219) | [R723.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R723.txt) +R724 | Pass | [`RenameCpp17.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L221) | [R724.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R724.txt) +R725 | Pass | [`RenameCpp17.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L233) | [R725.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R725.txt) +R726 | Pass | [`RenameCpp17.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L234) | [R726.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R726.txt) +R727 | Pass | [`RenameCpp17.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L235) | [R727.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R727.txt) +R728 | Pass | [`RenameCpp17.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L237) | [R728.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R728.txt) +R729 | Pass | [`RenameCpp17.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L239) | [R729.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R729.txt) +R730 | Pass | [`RenameCpp17.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L241) | [R730.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R730.txt) +R731 | Pass | [`RenameCpp17.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L242) | [R731.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R731.txt) +R732 | Pass | [`RenameCpp17.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L243) | [R732.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R732.txt) +R733 | Pass | [`RenameCpp17.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L245) | [R733.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R733.txt) +R734 | Pass | [`RenameCpp17.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L247) | [R734.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R734.txt) +R735 | Pass | [`RenameCpp17.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L249) | [R735.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R735.txt) +R736 | Pass | [`RenameCpp17.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L250) | [R736.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R736.txt) +R737 | Pass | [`RenameCpp17.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L251) | [R737.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R737.txt) +R738 | Pass | [`RenameCpp17.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L253) | [R738.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R738.txt) +R739 | Pass | [`RenameCpp17.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L255) | [R739.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R739.txt) +R740 | Pass | [`RenameCpp17.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L259) | [R740.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R740.txt) +R741 | Pass | [`RenameCpp17.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L260) | [R741.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R741.txt) +R742 | Pass | [`RenameCpp17.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L261) | [R742.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R742.txt) +R743 | Pass | [`RenameCpp17.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L263) | [R743.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R743.txt) +R744 | Pass | [`RenameCpp17.cpp`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L265) | [R744.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R744.txt) +R745 | Pass | [`RenameCpp17.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L273) | [R745.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R745.txt) +R746 | Pass | [`RenameCpp17.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L274) | [R746.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R746.txt) +R747 | Pass | [`RenameCpp17.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L275) | [R747.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R747.txt) +R748 | Pass | [`RenameCpp17.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L278) | [R748.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R748.txt) +R749 | Pass | [`RenameCpp17.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L280) | [R749.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R749.txt) +R750 | Pass | [`RenameCpp17.cpp`, line 285](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L285) | [R750.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R750.txt) +R751 | Pass | [`RenameCpp17.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L286) | [R751.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R751.txt) +R752 | Pass | [`RenameCpp17.cpp`, line 290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L290) | [R752.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R752.txt) +R753 | Pass | [`RenameCpp17.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L292) | [R753.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R753.txt) +R754 | Pass | [`RenameCpp17.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L296) | [R754.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R754.txt) +R755 | Pass | [`RenameCpp17.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L298) | [R755.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R755.txt) +R756 | Pass | [`RenameCpp17.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L308) | [R756.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R756.txt) +R757 | Pass | [`RenameCpp17.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L310) | [R757.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R757.txt) +R758 | Pass | [`RenameCpp17.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L311) | [R758.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R758.txt) +R759 | Pass | [`RenameCpp17.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L312) | [R759.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R759.txt) +R760 | Pass | [`RenameCpp17.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L315) | [R760.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R760.txt) +R761 | Pass | [`RenameCpp17.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L319) | [R761.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R761.txt) +R762 | Pass | [`RenameCpp17.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L321) | [R762.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R762.txt) +R763 | Pass | [`RenameCpp17.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L322) | [R763.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R763.txt) +R764 | Pass | [`RenameCpp17.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L323) | [R764.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R764.txt) +R765 | Pass | [`RenameCpp17.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L326) | [R765.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R765.txt) +R766 | Pass | [`RenameCpp17.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L330) | [R766.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R766.txt) +R767 | Pass | [`RenameCpp17.cpp`, line 332](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L332) | [R767.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R767.txt) +R768 | Pass | [`RenameCpp17.cpp`, line 333](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L333) | [R768.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R768.txt) +R769 | Pass | [`RenameCpp17.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L334) | [R769.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R769.txt) +R770 | Pass | [`RenameCpp17.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L335) | [R770.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R770.txt) +R771 | Pass | [`RenameCpp17.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L338) | [R771.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R771.txt) +R772 | Pass | [`RenameCpp17.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L339) | [R772.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R772.txt) +R773 | Pass | [`RenameCpp17.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L343) | [R773.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R773.txt) +R774 | Pass | [`RenameCpp17.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L345) | [R774.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R774.txt) +R775 | Pass | [`RenameCpp17.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L346) | [R775.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R775.txt) +R776 | Pass | [`RenameCpp17.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L347) | [R776.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R776.txt) +R777 | Pass | [`RenameCpp17.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L348) | [R777.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R777.txt) +R778 | Pass | [`RenameCpp17.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L351) | [R778.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R778.txt) +R779 | Pass | [`RenameCpp17.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L352) | [R779.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R779.txt) +R780 | Pass | [`RenameCpp17.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L384) | [R780.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R780.txt) +R781 | Pass | [`RenameCpp17.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L385) | [R781.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R781.txt) +R782 | Pass | [`RenameCpp17.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L386) | [R782.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R782.txt) +R783 | Pass | [`RenameCpp17.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L388) | [R783.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R783.txt) +R784 | Pass | [`RenameCpp17.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L390) | [R784.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R784.txt) +R785 | Pass | [`RenameCpp17.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L392) | [R785.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R785.txt) +R786 | Pass | [`RenameCpp17.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L393) | [R786.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R786.txt) +R787 | Pass | [`RenameCpp17.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L394) | [R787.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R787.txt) +R788 | Pass | [`RenameCpp17.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L396) | [R788.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R788.txt) +R789 | Pass | [`RenameCpp17.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L398) | [R789.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R789.txt) +R790 | Pass | [`RenameCpp17.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L403) | [R790.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R790.txt) +R791 | Pass | [`RenameCpp17.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L404) | [R791.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R791.txt) +R792 | Pass | [`RenameCpp17.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L405) | [R792.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R792.txt) +R793 | Pass | [`RenameCpp17.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L407) | [R793.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R793.txt) +R794 | Pass | [`RenameCpp17.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L409) | [R794.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R794.txt) +R795 | Pass | [`RenameCpp17.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L411) | [R795.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R795.txt) +R796 | Pass | [`RenameCpp17.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L413) | [R796.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R796.txt) +R797 | Pass | [`RenameCpp17.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L415) | [R797.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R797.txt) +R798 | Pass | [`RenameCpp17.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L416) | [R798.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R798.txt) +R799 | Pass | [`RenameCpp17.cpp`, line 417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L417) | [R799.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R799.txt) +R800 | Pass | [`RenameCpp17.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L419) | [R800.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R800.txt) +R801 | Pass | [`RenameCpp17.cpp`, line 421](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L421) | [R801.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R801.txt) +R802 | Pass | [`RenameCpp17.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L422) | [R802.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R802.txt) +R803 | Pass | [`RenameCpp17.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L424) | [R803.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R803.txt) +R804 | Pass | [`RenameCpp17.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L430) | [R804.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R804.txt) +R805 | Pass | [`RenameCpp17.cpp`, line 432](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L432) | [R805.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R805.txt) +R806 | Pass | [`RenameCpp17.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L438) | [R806.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R806.txt) +R807 | Pass | [`RenameCpp17.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L440) | [R807.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R807.txt) +R808 | Pass | [`RenameCpp17.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L443) | [R808.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R808.txt) +R809 | Pass | [`RenameCpp17.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L444) | [R809.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R809.txt) +R810 | Pass | [`RenameCpp17.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L449) | [R810.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R810.txt) +R811 | Pass | [`RenameCpp17.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L451) | [R811.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R811.txt) +R812 | Pass | [`RenameCpp17.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L452) | [R812.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R812.txt) +R813 | Pass | [`RenameCpp17.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L453) | [R813.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R813.txt) +R814 | Pass | [`RenameCpp17.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L461) | [R814.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R814.txt) +R815 | Pass | [`RenameCpp17.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L463) | [R815.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R815.txt) +R816 | Pass | [`RenameCpp17.cpp`, line 464](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L464) | [R816.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R816.txt) +R817 | Pass | [`RenameCpp17.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L465) | [R817.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R817.txt) +R818 | Pass | [`RenameCpp17.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L466) | [R818.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R818.txt) +R819 | Pass | [`RenameCpp17.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L467) | [R819.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R819.txt) +R820 | Pass | [`RenameCpp17.cpp`, line 472](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L472) | [R820.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R820.txt) +R821 | Pass | [`RenameCpp17.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L473) | [R821.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R821.txt) +R822 | Pass | [`RenameCpp17.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L475) | [R822.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R822.txt) +R823 | Pass | [`RenameCpp17.cpp`, line 478](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L478) | [R823.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R823.txt) +R824 | Pass | [`RenameCpp17.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L479) | [R824.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R824.txt) +R825 | Pass | [`RenameCpp17.cpp`, line 480](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L480) | [R825.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R825.txt) +R826 | Pass | [`RenameCpp17.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L481) | [R826.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R826.txt) +R827 | Pass | [`RenameCpp17.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L483) | [R827.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R827.txt) +R828 | Pass | [`RenameCpp17.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L489) | [R828.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R828.txt) +R829 | Pass | [`RenameCpp17.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L490) | [R829.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R829.txt) +R830 | Pass | [`RenameCpp17.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L491) | [R830.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R830.txt) +R831 | Pass | [`RenameCpp17.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L492) | [R831.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R831.txt) +R832 | Pass | [`RenameCpp17.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L496) | [R832.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R832.txt) +R833 | Pass | [`RenameCpp17.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L497) | [R833.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R833.txt) +R834 | Pass | [`RenameCpp17.cpp`, line 498](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L498) | [R834.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R834.txt) +R835 | Pass | [`RenameCpp17.cpp`, line 500](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L500) | [R835.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R835.txt) +R836 | Pass | [`RenameCpp17.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L508) | [R836.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R836.txt) +R837 | Pass | [`RenameCpp17.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L509) | [R837.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R837.txt) +R838 | Pass | [`RenameCpp17.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L510) | [R838.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R838.txt) +R839 | Pass | [`RenameCpp17.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L511) | [R839.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R839.txt) +R840 | Pass | [`RenameCpp17.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L512) | [R840.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R840.txt) +R841 | Pass | [`RenameCpp17.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L514) | [R841.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R841.txt) +R842 | Pass | [`RenameCpp17.cpp`, line 515](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L515) | [R842.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R842.txt) +R843 | Pass | [`RenameCpp17.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L520) | [R843.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R843.txt) +R844 | Pass | [`RenameCpp17.cpp`, line 521](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L521) | [R844.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R844.txt) +R845 | Pass | [`RenameCpp17.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L522) | [R845.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R845.txt) +R846 | Pass | [`RenameCpp17.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L523) | [R846.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R846.txt) +R847 | Pass | [`RenameCpp17.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L524) | [R847.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R847.txt) +R848 | Pass | [`RenameCpp17.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L526) | [R848.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R848.txt) +R849 | Pass | [`RenameCpp17.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L527) | [R849.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R849.txt) +R850 | Pass | [`RenameCpp17.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L531) | [R850.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R850.txt) +R851 | Pass | [`RenameCpp17.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L533) | [R851.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R851.txt) +R852 | Pass | [`RenameCpp17.cpp`, line 534](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L534) | [R852.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R852.txt) +R853 | Pass | [`RenameCpp17.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L535) | [R853.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R853.txt) +R854 | Pass | [`RenameCpp17.cpp`, line 536](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L536) | [R854.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R854.txt) +R855 | Pass | [`RenameCpp17.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L538) | [R855.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R855.txt) +R856 | Pass | [`RenameCpp17.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L539) | [R856.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R856.txt) +R857 | Pass | [`RenameCpp20.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L10) | [R857.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R857.txt) +R858 | Pass | [`RenameCpp20.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L13) | [R858.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R858.txt) +R859 | Pass | [`RenameCpp20.h`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L15) | [R859.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R859.txt) +R860 | Pass | [`RenameCpp20.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L17) | [R860.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R860.txt) +R861 | Pass | [`RenameCpp20.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L67) | [R861.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R861.txt) +R862 | Pass | [`RenameCpp20.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L69) | [R862.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R862.txt) +R863 | Pass | [`RenameCpp20.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L71) | [R863.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R863.txt) +R864 | Pass | [`RenameCpp20.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L72) | [R864.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R864.txt) +R865 | Pass | [`RenameCpp20.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L74) | [R865.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R865.txt) +R866 | Pass | [`RenameCpp20.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L75) | [R866.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R866.txt) +R867 | Pass | [`RenameCpp20.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L77) | [R867.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R867.txt) +R868 | Pass | [`RenameCpp20.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L78) | [R868.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R868.txt) +R869 | Pass | [`RenameCpp20.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L83) | [R869.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R869.txt) +R870 | Pass | [`RenameCpp20.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L85) | [R870.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R870.txt) +R871 | Pass | [`RenameCpp20.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L87) | [R871.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R871.txt) +R872 | Pass | [`RenameCpp20.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L88) | [R872.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R872.txt) +R873 | Pass | [`RenameCpp20.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L90) | [R873.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R873.txt) +R874 | Pass | [`RenameCpp20.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L91) | [R874.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R874.txt) +R875 | Pass | [`RenameCpp20.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L93) | [R875.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R875.txt) +R876 | Pass | [`RenameCpp20.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L94) | [R876.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R876.txt) +R877 | Pass | [`RenameCpp20.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L102) | [R877.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R877.txt) +R878 | Pass | [`RenameCpp20.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L105) | [R878.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R878.txt) +R879 | Pass | [`RenameCpp20.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L106) | [R879.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R879.txt) +R880 | Pass | [`RenameCpp20.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L107) | [R880.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R880.txt) +R881 | Pass | [`RenameCpp20.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L109) | [R881.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R881.txt) +R882 | Pass | [`RenameCpp20.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L111) | [R882.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R882.txt) +R883 | Pass | [`RenameCpp20.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L113) | [R883.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R883.txt) +R884 | Pass | [`RenameCpp20.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L117) | [R884.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R884.txt) +R885 | Pass | [`RenameCpp20.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L118) | [R885.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R885.txt) +R886 | Pass | [`RenameCpp20.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L119) | [R886.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R886.txt) +R887 | Pass | [`RenameCpp20.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L121) | [R887.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R887.txt) +R888 | Pass | [`RenameCpp20.cpp`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L123) | [R888.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R888.txt) +R889 | Pass | [`RenameCpp20.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L125) | [R889.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R889.txt) +R890 | Pass | [`RenameCpp20.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L129) | [R890.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R890.txt) +R891 | Pass | [`RenameCpp20.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L130) | [R891.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R891.txt) +R892 | Pass | [`RenameCpp20.cpp`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L131) | [R892.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R892.txt) +R893 | Pass | [`RenameCpp20.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L132) | [R893.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R893.txt) +R894 | Pass | [`RenameCpp20.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L134) | [R894.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R894.txt) +R895 | Pass | [`RenameCpp20.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L136) | [R895.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R895.txt) +R896 | Pass | [`RenameCpp20.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L138) | [R896.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R896.txt) +R897 | Pass | [`RenameCpp20.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L143) | [R897.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R897.txt) +R898 | Pass | [`RenameCpp20.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L149) | [R898.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R898.txt) +R899 | Pass | [`RenameCpp20.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L163) | [R899.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R899.txt) +R900 | Pass | [`RenameCpp20.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L164) | [R900.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R900.txt) +R901 | Pass | [`RenameCpp20.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L165) | [R901.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R901.txt) +R902 | Pass | [`RenameCpp20.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L168) | [R902.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R902.txt) +R903 | Pass | [`RenameCpp20.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L175) | [R903.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R903.txt) +R904 | Pass | [`RenameCpp20.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L176) | [R904.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R904.txt) +R905 | Pass | [`RenameCpp20.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L177) | [R905.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R905.txt) +R906 | Pass | [`RenameCpp20.cpp`, line 180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L180) | [R906.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R906.txt) +R907 | Pass | [`RenameCpp20.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L190) | [R907.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R907.txt) +R908 | Failure (does nothing) [RSCPP-35265](https://youtrack.jetbrains.com/issue/RSCPP-35265/Rename-of-lambda-non-type-template-parameter-does-nothing) | [`RenameCpp20.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L191) | [R908.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R908.txt) +R909 | Pass | [`RenameCpp20.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L192) | [R909.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R909.txt) +R910 | Pass | [`RenameCpp20.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L193) | [R910.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R910.txt) +R911 | Failure (does nothing) [RSCPP-35265](https://youtrack.jetbrains.com/issue/RSCPP-35265/Rename-of-lambda-non-type-template-parameter-does-nothing) | [`RenameCpp20.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L194) | [R911.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R911.txt) +R912 | Pass | [`RenameCpp20.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L196) | [R912.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R912.txt) +R913 | Pass | [`RenameCpp20.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L198) | [R913.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R913.txt) +R914 | Pass | [`RenameCpp20.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L200) | [R914.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R914.txt) +R915 | Pass | [`RenameCpp20.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L201) | [R915.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R915.txt) +R916 | Pass | [`RenameCpp20.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L202) | [R916.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R916.txt) +R917 | Pass | [`RenameCpp20.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L211) | [R917.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R917.txt) +R918 | Pass | [`RenameCpp20.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L212) | [R918.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R918.txt) +R919 | Pass | [`RenameCpp20.cpp`, line 214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L214) | [R919.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R919.txt) +R920 | Pass | [`RenameCpp20.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L215) | [R920.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R920.txt) +R921 | Pass | [`RenameCpp20.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L216) | [R921.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R921.txt) +R922 | Pass | [`RenameCpp20.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L217) | [R922.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R922.txt) +R923 | Pass | [`RenameCpp20.cpp`, line 220](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L220) | [R923.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R923.txt) +R924 | Pass | [`RenameCpp20.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L221) | [R924.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R924.txt) +R925 | Pass | [`RenameCpp20.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L222) | [R925.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R925.txt) +R926 | Pass | [`RenameCpp20.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L223) | [R926.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R926.txt) +R927 | Pass | [`RenameCpp20.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L224) | [R927.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R927.txt) +R928 | Pass | [`RenameCpp20.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L226) | [R928.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R928.txt) +R929 | Pass | [`RenameCpp20.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L236) | [R929.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R929.txt) +R930 | Pass | [`RenameCpp20.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L237) | [R930.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R930.txt) +R931 | Pass | [`RenameCpp20.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L240) | [R931.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R931.txt) +R932 | Pass | [`RenameCpp20.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L241) | [R932.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R932.txt) +R933 | Pass | [`RenameCpp20.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L248) | [R933.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R933.txt) +R934 | Pass | [`RenameCpp20.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L262) | [R934.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R934.txt) +R935 | Pass | [`RenameCpp20.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L263) | [R935.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R935.txt) +R936 | Pass | [`RenameCpp20.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L269) | [R936.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R936.txt) +R937 | Pass | [`RenameCpp20.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L279) | [R937.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R937.txt) +R938 | Pass | [`RenameCpp20.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L280) | [R938.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R938.txt) +R939 | Pass | [`RenameCpp20.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L282) | [R939.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R939.txt) +R940 | Pass | [`RenameCpp20.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L288) | [R940.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R940.txt) +R941 | Pass | [`RenameCpp20.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L295) | [R941.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R941.txt) +R942 | Pass | [`RenameCpp20.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L296) | [R942.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R942.txt) +R943 | Pass | [`RenameCpp20.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L297) | [R943.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R943.txt) +R944 | Pass | [`RenameCpp20.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L299) | [R944.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R944.txt) +R945 | Pass | [`RenameCpp20.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L305) | [R945.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R945.txt) +R946 | Pass | [`RenameCpp20.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L312) | [R946.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R946.txt) +R947 | Pass | [`RenameCpp20.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L313) | [R947.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R947.txt) +R948 | Pass | [`RenameCpp20.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L314) | [R948.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R948.txt) +R949 | Pass | [`RenameCpp20.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L316) | [R949.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R949.txt) +R950 | Pass | [`RenameCpp20.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L321) | [R950.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R950.txt) +R951 | Pass | [`RenameCpp20.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L322) | [R951.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R951.txt) +R952 | Pass | [`RenameCpp20.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L329) | [R952.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R952.txt) +R953 | Pass | [`RenameCpp20.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L336) | [R953.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R953.txt) +R954 | Pass | [`RenameCpp20.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L345) | [R954.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R954.txt) +R955 | Pass | [`RenameCpp20.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L346) | [R955.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R955.txt) +R956 | Pass | [`RenameCpp20.cpp`, line 357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L357) | [R956.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R956.txt) +R957 | Pass | [`RenameCpp20.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L358) | [R957.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R957.txt) +R958 | Pass | [`RenameCpp20.cpp`, line 361](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L361) | [R958.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R958.txt) +R959 | Pass | [`RenameCpp20.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L364) | [R959.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R959.txt) +R960 | Pass | [`RenameCpp20.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L380) | [R960.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R960.txt) +R961 | Pass | [`RenameCpp20.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L381) | [R961.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R961.txt) +R962 | Pass | [`RenameCpp20.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L384) | [R962.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R962.txt) +R963 | Pass | [`RenameCpp20.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L385) | [R963.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R963.txt) +R964 | Pass | [`RenameCpp20.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L389) | [R964.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R964.txt) +R965 | Pass | [`RenameCpp20.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L390) | [R965.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R965.txt) +R966 | Pass | [`RenameCpp20.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L396) | [R966.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R966.txt) +R967 | Pass | [`RenameCpp20.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L397) | [R967.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R967.txt) +R968 | Pass | [`RenameCpp20.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L403) | [R968.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R968.txt) +R969 | Pass | [`RenameCpp20.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L404) | [R969.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R969.txt) +R970 | Pass | [`RenameCpp20.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L405) | [R970.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R970.txt) +R971 | Pass | [`RenameCpp20.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L408) | [R971.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R971.txt) +R972 | Pass | [`RenameCpp20.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L409) | [R972.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R972.txt) +R973 | Pass | [`RenameCpp20.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L416) | [R973.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R973.txt) +R974 | Pass | [`RenameCpp20.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L418) | [R974.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R974.txt) +R975 | Pass | [`RenameCpp20.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L422) | [R975.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R975.txt) +R976 | Pass | [`RenameCpp20.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L423) | [R976.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R976.txt) +R977 | Pass | [`RenameCpp20.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L429) | [R977.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R977.txt) +R978 | Pass | [`RenameCpp20.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L430) | [R978.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R978.txt) +R979 | Pass | [`RenameCpp20.cpp`, line 436](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L436) | [R979.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R979.txt) +R980 | Pass | [`RenameCpp20.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L437) | [R980.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R980.txt) +R981 | Pass | [`RenameCpp20.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L443) | [R981.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R981.txt) +R982 | Pass | [`RenameCpp20.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L444) | [R982.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R982.txt) +R983 | Pass | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L449) | [R983.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R983.txt) +R984 | Pass | [`RenameCpp20.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L451) | [R984.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R984.txt) +R985 | Pass | [`RenameCpp20.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L452) | [R985.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R985.txt) +R986 | Pass | [`RenameCpp20.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L454) | [R986.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R986.txt) +R987 | Pass | [`RenameCpp20Constraints.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L48) | [R987.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R987.txt) +R988 | Pass | [`RenameCpp20Constraints.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L50) | [R988.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R988.txt) +R989 | Pass | [`RenameCpp20Constraints.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L51) | [R989.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R989.txt) +R990 | Pass | [`RenameCpp20Constraints.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L52) | [R990.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R990.txt) +R991 | Pass | [`RenameCpp20Constraints.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L55) | [R991.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R991.txt) +R992 | Pass | [`RenameCpp20Constraints.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L56) | [R992.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R992.txt) +R993 | Pass | [`RenameCpp20Constraints.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L61) | [R993.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R993.txt) +R994 | Pass | [`RenameCpp20Constraints.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L62) | [R994.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R994.txt) +R995 | Pass | [`RenameCpp20Constraints.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L64) | [R995.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R995.txt) +R996 | Pass | [`RenameCpp20Constraints.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L65) | [R996.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R996.txt) +R997 | Pass | [`RenameCpp20Constraints.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L66) | [R997.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R997.txt) +R998 | Pass | [`RenameCpp20Constraints.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L67) | [R998.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R998.txt) +R999 | Pass | [`RenameCpp20Constraints.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L68) | [R999.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R999.txt) +R1000 | Pass | [`RenameCpp20Constraints.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L71) | [R1000.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1000.txt) +R1001 | Pass | [`RenameCpp20Constraints.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L72) | [R1001.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1001.txt) +R1002 | Pass | [`RenameCpp20Constraints.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L78) | [R1002.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1002.txt) +R1003 | Pass | [`RenameCpp20Constraints.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L80) | [R1003.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1003.txt) +R1004 | Pass | [`RenameCpp20Constraints.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L81) | [R1004.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1004.txt) +R1005 | Pass | [`RenameCpp20Constraints.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L83) | [R1005.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1005.txt) +R1006 | Pass | [`RenameCpp20Constraints.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L84) | [R1006.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1006.txt) +R1007 | Pass | [`RenameCpp20Constraints.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L85) | [R1007.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1007.txt) +R1008 | Pass | [`RenameCpp20Constraints.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L86) | [R1008.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1008.txt) +R1009 | Pass | [`RenameCpp20Constraints.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L89) | [R1009.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1009.txt) +R1010 | Pass | [`RenameCpp20Constraints.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L90) | [R1010.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1010.txt) +R1011 | Pass | [`RenameCpp20Constraints.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L95) | [R1011.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1011.txt) +R1012 | Pass | [`RenameCpp20Constraints.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L97) | [R1012.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1012.txt) +R1013 | Pass | [`RenameCpp20Constraints.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L98) | [R1013.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1013.txt) +R1014 | Pass | [`RenameCpp20Constraints.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L99) | [R1014.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1014.txt) +R1015 | Pass | [`RenameCpp20Constraints.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L100) | [R1015.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1015.txt) +R1016 | Pass | [`RenameCpp20Constraints.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L102) | [R1016.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1016.txt) +R1017 | Pass | [`RenameCpp20Constraints.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L103) | [R1017.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1017.txt) +R1018 | Pass | [`RenameCpp20Constraints.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L106) | [R1018.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1018.txt) +R1019 | Pass | [`RenameCpp20Constraints.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L107) | [R1019.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1019.txt) +R1020 | Pass | [`RenameCpp20Constraints.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L112) | [R1020.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1020.txt) +R1021 | Pass | [`RenameCpp20Constraints.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L114) | [R1021.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1021.txt) +R1022 | Pass | [`RenameCpp20Constraints.cpp`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L115) | [R1022.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1022.txt) +R1023 | Pass | [`RenameCpp20Constraints.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L116) | [R1023.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1023.txt) +R1024 | Pass | [`RenameCpp20Constraints.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L118) | [R1024.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1024.txt) +R1025 | Pass | [`RenameCpp20Constraints.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L119) | [R1025.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1025.txt) +R1026 | Pass | [`RenameCpp20Constraints.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L120) | [R1026.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1026.txt) +R1027 | Pass | [`RenameCpp20Constraints.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L121) | [R1027.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1027.txt) +R1028 | Pass | [`RenameCpp20Constraints.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L124) | [R1028.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1028.txt) +R1029 | Pass | [`RenameCpp20Constraints.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L125) | [R1029.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1029.txt) +R1030 | Pass | [`RenameCpp20Constraints.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L130) | [R1030.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1030.txt) +R1031 | Pass | [`RenameCpp20Constraints.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L132) | [R1031.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1031.txt) +R1032 | Pass | [`RenameCpp20Constraints.cpp`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L133) | [R1032.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1032.txt) +R1033 | Pass | [`RenameCpp20Constraints.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L134) | [R1033.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1033.txt) +R1034 | Pass | [`RenameCpp20Constraints.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L136) | [R1034.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1034.txt) +R1035 | Pass | [`RenameCpp20Constraints.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L137) | [R1035.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1035.txt) +R1036 | Pass | [`RenameCpp20Constraints.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L138) | [R1036.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1036.txt) +R1037 | Pass | [`RenameCpp20Constraints.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L139) | [R1037.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1037.txt) +R1038 | Pass | [`RenameCpp20Constraints.cpp`, line 142](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L142) | [R1038.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1038.txt) +R1039 | Pass | [`RenameCpp20Constraints.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L143) | [R1039.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1039.txt) +R1040 | Pass | [`RenameCpp20Constraints.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L148) | [R1040.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1040.txt) +R1041 | Pass | [`RenameCpp20Constraints.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L150) | [R1041.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1041.txt) +R1042 | Pass | [`RenameCpp20Constraints.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L151) | [R1042.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1042.txt) +R1043 | Pass | [`RenameCpp20Constraints.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L152) | [R1043.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1043.txt) +R1044 | Pass | [`RenameCpp20Constraints.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L153) | [R1044.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1044.txt) +R1045 | Pass | [`RenameCpp20Constraints.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L155) | [R1045.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1045.txt) +R1046 | Pass | [`RenameCpp20Constraints.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L156) | [R1046.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1046.txt) +R1047 | Pass | [`RenameCpp20Constraints.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L157) | [R1047.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1047.txt) +R1048 | Pass | [`RenameCpp20Constraints.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L160) | [R1048.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1048.txt) +R1049 | Pass | [`RenameCpp20Constraints.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L161) | [R1049.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1049.txt) +R1050 | Pass | [`RenameCpp20Constraints.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L166) | [R1050.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1050.txt) +R1051 | Pass | [`RenameCpp20Constraints.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L168) | [R1051.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1051.txt) +R1052 | Pass | [`RenameCpp20Constraints.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L169) | [R1052.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1052.txt) +R1053 | Pass | [`RenameCpp20Constraints.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L170) | [R1053.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1053.txt) +R1054 | Pass | [`RenameCpp20Constraints.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L171) | [R1054.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1054.txt) +R1055 | Pass | [`RenameCpp20Constraints.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L173) | [R1055.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1055.txt) +R1056 | Pass | [`RenameCpp20Constraints.cpp`, line 174](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L174) | [R1056.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1056.txt) +R1057 | Pass | [`RenameCpp20Constraints.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L175) | [R1057.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1057.txt) +R1058 | Pass | [`RenameCpp20Constraints.cpp`, line 178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L178) | [R1058.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1058.txt) +R1059 | Pass | [`RenameCpp20Constraints.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L179) | [R1059.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1059.txt) +R1060 | Pass | [`RenameCpp20Constraints.cpp`, line 184](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L184) | [R1060.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1060.txt) +R1061 | Pass | [`RenameCpp20Constraints.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L186) | [R1061.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1061.txt) +R1062 | Pass | [`RenameCpp20Constraints.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L187) | [R1062.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1062.txt) +R1063 | Pass | [`RenameCpp20Constraints.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L188) | [R1063.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1063.txt) +R1064 | Pass | [`RenameCpp20Constraints.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L189) | [R1064.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1064.txt) +R1065 | Pass | [`RenameCpp20Constraints.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L191) | [R1065.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1065.txt) +R1066 | Pass | [`RenameCpp20Constraints.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L192) | [R1066.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1066.txt) +R1067 | Pass | [`RenameCpp20Constraints.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L193) | [R1067.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1067.txt) +R1068 | Pass | [`RenameCpp20Constraints.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L194) | [R1068.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1068.txt) +R1069 | Pass | [`RenameCpp20Constraints.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L197) | [R1069.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1069.txt) +R1070 | Pass | [`RenameCpp20Constraints.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L198) | [R1070.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1070.txt) +R1071 | Pass | [`RenameCpp20Constraints.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L203) | [R1071.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1071.txt) +R1072 | Pass | [`RenameCpp20Constraints.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L205) | [R1072.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1072.txt) +R1073 | Pass | [`RenameCpp20Constraints.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L206) | [R1073.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1073.txt) +R1074 | Pass | [`RenameCpp20Constraints.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L207) | [R1074.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1074.txt) +R1075 | Pass | [`RenameCpp20Constraints.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L208) | [R1075.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1075.txt) +R1076 | Pass | [`RenameCpp20Constraints.cpp`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L210) | [R1076.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1076.txt) +R1077 | Pass | [`RenameCpp20Constraints.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L211) | [R1077.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1077.txt) +R1078 | Pass | [`RenameCpp20Constraints.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L212) | [R1078.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1078.txt) +R1079 | Pass | [`RenameCpp20Constraints.cpp`, line 213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L213) | [R1079.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1079.txt) +R1080 | Pass | [`RenameCpp20Constraints.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L216) | [R1080.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1080.txt) +R1081 | Pass | [`RenameCpp20Constraints.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L217) | [R1081.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1081.txt) +R1082 | Pass | [`RenameCpp20Constraints.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L222) | [R1082.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1082.txt) +R1083 | Pass | [`RenameCpp20Constraints.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L223) | [R1083.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1083.txt) +R1084 | Pass | [`RenameCpp20Constraints.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L224) | [R1084.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1084.txt) +R1085 | Pass | [`RenameCpp20Constraints.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L226) | [R1085.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1085.txt) +R1086 | Pass | [`RenameCpp20Constraints.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L227) | [R1086.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1086.txt) +R1087 | Pass | [`RenameCpp20Constraints.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L228) | [R1087.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1087.txt) +R1088 | Pass | [`RenameCpp20Constraints.cpp`, line 230](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L230) | [R1088.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1088.txt) +R1089 | Pass | [`RenameCpp20Constraints.cpp`, line 231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L231) | [R1089.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1089.txt) +R1090 | Pass | [`RenameCpp20Constraints.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L232) | [R1090.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1090.txt) +R1091 | Pass | [`RenameCpp20Constraints.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L233) | [R1091.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1091.txt) +R1092 | Pass | [`RenameCpp20Constraints.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L234) | [R1092.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1092.txt) +R1093 | Pass | [`RenameCpp20Constraints.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L235) | [R1093.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1093.txt) +R1094 | Pass | [`RenameCpp20Constraints.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L236) | [R1094.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1094.txt) +R1095 | Pass | [`RenameCpp20Constraints.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L239) | [R1095.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1095.txt) +R1096 | Pass | [`RenameCpp20Constraints.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L240) | [R1096.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1096.txt) +R1097 | Pass | [`RenameCpp20Constraints.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L245) | [R1097.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1097.txt) +R1098 | Pass | [`RenameCpp20Constraints.cpp`, line 246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L246) | [R1098.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1098.txt) +R1099 | Pass | [`RenameCpp20Constraints.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L247) | [R1099.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1099.txt) +R1100 | Pass | [`RenameCpp20Constraints.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L249) | [R1100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1100.txt) +R1101 | Pass | [`RenameCpp20Constraints.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L250) | [R1101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1101.txt) +R1102 | Pass | [`RenameCpp20Constraints.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L251) | [R1102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1102.txt) +R1103 | Pass | [`RenameCpp20Constraints.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L252) | [R1103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1103.txt) +R1104 | Pass | [`RenameCpp20Constraints.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L253) | [R1104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1104.txt) +R1105 | Pass | [`RenameCpp20Constraints.cpp`, line 254](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L254) | [R1105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1105.txt) +R1106 | Pass | [`RenameCpp20Constraints.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L255) | [R1106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1106.txt) +R1107 | Pass | [`RenameCpp20Constraints.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L257) | [R1107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1107.txt) +R1108 | Pass | [`RenameCpp20Constraints.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L258) | [R1108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1108.txt) +R1109 | Pass | [`RenameCpp20Constraints.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L259) | [R1109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1109.txt) +R1110 | Pass | [`RenameCpp20Constraints.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L262) | [R1110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1110.txt) +R1111 | Pass | [`RenameCpp20Constraints.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L263) | [R1111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1111.txt) +R1112 | Pass | [`RenameCpp20Constraints.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L268) | [R1112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1112.txt) +R1113 | Pass | [`RenameCpp20Constraints.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L269) | [R1113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1113.txt) +R1114 | Pass | [`RenameCpp20Constraints.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L270) | [R1114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1114.txt) +R1115 | Pass | [`RenameCpp20Constraints.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L272) | [R1115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1115.txt) +R1116 | Pass | [`RenameCpp20Constraints.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L273) | [R1116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1116.txt) +R1117 | Pass | [`RenameCpp20Constraints.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L274) | [R1117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1117.txt) +R1118 | Pass | [`RenameCpp20Constraints.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L275) | [R1118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1118.txt) +R1119 | Pass | [`RenameCpp20Constraints.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L277) | [R1119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1119.txt) +R1120 | Pass | [`RenameCpp20Constraints.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L278) | [R1120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1120.txt) +R1121 | Pass | [`RenameCpp20Constraints.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L279) | [R1121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1121.txt) +R1122 | Pass | [`RenameCpp20Constraints.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L280) | [R1122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1122.txt) +R1123 | Pass | [`RenameCpp20Constraints.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L281) | [R1123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1123.txt) +R1124 | Pass | [`RenameCpp20Constraints.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L282) | [R1124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1124.txt) +R1125 | Pass | [`RenameCpp20Constraints.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L283) | [R1125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1125.txt) +R1126 | Pass | [`RenameCpp20Constraints.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L286) | [R1126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1126.txt) +R1127 | Pass | [`RenameCpp20Constraints.cpp`, line 287](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L287) | [R1127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1127.txt) +R1128 | Pass | [`RenameCpp20Constraints.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L292) | [R1128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1128.txt) +R1129 | Pass | [`RenameCpp20Constraints.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L293) | [R1129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1129.txt) +R1130 | Pass | [`RenameCpp20Constraints.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L294) | [R1130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1130.txt) +R1131 | Pass | [`RenameCpp20Constraints.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L296) | [R1131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1131.txt) +R1132 | Pass | [`RenameCpp20Constraints.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L297) | [R1132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1132.txt) +R1133 | Pass | [`RenameCpp20Constraints.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L298) | [R1133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1133.txt) +R1134 | Pass | [`RenameCpp20Constraints.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L299) | [R1134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1134.txt) +R1135 | Pass | [`RenameCpp20Constraints.cpp`, line 300](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L300) | [R1135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1135.txt) +R1136 | Pass | [`RenameCpp20Constraints.cpp`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L301) | [R1136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1136.txt) +R1137 | Pass | [`RenameCpp20Constraints.cpp`, line 302](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L302) | [R1137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1137.txt) +R1138 | Pass | [`RenameCpp20Constraints.cpp`, line 304](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L304) | [R1138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1138.txt) +R1139 | Pass | [`RenameCpp20Constraints.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L305) | [R1139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1139.txt) +R1140 | Pass | [`RenameCpp20Constraints.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L306) | [R1140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1140.txt) +R1141 | Pass | [`RenameCpp20Constraints.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L307) | [R1141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1141.txt) +R1142 | Pass | [`RenameCpp20Constraints.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L310) | [R1142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1142.txt) +R1143 | Pass | [`RenameCpp20Constraints.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L311) | [R1143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1143.txt) +R1144 | Pass | [`RenameCpp20Constraints.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L316) | [R1144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1144.txt) +R1145 | Pass | [`RenameCpp20Constraints.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L317) | [R1145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1145.txt) +R1146 | Pass | [`RenameCpp20Constraints.cpp`, line 318](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L318) | [R1146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1146.txt) +R1147 | Pass | [`RenameCpp20Constraints.cpp`, line 320](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L320) | [R1147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1147.txt) +R1148 | Pass | [`RenameCpp20Constraints.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L321) | [R1148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1148.txt) +R1149 | Pass | [`RenameCpp20Constraints.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L322) | [R1149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1149.txt) +R1150 | Pass | [`RenameCpp20Constraints.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L323) | [R1150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1150.txt) +R1151 | Pass | [`RenameCpp20Constraints.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L325) | [R1151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1151.txt) +R1152 | Pass | [`RenameCpp20Constraints.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L326) | [R1152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1152.txt) +R1153 | Pass | [`RenameCpp20Constraints.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L327) | [R1153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1153.txt) +R1154 | Pass | [`RenameCpp20Constraints.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L328) | [R1154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1154.txt) +R1155 | Pass | [`RenameCpp20Constraints.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L329) | [R1155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1155.txt) +R1156 | Pass | [`RenameCpp20Constraints.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L330) | [R1156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1156.txt) +R1157 | Pass | [`RenameCpp20Constraints.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L331) | [R1157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1157.txt) +R1158 | Pass | [`RenameCpp20Constraints.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L334) | [R1158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1158.txt) +R1159 | Pass | [`RenameCpp20Constraints.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L335) | [R1159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1159.txt) +R1160 | Pass | [`RenameCpp20Constraints.cpp`, line 340](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L340) | [R1160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1160.txt) +R1161 | Pass | [`RenameCpp20Constraints.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L341) | [R1161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1161.txt) +R1162 | Pass | [`RenameCpp20Constraints.cpp`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L342) | [R1162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1162.txt) +R1163 | Pass | [`RenameCpp20Constraints.cpp`, line 344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L344) | [R1163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1163.txt) +R1164 | Pass | [`RenameCpp20Constraints.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L345) | [R1164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1164.txt) +R1165 | Pass | [`RenameCpp20Constraints.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L346) | [R1165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1165.txt) +R1166 | Pass | [`RenameCpp20Constraints.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L347) | [R1166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1166.txt) +R1167 | Pass | [`RenameCpp20Constraints.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L348) | [R1167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1167.txt) +R1168 | Pass | [`RenameCpp20Constraints.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L349) | [R1168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1168.txt) +R1169 | Pass | [`RenameCpp20Constraints.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L350) | [R1169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1169.txt) +R1170 | Pass | [`RenameCpp20Constraints.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L352) | [R1170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1170.txt) +R1171 | Pass | [`RenameCpp20Constraints.cpp`, line 353](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L353) | [R1171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1171.txt) +R1172 | Pass | [`RenameCpp20Constraints.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L354) | [R1172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1172.txt) +R1173 | Pass | [`RenameCpp20Constraints.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L355) | [R1173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1173.txt) +R1174 | Pass | [`RenameCpp20Constraints.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L358) | [R1174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1174.txt) +R1175 | Pass | [`RenameCpp20Constraints.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L359) | [R1175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1175.txt) +R1176 | Pass | [`RenameCpp20Constraints.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L364) | [R1176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1176.txt) +R1177 | Pass | [`RenameCpp20Constraints.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L365) | [R1177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1177.txt) +R1178 | Pass | [`RenameCpp20Constraints.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L366) | [R1178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1178.txt) +R1179 | Pass | [`RenameCpp20Constraints.cpp`, line 368](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L368) | [R1179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1179.txt) +R1180 | Pass | [`RenameCpp20Constraints.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L369) | [R1180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1180.txt) +R1181 | Pass | [`RenameCpp20Constraints.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L370) | [R1181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1181.txt) +R1182 | Pass | [`RenameCpp20Constraints.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L371) | [R1182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1182.txt) +R1183 | Pass | [`RenameCpp20Constraints.cpp`, line 372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L372) | [R1183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1183.txt) +R1184 | Pass | [`RenameCpp20Constraints.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L374) | [R1184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1184.txt) +R1185 | Pass | [`RenameCpp20Constraints.cpp`, line 375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L375) | [R1185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1185.txt) +R1186 | Pass | [`RenameCpp20Constraints.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L376) | [R1186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1186.txt) +R1187 | Pass | [`RenameCpp20Constraints.cpp`, line 377](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L377) | [R1187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1187.txt) +R1188 | Pass | [`RenameCpp20Constraints.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L378) | [R1188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1188.txt) +R1189 | Pass | [`RenameCpp20Constraints.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L379) | [R1189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1189.txt) +R1190 | Pass | [`RenameCpp20Constraints.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L380) | [R1190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1190.txt) +R1191 | Pass | [`RenameCpp20Constraints.cpp`, line 383](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L383) | [R1191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1191.txt) +R1192 | Pass | [`RenameCpp20Constraints.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L384) | [R1192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1192.txt) +R1193 | Pass | [`RenameCpp20Constraints.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L389) | [R1193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1193.txt) +R1194 | Pass | [`RenameCpp20Constraints.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L390) | [R1194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1194.txt) +R1195 | Pass | [`RenameCpp20Constraints.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L391) | [R1195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1195.txt) +R1196 | Pass | [`RenameCpp20Constraints.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L393) | [R1196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1196.txt) +R1197 | Pass | [`RenameCpp20Constraints.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L394) | [R1197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1197.txt) +R1198 | Pass | [`RenameCpp20Constraints.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L395) | [R1198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1198.txt) +R1199 | Pass | [`RenameCpp20Constraints.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L396) | [R1199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1199.txt) +R1200 | Pass | [`RenameCpp20Constraints.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L397) | [R1200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1200.txt) +R1201 | Pass | [`RenameCpp20Constraints.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L398) | [R1201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1201.txt) +R1202 | Pass | [`RenameCpp20Constraints.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L399) | [R1202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1202.txt) +R1203 | Pass | [`RenameCpp20Constraints.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L401) | [R1203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1203.txt) +R1204 | Pass | [`RenameCpp20Constraints.cpp`, line 402](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L402) | [R1204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1204.txt) +R1205 | Pass | [`RenameCpp20Constraints.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L403) | [R1205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1205.txt) +R1206 | Pass | [`RenameCpp20Constraints.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L404) | [R1206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1206.txt) +R1207 | Pass | [`RenameCpp20Constraints.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L405) | [R1207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1207.txt) +R1208 | Pass | [`RenameCpp20Constraints.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L408) | [R1208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1208.txt) +R1209 | Pass | [`RenameCpp20Constraints.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L409) | [R1209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1209.txt) +R1210 | Pass | [`RenameCpp20Constraints.cpp`, line 441](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L441) | [R1210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1210.txt) +R1211 | Pass | [`RenameCpp20Constraints.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L443) | [R1211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1211.txt) +R1212 | Pass | [`RenameCpp20Constraints.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L446) | [R1212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1212.txt) +R1213 | Pass | [`RenameCpp20Constraints.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L452) | [R1213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1213.txt) +R1214 | Pass | [`RenameCpp20Constraints.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L454) | [R1214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1214.txt) +R1215 | Pass | [`RenameCpp20Constraints.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L457) | [R1215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1215.txt) +R1216 | Pass | [`RenameCpp20Constraints.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L463) | [R1216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1216.txt) +R1217 | Pass | [`RenameCpp20Constraints.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L465) | [R1217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1217.txt) +R1218 | Pass | [`RenameCpp20Constraints.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L468) | [R1218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1218.txt) +R1219 | Pass | [`RenameCpp20Constraints.cpp`, line 474](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L474) | [R1219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1219.txt) +R1220 | Pass | [`RenameCpp20Constraints.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L476) | [R1220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1220.txt) +R1221 | Pass | [`RenameCpp20Constraints.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L483) | [R1221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1221.txt) +R1222 | Pass | [`RenameCpp20Constraints.cpp`, line 485](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L485) | [R1222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1222.txt) +R1223 | Pass | [`RenameCpp20Constraints.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L488) | [R1223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1223.txt) +R1224 | Pass | [`RenameCpp20Constraints.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L494) | [R1224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1224.txt) +R1225 | Pass | [`RenameCpp20Constraints.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L496) | [R1225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1225.txt) +R1226 | Pass | [`RenameCpp20Constraints.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L503) | [R1226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1226.txt) +R1227 | Pass | [`RenameCpp20Constraints.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L505) | [R1227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1227.txt) +R1228 | Pass | [`RenameCpp20Constraints.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L512) | [R1228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1228.txt) +R1229 | Pass | [`RenameCpp20Constraints.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L514) | [R1229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1229.txt) +R1230 | Pass | [`RenameCpp20Constraints.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L522) | [R1230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1230.txt) +R1231 | Pass | [`RenameCpp20Constraints.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L524) | [R1231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1231.txt) +R1232 | Pass | [`RenameCpp20Constraints.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L527) | [R1232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1232.txt) +R1233 | Pass | [`RenameCpp20Constraints.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L533) | [R1233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1233.txt) +R1234 | Pass | [`RenameCpp20Constraints.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L535) | [R1234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1234.txt) +R1235 | Pass | [`RenameCpp20Constraints.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L538) | [R1235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1235.txt) +R1236 | Pass | [`RenameCpp20Constraints.cpp`, line 544](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L544) | [R1236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1236.txt) +R1237 | Pass | [`RenameCpp20Constraints.cpp`, line 546](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L546) | [R1237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1237.txt) +R1238 | Pass | [`RenameCpp20Constraints.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L549) | [R1238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1238.txt) +R1239 | Pass | [`RenameCpp20Constraints.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L555) | [R1239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1239.txt) +R1240 | Pass | [`RenameCpp20Constraints.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L557) | [R1240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1240.txt) +R1241 | Pass | [`RenameCpp20Constraints.cpp`, line 565](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L565) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1242 | Pass | [`RenameCpp20Constraints.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L567) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1243 | Pass | [`RenameCpp20Constraints.cpp`, line 574](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L574) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1244 | Pass | [`RenameCpp20Constraints.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L576) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1245 | Pass | [`RenameCpp20Constraints.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L583) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1246 | Pass | [`RenameCpp20Constraints.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L585) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1247 | Pass | [`RenameCpp20Constraints.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L588) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1248 | Pass | [`RenameCpp20Constraints.cpp`, line 594](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L594) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1249 | Pass | [`RenameCpp20Constraints.cpp`, line 596](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L596) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1250 | Pass | [`RenameCpp20Constraints.cpp`, line 599](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L599) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1251 | Pass | [`RenameCpp20Constraints.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L606) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1252 | Pass | [`RenameCpp20Constraints.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L608) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1253 | Pass | [`RenameCpp20Constraints.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L609) | [R1253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1253.txt) +R1254 | Pass | [`RenameCpp20Constraints.cpp`, line 611](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L611) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1255 | Pass | [`RenameCpp20Constraints.cpp`, line 615](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L615) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1256 | Pass | [`RenameCpp20Constraints.cpp`, line 616](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L616) | [R1256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1256.txt) +R1257 | Pass | [`RenameCpp20Constraints.cpp`, line 623](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L623) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1258 | Pass | [`RenameCpp20Constraints.cpp`, line 625](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L625) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1259 | Pass | [`RenameCpp20Constraints.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L626) | [R1259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1259.txt) +R1260 | Pass | [`RenameCpp20Constraints.cpp`, line 628](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L628) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1261 | Pass | [`RenameCpp20Constraints.cpp`, line 631](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L631) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1262 | Pass | [`RenameCpp20Constraints.cpp`, line 632](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L632) | [R1262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1262.txt) +R1263 | Pass | [`RenameCpp20Constraints.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L639) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1264 | Pass | [`RenameCpp20Constraints.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L641) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1265 | Pass | [`RenameCpp20Constraints.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L642) | [R1265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1265.txt) +R1266 | Pass | [`RenameCpp20Constraints.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L644) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1267 | Pass | [`RenameCpp20Constraints.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L647) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1268 | Pass | [`RenameCpp20Constraints.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L648) | [R1268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1268.txt) +R1269 | Pass | [`RenameCpp20Constraints.cpp`, line 656](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L656) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1270 | Pass | [`RenameCpp20Constraints.cpp`, line 658](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L658) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1271 | Pass | [`RenameCpp20Constraints.cpp`, line 659](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L659) | [R1271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1271.txt) +R1272 | Pass | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1273 | Pass | [`RenameCpp20Constraints.cpp`, line 665](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L665) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1274 | Pass | [`RenameCpp20Constraints.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L666) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1275 | Pass | [`RenameCpp20Constraints.cpp`, line 673](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L673) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1276 | Pass | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1277 | Pass | [`RenameCpp20Constraints.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L676) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1278 | Pass | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1279 | Pass | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1280 | Pass | [`RenameCpp20Constraints.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L682) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1281 | Pass | [`RenameCpp20Constraints.cpp`, line 689](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L689) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1282 | Pass | [`RenameCpp20Constraints.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L691) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1283 | Pass | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1284 | Pass | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1285 | Pass | [`RenameCpp20Constraints.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L697) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1286 | Pass | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1287 | Pass | [`RenameCpp20Constraints.cpp`, line 706](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L706) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1288 | Pass | [`RenameCpp20Constraints.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L708) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1289 | Pass | [`RenameCpp20Constraints.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L709) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1290 | Pass | [`RenameCpp20Constraints.cpp`, line 711](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L711) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1291 | Pass | [`RenameCpp20Constraints.cpp`, line 715](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L715) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1292 | Pass | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1293 | Pass | [`RenameCpp20Constraints.cpp`, line 723](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L723) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1294 | Pass | [`RenameCpp20Constraints.cpp`, line 725](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L725) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1295 | Pass | [`RenameCpp20Constraints.cpp`, line 726](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L726) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1296 | Pass | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1297 | Pass | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1298 | Pass | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1299 | Pass | [`RenameCpp20Constraints.cpp`, line 739](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L739) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1300 | Pass | [`RenameCpp20Constraints.cpp`, line 741](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L741) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1301 | Pass | [`RenameCpp20Constraints.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L742) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1302 | Pass | [`RenameCpp20Constraints.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L744) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1303 | Pass | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1304 | Pass | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1305 | Pass | [`RenameCpp20Constraints.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L756) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1306 | Pass | [`RenameCpp20Constraints.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L758) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1307 | Pass | [`RenameCpp20Constraints.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L759) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1308 | Pass | [`RenameCpp20Constraints.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L761) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1309 | Pass | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1310 | Pass | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1311 | Pass | [`RenameCpp20Constraints.cpp`, line 773](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L773) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1312 | Pass | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1313 | Pass | [`RenameCpp20Constraints.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L776) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1314 | Pass | [`RenameCpp20Constraints.cpp`, line 778](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L778) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1315 | Pass | [`RenameCpp20Constraints.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L781) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1316 | Pass | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1317 | Pass | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1318 | Pass | [`RenameCpp20Constraints.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L791) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1319 | Pass | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1320 | Pass | [`RenameCpp20Constraints.cpp`, line 794](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L794) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1321 | Pass | [`RenameCpp20Constraints.cpp`, line 797](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L797) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1322 | Pass | [`RenameCpp20Constraints.cpp`, line 798](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L798) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1323 | Pass | [`RenameCpp20Constraints.cpp`, line 806](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L806) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1324 | Pass | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1325 | Pass | [`RenameCpp20Constraints.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L809) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1326 | Pass | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1327 | Pass | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1328 | Pass | [`RenameCpp20Constraints.cpp`, line 816](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L816) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1329 | Pass | [`RenameCpp20Constraints.cpp`, line 817](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L817) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1330 | Pass | [`RenameCpp20Constraints.cpp`, line 818](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L818) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1331 | Pass | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1332 | Pass | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1333 | Pass | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1334 | Pass | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1335 | Pass | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1336 | Pass | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1337 | Pass | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1338 | Pass | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1339 | Pass | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1340 | Pass | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1341 | Pass | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1342 | Pass | [`RenameCpp20Constraints.cpp`, line 840](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L840) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1343 | Pass | [`RenameCpp20Constraints.cpp`, line 841](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L841) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1344 | Pass | [`RenameCpp20Constraints.cpp`, line 842](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L842) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1345 | Pass | [`RenameCpp20Constraints.cpp`, line 843](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L843) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1346 | Pass | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1347 | Pass | [`RenameCpp20Constraints.cpp`, line 847](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L847) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1348 | Pass | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1349 | Pass | [`RenameCpp20Constraints.cpp`, line 853](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L853) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1350 | Pass | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1351 | Pass | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1352 | Pass | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1353 | Pass | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1354 | Pass | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1355 | Pass | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1356 | Pass | [`RenameCpp20Constraints.cpp`, line 864](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L864) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1357 | Pass | [`RenameCpp20Constraints.cpp`, line 865](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L865) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1358 | Pass | [`RenameCpp20Constraints.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L866) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1359 | Pass | [`RenameCpp20Constraints.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L867) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1360 | Pass | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1361 | Pass | [`RenameCpp20Constraints.cpp`, line 871](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L871) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1362 | Pass | [`RenameCpp20Constraints.cpp`, line 877](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L877) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1363 | Pass | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1364 | Pass | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1365 | Pass | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1366 | Pass | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1367 | Pass | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1368 | Pass | [`RenameCpp20Constraints.cpp`, line 888](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L888) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1369 | Pass | [`RenameCpp20Constraints.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L889) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1370 | Pass | [`RenameCpp20Constraints.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L890) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1371 | Pass | [`RenameCpp20Constraints.cpp`, line 891](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L891) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1372 | Pass | [`RenameCpp20Constraints.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L892) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1373 | Pass | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1374 | Pass | [`RenameCpp20Constraints.cpp`, line 896](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L896) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1375 | Pass | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1376 | Pass | [`RenameCpp20Constraints.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L902) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1377 | Pass | [`RenameCpp20Constraints.cpp`, line 903](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L903) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1378 | Pass | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1379 | Pass | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1380 | Pass | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1381 | Pass | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1382 | Pass | [`RenameCpp20Constraints.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L912) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1383 | Pass | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1384 | Pass | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1385 | Pass | [`RenameCpp20Constraints.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L915) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1386 | Pass | [`RenameCpp20Constraints.cpp`, line 916](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L916) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1387 | Pass | [`RenameCpp20Constraints.cpp`, line 917](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L917) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1388 | Pass | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1389 | Pass | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1390 | Pass | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1391 | Pass | [`RenameCpp20Constraints.cpp`, line 927](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L927) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1392 | Pass | [`RenameCpp20Constraints.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L929) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1393 | Pass | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1394 | Pass | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1395 | Pass | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1396 | Pass | [`RenameCpp20Constraints.cpp`, line 936](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L936) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1397 | Pass | [`RenameCpp20Constraints.cpp`, line 937](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L937) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1398 | Pass | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1399 | Pass | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1400 | Pass | [`RenameCpp20Constraints.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L940) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1401 | Pass | [`RenameCpp20Constraints.cpp`, line 941](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L941) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1402 | Pass | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1403 | Pass | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1404 | Pass | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1405 | Pass | [`RenameCpp20Constraints.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L952) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1406 | Pass | [`RenameCpp20Constraints.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L954) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1407 | Pass | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1408 | Pass | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1409 | Pass | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1410 | Pass | [`RenameCpp20Constraints.cpp`, line 962](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L962) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1411 | Pass | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1412 | Pass | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1413 | Pass | [`RenameCpp20Constraints.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L965) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1414 | Pass | [`RenameCpp20Constraints.cpp`, line 966](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L966) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1415 | Pass | [`RenameCpp20Constraints.cpp`, line 967](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L967) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1416 | Pass | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1417 | Pass | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1418 | Pass | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1419 | Pass | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1420 | Pass | [`RenameCpp20Constraints.cpp`, line 979](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L979) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1421 | Pass | [`RenameCpp20Constraints.cpp`, line 980](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L980) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1422 | Pass | [`RenameCpp20Constraints.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L981) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1423 | Pass | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1424 | Pass | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1425 | Pass | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1426 | Pass | [`RenameCpp20Constraints.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L988) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1427 | Pass | [`RenameCpp20Constraints.cpp`, line 989](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L989) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1428 | Pass | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1429 | Pass | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1430 | Pass | [`RenameCpp20Constraints.cpp`, line 994](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L994) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1431 | Pass | [`RenameCpp20Constraints.cpp`, line 995](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L995) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1432 | Pass | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1433 | Pass | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1434 | Pass | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1435 | Pass | [`RenameCpp20Constraints.cpp`, line 1004](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1004) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1436 | Pass | [`RenameCpp20Constraints.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1005) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1437 | Pass | [`RenameCpp20Constraints.cpp`, line 1006](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1006) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1438 | Pass | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1439 | Pass | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1440 | Pass | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1441 | Pass | [`RenameCpp20Constraints.cpp`, line 1013](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1013) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1442 | Pass | [`RenameCpp20Constraints.cpp`, line 1014](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1014) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1443 | Pass | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1444 | Pass | [`RenameCpp20Constraints.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1018) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1445 | Pass | [`RenameCpp20Constraints.cpp`, line 1019](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1019) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1446 | Pass | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1447 | Pass | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1448 | Pass | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1449 | Pass | [`RenameCpp20Constraints.cpp`, line 1029](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1029) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1450 | Pass | [`RenameCpp20Constraints.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1030) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1451 | Pass | [`RenameCpp20Constraints.cpp`, line 1031](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1031) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1452 | Pass | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1453 | Pass | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1454 | Pass | [`RenameCpp20Constraints.cpp`, line 1038](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1038) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1455 | Pass | [`RenameCpp20Constraints.cpp`, line 1039](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1039) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1456 | Pass | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1457 | Pass | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1458 | Pass | [`RenameCpp20Constraints.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1042) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1459 | Pass | [`RenameCpp20Constraints.cpp`, line 1045](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1045) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1460 | Pass | [`RenameCpp20Constraints.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1046) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1461 | Pass | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1462 | Pass | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1463 | Pass | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1464 | Pass | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1465 | Pass | [`RenameCpp20Constraints.cpp`, line 1056](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1056) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1466 | Pass | [`RenameCpp20Constraints.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1057) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1467 | Pass | [`RenameCpp20Constraints.cpp`, line 1058](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1058) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1468 | Pass | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1469 | Pass | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1470 | Pass | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1471 | Pass | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1472 | Pass | [`RenameCpp20Constraints.cpp`, line 1066](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1066) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1473 | Pass | [`RenameCpp20Constraints.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1067) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1474 | Pass | [`RenameCpp20Constraints.cpp`, line 1070](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1070) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1475 | Pass | [`RenameCpp20Constraints.cpp`, line 1071](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1071) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1476 | Pass | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1477 | Pass | [`RenameCpp20Constraints.cpp`, line 1077](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1077) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1478 | Pass | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1479 | Pass | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1480 | Pass | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1481 | Pass | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1482 | Pass | [`RenameCpp20Constraints.cpp`, line 1083](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1083) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1483 | Pass | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1484 | Pass | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1485 | Pass | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1486 | Pass | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1487 | Pass | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1488 | Pass | [`RenameCpp20Constraints.cpp`, line 1092](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1092) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1489 | Pass | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1490 | Pass | [`RenameCpp20Constraints.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1096) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1491 | Pass | [`RenameCpp20Constraints.cpp`, line 1119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1119) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1492 | Pass | [`RenameCpp20Constraints.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1122) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1493 | Pass | [`RenameCpp20Constraints.cpp`, line 1126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1126) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1494 | Pass | [`RenameCpp20Constraints.cpp`, line 1132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1132) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1495 | Pass | [`RenameCpp20Constraints.cpp`, line 1135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1135) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1496 | Pass | [`RenameCpp20Constraints.cpp`, line 1139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1139) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1497 | Pass | [`RenameCpp20Constraints.cpp`, line 1145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1145) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1498 | Pass | [`RenameCpp20Constraints.cpp`, line 1148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1148) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1499 | Pass | [`RenameCpp20Constraints.cpp`, line 1152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1152) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1500 | Pass | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1501 | Pass | [`RenameCpp20Constraints.cpp`, line 1163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1163) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1502 | Pass | [`RenameCpp20Constraints.cpp`, line 1167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1167) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1503 | Pass | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1504 | Pass | [`RenameCpp20Constraints.cpp`, line 1176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1176) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1505 | Pass | [`RenameCpp20Constraints.cpp`, line 1180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1180) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1506 | Pass | [`RenameCpp20Constraints.cpp`, line 1186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1186) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1507 | Pass | [`RenameCpp20Constraints.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1189) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1508 | Pass | [`RenameCpp20Constraints.cpp`, line 1193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1193) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1509 | Pass | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1510 | Pass | [`RenameCpp20Constraints.cpp`, line 1204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1204) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1511 | Pass | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1512 | Pass | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1513 | Pass | [`RenameCpp20Constraints.cpp`, line 1221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1221) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1514 | Pass | [`RenameCpp20Constraints.cpp`, line 1224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1224) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1515 | Pass | [`RenameCpp20Constraints.cpp`, line 1233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1233) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1516 | Pass | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1517 | Pass | [`RenameCpp20Constraints.cpp`, line 1243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1243) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1518 | Pass | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1519 | Pass | [`RenameCpp20Constraints.cpp`, line 1253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1253) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1520 | Pass | [`RenameCpp20Constraints.cpp`, line 1256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1256) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) + +## Reorder Parameters +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RP1 | (deprecated) | [`ReorderParameters.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L12) | [RP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP1.txt) +RP2 | Failure (creates invalid code in macro argument) [RSCPP-21210](https://youtrack.jetbrains.com/issue/RSCPP-21210) | [`ReorderParameters.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L18) | [RP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP2.txt) +RP3 | (deprecated) | [`ReorderParameters.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L53) | [RP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP3.txt) +RP4 | (deprecated) | [`ReorderParameters.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L57) | [RP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP4.txt) +RP5 | Pass | [`ReorderParameters.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L63) | [RP5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP5.txt) +RP6 | Pass | [`ReorderParameters.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L78) | [RP6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP6.txt) +RP7 | Pass | [`ReorderParameters.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L95) | [RP7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP7.txt) +RP8 | Pass | [`ReorderParameters.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L112) | [RP8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP8.txt) +RP9 | (deprecated) | [`ReorderParameters.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L129) | [RP9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP9.txt) + +## Replace auto With Type +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RAWT1 | Pass | [`ReplaceAutoWithType.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L19) | [RAWT1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT1.txt) +RAWT2 | Pass | [`ReplaceAutoWithType.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L27) | [RAWT2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT2.txt) +RAWT3 | Pass | [`ReplaceAutoWithType.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L35) | [RAWT3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT3.txt) +RAWT4 | Pass | [`ReplaceAutoWithType.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L44) | [RAWT4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT4.txt) +RAWT5 | Pass | [`ReplaceAutoWithType.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L59) | [RAWT5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT5.txt) +RAWT6 | Pass | [`ReplaceAutoWithType.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L67) | [RAWT6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT6.txt) +RAWT7 | Pass | [`ReplaceAutoWithType.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L75) | [RAWT7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT7.txt) +RAWT8 | Pass | [`ReplaceAutoWithType.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L84) | [RAWT8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT8.txt) +RAWT9 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L99) | [RAWT9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT9.txt) +RAWT10 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L107) | [RAWT10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT10.txt) +RAWT11 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L115) | [RAWT11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT11.txt) +RAWT12 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L124) | [RAWT12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT12.txt) +RAWT13 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L139) | [RAWT13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT13.txt) +RAWT14 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L147) | [RAWT14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT14.txt) +RAWT15 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L155) | [RAWT15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT15.txt) +RAWT16 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L164) | [RAWT16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT16.txt) +RAWT17 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L179) | [RAWT17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT17.txt) +RAWT18 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L187) | [RAWT18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT18.txt) +RAWT19 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L195) | [RAWT19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT19.txt) +RAWT20 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L203) | [RAWT20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT20.txt) +RAWT21 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L217) | [RAWT21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT21.txt) +RAWT22 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L225) | [RAWT22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT22.txt) +RAWT23 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L240) | [RAWT23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT23.txt) +RAWT24 | Failure (exposes internal type) [RSCPP-35266](https://youtrack.jetbrains.com/issue/RSCPP-35266/Specify-type-explicitly-for-iterators-returned-by-stdmap-expands-too-many-typedefs) | [`ReplaceAutoWithType.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L248) | [RAWT24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT24.txt) +RAWT25 | Pass | [`ReplaceAutoWithType.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L262) | [RAWT25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT25.txt) +RAWT26 | Pass | [`ReplaceAutoWithType.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L270) | [RAWT26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT26.txt) +RAWT27 | Pass | [`ReplaceAutoWithType.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L278) | [RAWT27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT27.txt) +RAWT28 | Pass | [`ReplaceAutoWithType.cpp`, line 287](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L287) | [RAWT28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT28.txt) +RAWT29 | Pass | [`ReplaceAutoWithType.cpp`, line 303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L303) | [RAWT29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT29.txt) +RAWT30 | Pass | [`ReplaceAutoWithType.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceAutoWithType.cpp#L307) | [RAWT30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAWT30.txt) + +## Replace If With Ternary +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RIT1 | Pass | [`ReplaceIfWithTernary.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L18) | [RIT1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT1.txt) +RIT2 | Failure (not available) [RSCPP-15800](https://youtrack.jetbrains.com/issue/RSCPP-15800) | [`ReplaceIfWithTernary.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L29) | [RIT2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT2.txt) +RIT3 | Failure (not available) [RSCPP-15800](https://youtrack.jetbrains.com/issue/RSCPP-15800) | [`ReplaceIfWithTernary.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L40) | [RIT3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT3.txt) +RIT4 | Failure (not available) [RSCPP-15800](https://youtrack.jetbrains.com/issue/RSCPP-15800) | [`ReplaceIfWithTernary.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L55) | [RIT4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT4.txt) +RIT5 | Pass | [`ReplaceIfWithTernary.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L75) | [RIT5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT5.txt) +RIT6 | Pass | [`ReplaceIfWithTernary.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L88) | [RIT6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT6.txt) +RIT7 | Pass | [`ReplaceIfWithTernary.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L100) | [RIT7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT7.txt) +RIT8 | Pass | [`ReplaceIfWithTernary.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L120) | [RIT8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT8.txt) +RIT9 | Pass | [`ReplaceIfWithTernary.cpp`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceIfWithTernary.cpp#L144) | [RIT9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RIT9.txt) + +## Replace NULL/0 With nullptr +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RZNP1 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L10) | [RZNP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP1.txt) +RZNP2 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L12) | [RZNP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP2.txt) +RZNP3 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L14) | [RZNP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP3.txt) +RZNP4 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L16) | [RZNP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP4.txt) +RZNP5 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L18) | [RZNP5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP5.txt) +RZNP6 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L20) | [RZNP6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP6.txt) +RZNP7 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L25) | [RZNP7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP7.txt) +RZNP8 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L27) | [RZNP8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP8.txt) +RZNP9 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L29) | [RZNP9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP9.txt) +RZNP10 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 31](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L31) | [RZNP10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP10.txt) +RZNP11 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L33) | [RZNP11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP11.txt) +RZNP12 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L35) | [RZNP12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP12.txt) +RZNP13 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L83) | [RZNP13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP13.txt) +RZNP14 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L85) | [RZNP14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP14.txt) +RZNP15 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L87) | [RZNP15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP15.txt) +RZNP16 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L89) | [RZNP16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP16.txt) +RZNP17 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L91) | [RZNP17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP17.txt) +RZNP18 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L93) | [RZNP18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP18.txt) +RZNP19 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L106) | [RZNP19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP19.txt) +RZNP20 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L108) | [RZNP20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP20.txt) +RZNP21 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L110) | [RZNP21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP21.txt) +RZNP22 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L112) | [RZNP22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP22.txt) +RZNP23 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L114) | [RZNP23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP23.txt) +RZNP24 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L116) | [RZNP24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP24.txt) +RZNP25 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L118) | [RZNP25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP25.txt) +RZNP26 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L120) | [RZNP26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP26.txt) +RZNP27 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 142](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L142) | [RZNP27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP27.txt) +RZNP28 | Pass | [`ReplaceNullZeroWithNullPtr.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceNullZeroWithNullPtr.cpp#L146) | [RZNP28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RZNP28.txt) + +## Replace String Literal With Raw String Literal +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RAW1 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L8) | [RAW1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW1.txt) +RAW2 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L11) | [RAW2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW2.txt) +RAW3 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L14) | [RAW3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW3.txt) +RAW4 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L17) | [RAW4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW4.txt) +RAW5 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L20) | [RAW5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW5.txt) +RAW6 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L23) | [RAW6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW6.txt) +RAW7 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L26) | [RAW7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW7.txt) +RAW8 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L29) | [RAW8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW8.txt) +RAW9 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L32) | [RAW9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW9.txt) +RAW10 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L35) | [RAW10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW10.txt) +RAW11 | Failure (generates invalid code) [RSCPP-35267](https://youtrack.jetbrains.com/issue/RSCPP-35267/Convert-to-raw-string-literal-creates-invalid-code-when-string-contains-delimiter) | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L38) | [RAW11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW11.txt) +RAW12 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L41) | [RAW12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW12.txt) + +## Replace Ternary With If +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RTI1 | Pass | [`ReplaceTernaryWithIf.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L17) | [RTI1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI1.txt) +RTI2 | Pass | [`ReplaceTernaryWithIf.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L22) | [RTI2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI2.txt) +RTI3 | Pass | [`ReplaceTernaryWithIf.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L27) | [RTI3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI3.txt) +RTI4 | Pass | [`ReplaceTernaryWithIf.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L36) | [RTI4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI4.txt) +RTI5 | Pass | [`ReplaceTernaryWithIf.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L41) | [RTI5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI5.txt) +RTI6 | Pass | [`ReplaceTernaryWithIf.cpp`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L45) | [RTI6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI6.txt) +RTI7 | Pass | [`ReplaceTernaryWithIf.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L57) | [RTI7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI7.txt) +RTI8 | Pass | [`ReplaceTernaryWithIf.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L61) | [RTI8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI8.txt) +RTI9 | Pass | [`ReplaceTernaryWithIf.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L65) | [RTI9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI9.txt) +RTI10 | Pass | [`ReplaceTernaryWithIf.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L81) | [RTI10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI10.txt) +RTI11 | Pass | [`ReplaceTernaryWithIf.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTernaryWithIf.cpp#L87) | [RTI11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTI11.txt) + +## Replace typedef With Type Alias +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RTDTA1 | Pass | [`ReplaceTypedefWithTypeAlias.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypedefWithTypeAlias.cpp#L24) | [RTDTA1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTDTA1.txt) +RTDTA2 | Pass | [`ReplaceTypedefWithTypeAlias.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypedefWithTypeAlias.cpp#L26) | [RTDTA2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTDTA2.txt) +RTDTA3 | Pass | [`ReplaceTypedefWithTypeAlias.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypedefWithTypeAlias.cpp#L28) | [RTDTA3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTDTA3.txt) +RTDTA4 | Pass | [`ReplaceTypedefWithTypeAlias.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypedefWithTypeAlias.cpp#L30) | [RTDTA4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTDTA4.txt) +RTDTA5 | Pass | [`ReplaceTypedefWithTypeAlias.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypedefWithTypeAlias.cpp#L32) | [RTDTA5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTDTA5.txt) +RTDTA6 | Pass | [`ReplaceTypedefWithTypeAlias.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypedefWithTypeAlias.cpp#L51) | [RTDTA6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTDTA6.txt) +RTDTA7 | Pass | [`ReplaceTypedefWithTypeAlias.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypedefWithTypeAlias.cpp#L59) | [RTDTA7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTDTA7.txt) + +## Replace Type With auto +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RTWA1 | Pass | [`ReplaceTypeWithAuto.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L17) | [RTWA1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA1.txt) +RTWA2 | Pass | [`ReplaceTypeWithAuto.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L25) | [RTWA2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA2.txt) +RTWA3 | Pass | [`ReplaceTypeWithAuto.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L33) | [RTWA3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA3.txt) +RTWA4 | Pass | [`ReplaceTypeWithAuto.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L42) | [RTWA4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA4.txt) +RTWA5 | Pass | [`ReplaceTypeWithAuto.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L57) | [RTWA5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA5.txt) +RTWA6 | Pass | [`ReplaceTypeWithAuto.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L65) | [RTWA6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA6.txt) +RTWA7 | Pass | [`ReplaceTypeWithAuto.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L73) | [RTWA7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA7.txt) +RTWA8 | Pass | [`ReplaceTypeWithAuto.cpp`, line 82](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L82) | [RTWA8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA8.txt) +RTWA9 | Pass | [`ReplaceTypeWithAuto.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L97) | [RTWA9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA9.txt) +RTWA10 | Pass | [`ReplaceTypeWithAuto.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L105) | [RTWA10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA10.txt) +RTWA11 | Pass | [`ReplaceTypeWithAuto.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L113) | [RTWA11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA11.txt) +RTWA12 | Pass | [`ReplaceTypeWithAuto.cpp`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L122) | [RTWA12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA12.txt) +RTWA13 | Pass | [`ReplaceTypeWithAuto.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L137) | [RTWA13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA13.txt) +RTWA14 | Pass | [`ReplaceTypeWithAuto.cpp`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L145) | [RTWA14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA14.txt) +RTWA15 | Pass | [`ReplaceTypeWithAuto.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L153) | [RTWA15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA15.txt) +RTWA16 | Pass | [`ReplaceTypeWithAuto.cpp`, line 162](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L162) | [RTWA16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA16.txt) +RTWA17 | Pass | [`ReplaceTypeWithAuto.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L177) | [RTWA17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA17.txt) +RTWA18 | Pass | [`ReplaceTypeWithAuto.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L185) | [RTWA18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA18.txt) +RTWA19 | Pass | [`ReplaceTypeWithAuto.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L193) | [RTWA19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA19.txt) +RTWA20 | Pass | [`ReplaceTypeWithAuto.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L201) | [RTWA20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA20.txt) +RTWA21 | Pass | [`ReplaceTypeWithAuto.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L215) | [RTWA21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA21.txt) +RTWA22 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L222) | [RTWA22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA22.txt) +RTWA23 | Pass | [`ReplaceTypeWithAuto.cpp`, line 225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L225) | [RTWA23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA23.txt) +RTWA24 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L233) | [RTWA24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA24.txt) +RTWA25 | Pass | [`ReplaceTypeWithAuto.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L242) | [RTWA25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA25.txt) +RTWA26 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L249) | [RTWA26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA26.txt) +RTWA27 | Pass | [`ReplaceTypeWithAuto.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L252) | [RTWA27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA27.txt) +RTWA28 | (deprecated) | [`ReplaceTypeWithAuto.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L259) | [RTWA28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA28.txt) +RTWA29 | Pass | [`ReplaceTypeWithAuto.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L268) | [RTWA29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA29.txt) +RTWA30 | Pass | [`ReplaceTypeWithAuto.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L276) | [RTWA30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA30.txt) +RTWA31 | Pass | [`ReplaceTypeWithAuto.cpp`, line 284](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L284) | [RTWA31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA31.txt) +RTWA32 | Pass | [`ReplaceTypeWithAuto.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceTypeWithAuto.cpp#L293) | [RTWA32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RTWA32.txt) + +## Reverse Conditional +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RC1 | Pass | [`ReverseConditional.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L18) | [RC1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC1.txt) +RC2 | Pass | [`ReverseConditional.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L21) | [RC2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC2.txt) +RC3 | Pass | [`ReverseConditional.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L24) | [RC3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC3.txt) +RC4 | Pass | [`ReverseConditional.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L27) | [RC4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC4.txt) +RC5 | Pass | [`ReverseConditional.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L52) | [RC5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC5.txt) +RC6 | Pass | [`ReverseConditional.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L65) | [RC6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC6.txt) +RC7 | Pass | [`ReverseConditional.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L78) | [RC7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC7.txt) +RC8 | Pass | [`ReverseConditional.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReverseConditional.cpp#L91) | [RC8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RC8.txt) + +## Split Initialization From Declaration +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +SID1 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L24) | [SID1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID1.txt) +SID2 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L28) | [SID2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID2.txt) +SID3 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L32) | [SID3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID3.txt) +SID4 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L36) | [SID4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID4.txt) +SID5 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L40) | [SID5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID5.txt) +SID6 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L44) | [SID6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID6.txt) +SID7 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L50) | [SID7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID7.txt) +SID8 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 54](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L54) | [SID8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID8.txt) +SID9 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L58) | [SID9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID9.txt) +SID10 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L62) | [SID10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID10.txt) +SID11 | Pass | [`SplitInitializationFromDeclaration.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitInitializationFromDeclaration.cpp#L68) | [SID11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SID11.txt) + +## Split Multi-Variable Declaration +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +SMVD1 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L44) | [SMVD1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD1.txt) +SMVD2 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L52) | [SMVD2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD2.txt) +SMVD3 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L59) | [SMVD3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD3.txt) +SMVD4 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L64) | [SMVD4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD4.txt) +SMVD5 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L69) | [SMVD5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD5.txt) +SMVD6 | Failure (not available) [RSCPP-15804](https://youtrack.jetbrains.com/issue/RSCPP-15804) | [`SplitMultiVariableDeclaration.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L74) | [SMVD6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD6.txt) +SMVD7 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L77) | [SMVD7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD7.txt) +SMVD8 | Failure (not available) [RSCPP-15804](https://youtrack.jetbrains.com/issue/RSCPP-15804) | [`SplitMultiVariableDeclaration.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L80) | [SMVD8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD8.txt) +SMVD9 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L83) | [SMVD9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD9.txt) +SMVD10 | Failure (not available) [RSCPP-15804](https://youtrack.jetbrains.com/issue/RSCPP-15804) | [`SplitMultiVariableDeclaration.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L87) | [SMVD10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD10.txt) +SMVD11 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L90) | [SMVD11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD11.txt) +SMVD12 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L98) | [SMVD12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD12.txt) +SMVD13 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L101) | [SMVD13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD13.txt) +SMVD14 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L105) | [SMVD14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD14.txt) +SMVD15 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L111) | [SMVD15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD15.txt) +SMVD16 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L116) | [SMVD16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD16.txt) +SMVD17 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L122) | [SMVD17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD17.txt) +SMVD18 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L127) | [SMVD18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD18.txt) +SMVD19 | Pass | [`SplitMultiVariableDeclaration.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/SplitMultiVariableDeclaration.cpp#L132) | [SMVD19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/SMVD19.txt) diff --git a/results/annotated/VisualAssistXResults.md b/results/annotated/VisualAssistXResults.md new file mode 100644 index 0000000..2259fb5 --- /dev/null +++ b/results/annotated/VisualAssistXResults.md @@ -0,0 +1,1708 @@ +# Visual AssistX + +Home: [Visual AssistX](http://www.wholetomato.com/) + +Version: 10.9.2508.0 + +Notes: + +* Visual AssistX performs Create Method Stub with Create Implementation From Usage. +* Visual AssistX provides the following [refactorings](https://www.wholetomato.com/features/feature-refactoring): + * Change Signature + * Convert Between Pointer and Instance + * Encapsulate Field + * Extract Method + * Introduce Variable + * Move Implementation to Header File + * Move Implementation to Source File + * Move Method Implementations to Source File + * Move Selection to New File + * Rename + * Rename Files + * Simplify Instance Declaration +* Visual AssistX provides the following refactorings Under [Code Generation](https://www.wholetomato.com/features/feature-code-generation) + * Add Forward Declaration + * Add Member + * Add Missing Case Statements + * Add Similar Member + * Add Using Directive + * Add Include Directive + * Add/Remove Braces + * Create Declaration + * Create File + * Create from Usage + * Create Implementation + * Create Method Implementations + * Document Method + * Implement Interface/Virtual Methods +* When double clicking a list item in the Rename selection dialog, + it should put the selected line at the center of the editor window + if it repositions the scroll bar +* **Extract Method** gives no feedback on names [83040](http://forums.wholetomato.com/forum/topic.asp?TOPIC_ID=11890) +* File should not be selected when no items selected [83859](http://forums.wholetomato.com/forum/topic.asp?TOPIC_ID=11902) +* **Change Signature** doesn't adjust ptr to member [83184](http://forums.wholetomato.com/forum/topic.asp?TOPIC_ID=11913), [83185](http://forums.wholetomato.com/forum/topic.asp?TOPIC_ID=11913) +* VAX colors raw string literal as a type [65734](http://forums.wholetomato.com/forum/topic.asp?TOPIC_ID=11975) +* **Create From Declaration** unavailable for operator== [84291](http://forums.wholetomato.com/forum/topic.asp?TOPIC_ID=11981) +* **Move Implementation to Source File** fails with C11 [79737](http://forums.wholetomato.com/forum/topic.asp?TOPIC_ID=12074) + +
+ +## Change Signature +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +CS1 | Failure (not available) | [`ChangeSignature.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L8) | [CS1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS1.txt) +CS2 | Failure (not available) | [`ChangeSignature.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L9) | [CS2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS2.txt) +CS3 | Failure (not available) | [`ChangeSignature.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L10) | [CS3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS3.txt) +CS4 | Failure (not available) | [`ChangeSignature.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L11) | [CS4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS4.txt) +CS5 | Failure (not available) | [`ChangeSignature.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L12) | [CS5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS5.txt) +CS6 | Failure (not available) | [`ChangeSignature.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L18) | [CS6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS6.txt) +CS7 | Pass | [`ChangeSignature.h`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L26) | [CS7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS7.txt) +CS8 | Pass | [`ChangeSignature.h`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L27) | [CS8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS8.txt) +CS9 | Pass | [`ChangeSignature.h`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L28) | [CS9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS9.txt) +CS10 | Pass | [`ChangeSignature.h`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L29) | [CS10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS10.txt) +CS11 | Pass | [`ChangeSignature.h`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L30) | [CS11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS11.txt) +CS12 | Pass | [`ChangeSignature.h`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L36) | [CS12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS12.txt) +CS13 | Pass | [`ChangeSignature.h`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L37) | [CS13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS13.txt) +CS14 | Pass | [`ChangeSignature.h`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L38) | [CS14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS14.txt) +CS15 | Pass | [`ChangeSignature.h`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L39) | [CS15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS15.txt) +CS16 | Pass | [`ChangeSignature.h`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L40) | [CS16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS16.txt) +CS17 | Pass | [`ChangeSignature.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L46) | [CS17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS17.txt) +CS18 | Pass | [`ChangeSignature.h`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L47) | [CS18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS18.txt) +CS19 | Pass | [`ChangeSignature.h`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L48) | [CS19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS19.txt) +CS20 | Pass | [`ChangeSignature.h`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L49) | [CS20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS20.txt) +CS21 | Pass | [`ChangeSignature.cpp`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L9) | [CS21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS21.txt) +CS22 | Pass | [`ChangeSignature.cpp`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L10) | [CS22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS22.txt) +CS23 | Pass | [`ChangeSignature.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L11) | [CS23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS23.txt) +CS24 | Pass | [`ChangeSignature.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L12) | [CS24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS24.txt) +CS25 | Pass | [`ChangeSignature.cpp`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L13) | [CS25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS25.txt) +CS26 | Pass | [`ChangeSignature.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L19) | [CS26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS26.txt) +CS27 | Pass | [`ChangeSignature.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L20) | [CS27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS27.txt) +CS28 | Pass | [`ChangeSignature.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L21) | [CS28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS28.txt) +CS29 | Pass | [`ChangeSignature.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L22) | [CS29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS29.txt) +CS30 | Pass | [`ChangeSignature.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L23) | [CS30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS30.txt) +CS31 | Failure (not available) | [`ChangeSignature.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L34) | [CS31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS31.txt) +CS32 | Failure (not available) | [`ChangeSignature.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L35) | [CS32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS32.txt) +CS33 | Failure (not available) | [`ChangeSignature.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L36) | [CS33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS33.txt) +CS34 | Failure (not available) | [`ChangeSignature.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L37) | [CS34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS34.txt) +CS35 | Failure (not available) | [`ChangeSignature.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L38) | [CS35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS35.txt) +CS36 | Pass | [`ChangeSignature.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L44) | [CS36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS36.txt) +CS37 | Pass | [`ChangeSignature.cpp`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L45) | [CS37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS37.txt) +CS38 | Pass | [`ChangeSignature.cpp`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L46) | [CS38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS38.txt) +CS39 | Pass | [`ChangeSignature.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L47) | [CS39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS39.txt) +CS40 | Pass | [`ChangeSignature.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L48) | [CS40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS40.txt) +CS41 | Failure (not available) | [`ChangeSignature.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L66) | [CS41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS41.txt) +CS42 | Failure (not available) | [`ChangeSignature.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L67) | [CS42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS42.txt) +CS43 | Failure (not available) | [`ChangeSignature.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L68) | [CS43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS43.txt) +CS44 | Failure (not available) | [`ChangeSignature.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L69) | [CS44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS44.txt) +CS45 | Failure (not available) | [`ChangeSignature.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L70) | [CS45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS45.txt) + +## Extract Function +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EXF1 | Failure (creates invalid code) | [`ExtractFunction.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L11) | [EXF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF1.txt) +EXF2 | Pass | [`ExtractFunction.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L14) | [EXF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF2.txt) +EXF3 | Failure (changes meaning of code) | [`ExtractFunction.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L17) | [EXF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF3.txt) +EXF4 | Pass | [`ExtractFunction.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L20) | [EXF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF4.txt) +EXF5 | Pass | [`ExtractFunction.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L23) | [EXF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF5.txt) +EXF6 | Pass | [`ExtractFunction.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L26) | [EXF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF6.txt) +EXF7 | Failure (changes meaning of code) | [`ExtractFunction.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L30) | [EXF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF7.txt) +EXF8 | Pass | [`ExtractFunction.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L33) | [EXF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF8.txt) +EXF9 | Failure (changes meaning of code) | [`ExtractFunction.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L36) | [EXF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF9.txt) +EXF10 | Pass | [`ExtractFunction.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L39) | [EXF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF10.txt) +EXF11 | Pass | [`ExtractFunction.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L42) | [EXF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF11.txt) +EXF12 | Failure (creates invalid code) | [`ExtractFunction.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L60) | [EXF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF12.txt) +EXF13 | Failure (creates invalid code) | [`ExtractFunction.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L76) | [EXF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF13.txt) +EXF14 | Failure (creates invalid code) | [`ExtractFunction.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L113) | [EXF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF14.txt) +EXF15 | Failure (reads uninitialized data) | [`ExtractFunction.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L129) | [EXF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF15.txt) +EXF16 | Failure (creates invalid code) | [`ExtractFunction.cpp`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L144) | [EXF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF16.txt) +EXF17 | Failure (reads uninitialized data) | [`ExtractFunction.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L160) | [EXF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF17.txt) +EXF18 | Failure (creates invalid code) | [`ExtractFunction.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L186) | [EXF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF18.txt) +EXF19 | Failure (changes meaning of code) | [`ExtractFunction2.c`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction2.c#L9) | [EXF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF19.txt) + +## Extract Method +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EM1 | Pass | [`ExtractMethod.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L19) | [EM1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM1.txt) +EM2 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L26) | [EM2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM2.txt) +EM3 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L38) | [EM3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM3.txt) +EM4 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L58) | [EM4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM4.txt) +EM5 | Pass (reads uninitialized memory) | [`ExtractMethod.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L74) | [EM5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM5.txt) +EM6 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L75) | [EM6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM6.txt) +EM7 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L90) | [EM7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM7.txt) +EM8 | Pass (reads uninitialized memory) | [`ExtractMethod.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L106) | [EM8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM8.txt) +EM9 | Pass | [`ExtractMethod.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L124) | [EM9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM9.txt) +EM10 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L134) | [EM10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM10.txt) +EM11 | Pass | [`ExtractMethod.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L155) | [EM11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM11.txt) +EM12 | Pass | [`ExtractMethod.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L170) | [EM12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM12.txt) +EM13 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L185) | [EM13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM13.txt) +EM14 | Pass | [`ExtractMethod.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L201) | [EM14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM14.txt) +EM15 | Pass | [`ExtractMethod.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L232) | [EM15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM15.txt) +EM16 | Pass | [`ExtractMethod.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L241) | [EM16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM16.txt) +EM17 | Pass | [`ExtractMethod.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L261) | [EM17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM17.txt) +EM18 | Pass | [`ExtractMethod.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L277) | [EM18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM18.txt) +EM19 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L292) | [EM19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM19.txt) +EM20 | Pass | [`ExtractMethod.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L308) | [EM20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM20.txt) +EM21 | Failure (changes meaning of code) | [`ExtractMethod.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L326) | [EM21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM21.txt) + +## Move Implementation to Source File +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +MISF1 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L6) | [MISF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF1.txt) +MISF2 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L14) | [MISF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF2.txt) +MISF3 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L19) | [MISF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF3.txt) +MISF4 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L24) | [MISF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF4.txt) +MISF5 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L30) | [MISF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF5.txt) +MISF6 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L46) | [MISF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF6.txt) +MISF7 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L56) | [MISF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF7.txt) +MISF8 | Pass | [`MoveImplementationToSourceFile.h`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L61) | [MISF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF8.txt) +MISF9 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L64) | [MISF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF9.txt) +MISF10 | Pass | [`MoveImplementationToSourceFile.h`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L69) | [MISF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF10.txt) +MISF11 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L72) | [MISF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF11.txt) +MISF12 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L79) | [MISF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF12.txt) +MISF13 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L84) | [MISF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF13.txt) +MISF14 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L89) | [MISF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF14.txt) +MISF15 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L98) | [MISF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF15.txt) +MISF16 | Failure (not available) | [`MoveImplementationToSourceFile.h`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L104) | [MISF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF16.txt) +MISF17 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L117) | [MISF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF17.txt) +MISF18 | Pass | [`MoveImplementationToSourceFile.h`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L122) | [MISF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF18.txt) +MISF19 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L125) | [MISF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF19.txt) +MISF20 | Pass | [`MoveImplementationToSourceFile.h`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L130) | [MISF20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF20.txt) +MISF21 | Pass | [`MoveImplementationToSourceFile.h`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L133) | [MISF21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF21.txt) +MISF22 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 140](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L140) | [MISF22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF22.txt) +MISF23 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L145) | [MISF23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF23.txt) +MISF24 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L150) | [MISF24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF24.txt) +MISF25 | Failure (loses namespace qualifier) | [`MoveImplementationToSourceFile.h`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L159) | [MISF25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF25.txt) +MISF26 | Failure (not available) | [`MoveImplementationToSourceFile.h`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L165) | [MISF26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF26.txt) + +## Rename + +**Rename** can be very sensitive to recent changes in the editor, +which different matches and selections showing up in the selection +dialog when invoked repeatedly after recent editor changes. This +can often result in a test case failing initially, only to succeed +if the selection dialog is dismissed and re-invoked via the keyboard +shortcut. To get reliable results, make sure that Intellisense has +completely updated before refactoring. + +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +R1 | Pass | [`Rename.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L12) | [R1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1.txt) +R2 | Failure (not available) | [`Rename.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L15) | [R2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R2.txt) +R3 | Failure (unavailable) | [`Rename.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L16) | [R3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R3.txt) +R4 | Pass | [`Rename.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L17) | [R4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R4.txt) +R5 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L33) | [R5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R5.txt) +R6 | Failure (renames unrelated identifiers, doesn't select all instances of identifier) | [`Rename.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L37) | [R6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R6.txt) +R7 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L42) | [R7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R7.txt) +R8 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L47) | [R8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R8.txt) +R9 | Pass | [`Rename.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L48) | [R9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R9.txt) +R10 | Failure (renames unrelated identifiers, doesn't select all instances of identifier) | [`Rename.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L51) | [R10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R10.txt) +R11 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L59) | [R11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R11.txt) +R12 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L62) | [R12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R12.txt) +R13 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L64) | [R13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R13.txt) +R14 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L67) | [R14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R14.txt) +R15 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L75) | [R15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R15.txt) +R16 | Pass | [`Rename.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L85) | [R16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R16.txt) +R17 | Pass | [`Rename.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L93) | [R17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R17.txt) +R18 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L96) | [R18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R18.txt) +R19 | Pass | [`Rename.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L127) | [R19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R19.txt) +R20 | Failure (not available) | [`Rename.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L152) | [R20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R20.txt) +R21 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L153) | [R21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R21.txt) +R22 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L154) | [R22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R22.txt) +R23 | Failure (not available) | [`Rename.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L157) | [R23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R23.txt) +R24 | Failure (not available) | [`Rename.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L158) | [R24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R24.txt) +R25 | Pass | [`Rename.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L159) | [R25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R25.txt) +R26 | Failure (not available) | [`Rename.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L161) | [R26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R26.txt) +R27 | Failure (doesn't select all instances) | [`Rename.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L164) | [R27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R27.txt) +R28 | Failure (doesn't select all instances) | [`Rename.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L165) | [R28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R28.txt) +R29 | Pass | [`Rename.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L166) | [R29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R29.txt) +R30 | Failure (doesn't select all instances) | [`Rename.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L169) | [R30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R30.txt) +R31 | Pass | [`Rename.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L173) | [R31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R31.txt) +R32 | Failure (selects no instances) | [`Rename.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L176) | [R32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R32.txt) +R33 | Pass | [`Rename.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L185) | [R33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R33.txt) +R34 | Pass | [`Rename.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L195) | [R34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R34.txt) +R35 | Pass | [`Rename.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L208) | [R35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R35.txt) +R36 | Pass | [`Rename.cpp`, line 218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L218) | [R36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R36.txt) +R37 | Failure (deosn't select all instances, selects unrelated instances) | [`Rename.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L224) | [R37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R37.txt) +R38 | Failure (deosn't select all instances, selects unrelated instances) | [`Rename.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L226) | [R38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R38.txt) +R39 | Failure (deosn't select all instances, selects unrelated instances) | [`Rename.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L228) | [R39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R39.txt) +R40 | Failure (not available) | [`Rename.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L233) | [R40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R40.txt) +R41 | Failure (deosn't select all instances, selects unrelated instances) | [`Rename.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L236) | [R41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R41.txt) +R42 | Failure (deosn't select all instances, selects unrelated instances) | [`Rename.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L238) | [R42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R42.txt) +R43 | Failure (deosn't select all instances, selects unrelated instances) | [`Rename.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L240) | [R43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R43.txt) +R44 | Failure (not available) | [`Rename.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L245) | [R44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R44.txt) +R45 | Pass | [`Rename.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L248) | [R45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R45.txt) +R46 | Failure (selects unrelated instances) | [`Rename.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L253) | [R46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R46.txt) +R47 | Failure (selects unrelated instances) | [`Rename.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L255) | [R47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R47.txt) +R48 | Failure (selects unrelated instances) | [`Rename.cpp`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L256) | [R48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R48.txt) +R49 | Failure (selects unrelated instances) | [`Rename.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L257) | [R49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R49.txt) +R50 | Pass | [`Rename.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L258) | [R50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R50.txt) +R51 | Failure (selects unrelated instances) | [`Rename.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L259) | [R51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R51.txt) +R52 | Pass | [`Rename.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L260) | [R52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R52.txt) +R53 | Pass | [`Rename.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L263) | [R53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R53.txt) +R54 | Pass | [`Rename.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L264) | [R54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R54.txt) +R55 | Failure (selects unrelated instances) | [`Rename.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L270) | [R55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R55.txt) +R56 | Failure (selects unrelated instances) | [`Rename.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L272) | [R56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R56.txt) +R57 | Failure (selects unrelated instances) | [`Rename.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L274) | [R57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R57.txt) +R58 | Failure (selects unrelated instances) | [`Rename.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L276) | [R58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R58.txt) +R59 | Pass | [`Rename.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L280) | [R59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R59.txt) +R60 | Pass | [`Rename.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L283) | [R60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R60.txt) +R61 | Pass | [`Rename.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L286) | [R61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R61.txt) +R62 | Pass | [`Rename.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L297) | [R62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R62.txt) +R63 | Pass | [`Rename.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L298) | [R63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R63.txt) +R64 | Pass | [`Rename.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L299) | [R64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R64.txt) +R65 | Pass | [`Rename.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L305) | [R65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R65.txt) +R66 | Pass | [`Rename.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L307) | [R66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R66.txt) +R67 | Pass | [`Rename.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L308) | [R67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R67.txt) +R68 | Pass | [`Rename.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L314) | [R68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R68.txt) +R69 | Pass | [`Rename.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L315) | [R69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R69.txt) +R70 | Pass | [`Rename.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L317) | [R70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R70.txt) +R71 | Pass | [`Rename.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L323) | [R71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R71.txt) +R72 | Pass | [`Rename.cpp`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L324) | [R72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R72.txt) +R73 | Pass | [`Rename.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L326) | [R73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R73.txt) +R74 | Pass | [`Rename.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L327) | [R74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R74.txt) +R75 | Pass | [`Rename.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L328) | [R75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R75.txt) +R76 | Pass | [`Rename.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L334) | [R76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R76.txt) +R77 | Pass | [`Rename.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L335) | [R77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R77.txt) +R78 | Pass | [`Rename.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L336) | [R78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R78.txt) +R79 | Pass | [`Rename.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L338) | [R79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R79.txt) +R80 | Pass | [`Rename.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L339) | [R80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R80.txt) +R81 | Pass | [`Rename.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L345) | [R81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R81.txt) +R82 | Pass | [`Rename.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L346) | [R82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R82.txt) +R83 | Pass | [`Rename.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L347) | [R83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R83.txt) +R84 | Pass | [`Rename.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L349) | [R84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R84.txt) +R85 | Pass | [`Rename.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L351) | [R85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R85.txt) +R86 | Failure (selects unrelated instances) | [`Rename.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L365) | [R86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R86.txt) +R87 | Failure (selects unrelated instances) | [`Rename.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L369) | [R87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R87.txt) +R88 | Pass | [`Rename.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L370) | [R88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R88.txt) +R89 | Pass | [`Rename.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L374) | [R89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R89.txt) +R90 | Failure (selects unrelated instances) | [`Rename.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L378) | [R90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R90.txt) +R91 | Failure (selects unrelated instances) | [`Rename.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L381) | [R91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R91.txt) +R92 | Failure (selects unrelated instances) | [`Rename.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L382) | [R92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R92.txt) +R93 | Failure (doesn't select all instances) | [`Rename.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L384) | [R93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R93.txt) +R94 | Failure (selects unrelated instances) | [`Rename.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L385) | [R94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R94.txt) +R95 | Pass | [`Rename.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L386) | [R95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R95.txt) +R96 | Failure (selects unrelated instances) | [`Rename.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L389) | [R96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R96.txt) +R97 | Pass | [`Rename.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L390) | [R97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R97.txt) +R98 | Pass | [`Rename.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L391) | [R98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R98.txt) +R99 | Pass | [`Rename.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L393) | [R99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R99.txt) +R100 | Failure (selects unrelated instances) | [`Rename.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L395) | [R100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R100.txt) +R101 | Failure (selects unrelated instances) | [`Rename.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L397) | [R101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R101.txt) +R102 | Pass | [`Rename.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L398) | [R102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R102.txt) +R103 | Failure (selects unrelated instances) | [`Rename.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L399) | [R103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R103.txt) +R104 | Failure (selects unrelated instances) | [`Rename.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L401) | [R104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R104.txt) +R105 | Pass | [`Rename.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L403) | [R105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R105.txt) +R106 | Failure (selects unrelated instances) | [`Rename.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L404) | [R106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R106.txt) +R107 | Pass | [`Rename.cpp`, line 410](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L410) | [R107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R107.txt) +R108 | Failure (selects unrelated instances) | [`Rename.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L411) | [R108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R108.txt) +R109 | Failure (selects unrelated instances) | [`Rename.cpp`, line 412](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L412) | [R109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R109.txt) +R110 | Failure (selects unrelated instances) | [`Rename.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L416) | [R110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R110.txt) +R111 | Pass | [`Rename.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L418) | [R111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R111.txt) +R112 | Pass | [`Rename.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L422) | [R112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R112.txt) +R113 | Pass | [`Rename.cpp`, line 426](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L426) | [R113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R113.txt) +R114 | Pass | [`Rename.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L428) | [R114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R114.txt) +R115 | Pass | [`Rename.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L433) | [R115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R115.txt) +R116 | Pass | [`Rename.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L437) | [R116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R116.txt) +R117 | Pass | [`Rename.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L439) | [R117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R117.txt) +R118 | Pass | [`Rename.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L445) | [R118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R118.txt) +R119 | Failure (selects unrelated instances) | [`Rename.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L446) | [R119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R119.txt) +R120 | Pass | [`Rename.cpp`, line 448](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L448) | [R120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R120.txt) +R121 | Failure (unavailable) | [`Rename.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L449) | [R121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R121.txt) +R122 | Pass | [`Rename.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L451) | [R122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R122.txt) +R123 | Failure (selects unrelated instances) | [`Rename.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L452) | [R123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R123.txt) +R124 | Pass | [`Rename.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L454) | [R124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R124.txt) +R125 | Failure (unavailable) | [`Rename.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L455) | [R125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R125.txt) +R126 | Failure (selects unrelated instances) | [`Rename.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L459) | [R126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R126.txt) +R127 | Pass | [`Rename.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L461) | [R127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R127.txt) +R128 | Pass | [`Rename.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L465) | [R128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R128.txt) +R129 | Failure (selects unrelated instances) | [`Rename.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L466) | [R129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R129.txt) +R130 | Failure (selects unrelated instances) | [`Rename.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L468) | [R130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R130.txt) +R131 | Pass | [`Rename.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L469) | [R131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R131.txt) +R132 | Failure (selects unrelated instances) | [`Rename.cpp`, line 470](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L470) | [R132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R132.txt) +R133 | Pass | [`Rename.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L475) | [R133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R133.txt) +R134 | Pass | [`Rename.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L479) | [R134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R134.txt) +R135 | Pass | [`Rename.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L481) | [R135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R135.txt) +R136 | Pass | [`Rename.cpp`, line 487](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L487) | [R136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R136.txt) +R137 | Pass | [`Rename.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L488) | [R137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R137.txt) +R138 | Pass | [`Rename.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L490) | [R138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R138.txt) +R139 | Pass | [`Rename.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L491) | [R139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R139.txt) +R140 | Pass | [`Rename.cpp`, line 493](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L493) | [R140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R140.txt) +R141 | Pass | [`Rename.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L494) | [R141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R141.txt) +R142 | Pass | [`Rename.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L496) | [R142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R142.txt) +R143 | Pass | [`Rename.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L497) | [R143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R143.txt) +R144 | Failure (selects unrelated instances) | [`Rename.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L503) | [R144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R144.txt) +R145 | Failure (selects unrelated instances) | [`Rename.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L504) | [R145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R145.txt) +R146 | (deprecated) | [`Rename.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L506) | [R146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R146.txt) +R147 | Pass | [`Rename.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L507) | [R147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R147.txt) +R148 | Failure (selects unrelated instances) | [`Rename.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L508) | [R148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R148.txt) +R149 | Pass | [`Rename.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L509) | [R149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R149.txt) +R150 | Failure (selects unrelated instances) | [`Rename.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L510) | [R150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R150.txt) +R151 | Pass | [`Rename.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L511) | [R151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R151.txt) +R152 | Pass | [`Rename.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L512) | [R152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R152.txt) +R153 | Pass | [`Rename.cpp`, line 513](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L513) | [R153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R153.txt) +R154 | Pass | [`Rename.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L516) | [R154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R154.txt) +R155 | Pass | [`Rename.cpp`, line 518](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L518) | [R155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R155.txt) +R156 | Pass | [`Rename.cpp`, line 519](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L519) | [R156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R156.txt) +R157 | Failure (selects unrelated instances) | [`Rename.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L523) | [R157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R157.txt) +R158 | Failure (selects unrelated instances) | [`Rename.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L524) | [R158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R158.txt) +R159 | Pass | [`Rename.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L526) | [R159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R159.txt) +R160 | Failure (selects unrelated instances) | [`Rename.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L527) | [R160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R160.txt) +R161 | Failure (selects unrelated instances) | [`Rename.cpp`, line 528](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L528) | [R161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R161.txt) +R162 | Failure (selects unrelated instances) | [`Rename.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L529) | [R162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R162.txt) +R163 | Pass | [`Rename.cpp`, line 530](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L530) | [R163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R163.txt) +R164 | Failure (selects unrelated instances) | [`Rename.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L531) | [R164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R164.txt) +R165 | Pass | [`Rename.cpp`, line 532](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L532) | [R165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R165.txt) +R166 | Pass | [`Rename.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L535) | [R166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R166.txt) +R167 | Pass | [`Rename.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L537) | [R167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R167.txt) +R168 | Pass | [`Rename.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L538) | [R168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R168.txt) +R169 | Pass | [`Rename.cpp`, line 542](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L542) | [R169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R169.txt) +R170 | Pass | [`Rename.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L549) | [R170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R170.txt) +R171 | Pass | [`Rename.cpp`, line 551](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L551) | [R171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R171.txt) +R172 | Pass | [`Rename.cpp`, line 553](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L553) | [R172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R172.txt) +R173 | Pass | [`Rename.cpp`, line 556](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L556) | [R173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R173.txt) +R174 | Pass | [`Rename.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L558) | [R174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R174.txt) +R175 | Pass | [`Rename.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L560) | [R175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R175.txt) +R176 | Pass | [`Rename.cpp`, line 564](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L564) | [R176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R176.txt) +R177 | Pass | [`Rename.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L567) | [R177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R177.txt) +R178 | Pass | [`Rename.cpp`, line 571](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L571) | [R178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R178.txt) +R179 | Pass | [`Rename.cpp`, line 572](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L572) | [R179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R179.txt) +R180 | Pass | [`Rename.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L575) | [R180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R180.txt) +R181 | Pass | [`Rename.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L576) | [R181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R181.txt) +R182 | Pass | [`Rename.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L583) | [R182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R182.txt) +R183 | Pass | [`Rename.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L584) | [R183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R183.txt) +R184 | Pass | [`Rename.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L585) | [R184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R184.txt) +R185 | Pass | [`Rename.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L587) | [R185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R185.txt) +R186 | Pass | [`Rename.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L588) | [R186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R186.txt) +R187 | Pass | [`Rename.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L589) | [R187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R187.txt) +R188 | Pass | [`Rename.cpp`, line 591](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L591) | [R188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R188.txt) +R189 | Pass | [`Rename.cpp`, line 593](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L593) | [R189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R189.txt) +R190 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L609) | [R190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R190.txt) +R191 | Pass | [`Rename.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L617) | [R191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R191.txt) +R192 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 618](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L618) | [R192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R192.txt) +R193 | Pass | [`Rename.cpp`, line 622](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L622) | [R193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R193.txt) +R194 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L624) | [R194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R194.txt) +R195 | Pass | [`Rename.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L626) | [R195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R195.txt) +R196 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 635](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L635) | [R196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R196.txt) +R197 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L636) | [R197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R197.txt) +R198 | Pass | [`Rename.cpp`, line 637](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L637) | [R198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R198.txt) +R199 | Pass | [`Rename.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L639) | [R199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R199.txt) +R200 | Pass | [`Rename.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L640) | [R200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R200.txt) +R201 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L641) | [R201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R201.txt) +R202 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L642) | [R202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R202.txt) +R203 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L643) | [R203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R203.txt) +R204 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L644) | [R204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R204.txt) +R205 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L645) | [R205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R205.txt) +R206 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 652](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L652) | [R206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R206.txt) +R207 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 653](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L653) | [R207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R207.txt) +R208 | Failure (renames unrelated identifiers) | [`Rename.cpp`, line 655](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L655) | [R208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R208.txt) +R209 | Pass | [`Rename.cpp`, line 662](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L662) | [R209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R209.txt) +R210 | Pass | [`Rename.cpp`, line 674](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L674) | [R210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R210.txt) +R211 | Pass | [`Rename.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L681) | [R211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R211.txt) +R212 | Failure (not available) | [`Rename.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L682) | [R212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R212.txt) +R213 | Failure (renames unrelated identifiers, creates invalid code) | [`Rename.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L683) | [R213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R213.txt) +R214 | Failure (doesn't select all instances) | [`Rename.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L685) | [R214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R214.txt) +R215 | Failure (doesn't select all instances) | [`Rename.cpp`, line 686](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L686) | [R215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R215.txt) +R216 | Pass | [`Rename.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L687) | [R216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R216.txt) +R217 | Failure (doesn't select all instances) | [`Rename.cpp`, line 690](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L690) | [R217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R217.txt) +R218 | Pass | [`Rename.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L691) | [R218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R218.txt) +R219 | Pass | [`Rename.cpp`, line 693](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L693) | [R219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R219.txt) +R220 | Failure (doesn't select all instances) | [`Rename.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L694) | [R220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R220.txt) +R221 | Pass | [`Rename.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L697) | [R221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R221.txt) +R222 | Pass | [`Rename.cpp`, line 699](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L699) | [R222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R222.txt) +R223 | Failure (doesn't select all instances) | [`Rename.cpp`, line 700](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L700) | [R223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R223.txt) +R224 | Pass | [`Rename.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L702) | [R224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R224.txt) +R225 | Pass | [`Rename.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L705) | [R225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R225.txt) +R226 | Pass | [`Rename.cpp`, line 707](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L707) | [R226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R226.txt) +R227 | Failure (doesn't select all instances) | [`Rename.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L708) | [R227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R227.txt) +R228 | Pass | [`Rename.cpp`, line 717](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L717) | [R228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R228.txt) +R229 | Pass | [`Rename.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L722) | [R229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R229.txt) +R230 | Pass | [`Rename.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L728) | [R230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R230.txt) +R231 | Pass | [`Rename.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L730) | [R231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R231.txt) +R232 | Pass | [`Rename.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L732) | [R232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R232.txt) +R233 | Pass | [`Rename.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L734) | [R233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R233.txt) +R234 | Pass | [`Rename.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L736) | [R234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R234.txt) +R235 | Pass | [`Rename.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L738) | [R235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R235.txt) +R236 | Pass | [`Rename.cpp`, line 740](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L740) | [R236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R236.txt) +R237 | (deprecated) | [`Rename.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L742) | [R237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R237.txt) +R238 | (deprecated) | [`Rename.cpp`, line 743](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L743) | [R238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R238.txt) +R239 | Failure (creates invalid code) | [`Rename.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L744) | [R239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R239.txt) +R240 | Pass | [`Rename.cpp`, line 746](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L746) | [R240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R240.txt) +R241 | Pass | [`Rename.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L748) | [R241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R241.txt) +R242 | Pass | [`Rename.cpp`, line 750](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L750) | [R242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R242.txt) +R243 | Pass | [`Rename.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L752) | [R243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R243.txt) +R244 | Failure (selects unrelated instances) | [`RenameCpp11.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L7) | [R244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R244.txt) +R245 | Pass | [`RenameCpp11.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L9) | [R245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R245.txt) +R246 | Pass | [`RenameCpp11.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L12) | [R246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R246.txt) +R247 | Pass | [`RenameCpp11.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L16) | [R247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R247.txt) +R248 | Pass | [`RenameCpp11.h`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L23) | [R248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R248.txt) +R249 | Pass | [`RenameCpp11.h`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L25) | [R249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R249.txt) +R250 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L14) | [R250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R250.txt) +R251 | Pass | [`RenameCpp11.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L16) | [R251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R251.txt) +R252 | Pass | [`RenameCpp11.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L18) | [R252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R252.txt) +R253 | Pass | [`RenameCpp11.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L20) | [R253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R253.txt) +R254 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L23) | [R254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R254.txt) +R255 | Pass | [`RenameCpp11.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L25) | [R255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R255.txt) +R256 | Pass | [`RenameCpp11.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L28) | [R256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R256.txt) +R257 | Pass | [`RenameCpp11.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L33) | [R257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R257.txt) +R258 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L38) | [R258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R258.txt) +R259 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L40) | [R259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R259.txt) +R260 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L43) | [R260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R260.txt) +R261 | Pass | [`RenameCpp11.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L49) | [R261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R261.txt) +R262 | Pass | [`RenameCpp11.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L51) | [R262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R262.txt) +R263 | Pass | [`RenameCpp11.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L55) | [R263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R263.txt) +R264 | Pass | [`RenameCpp11.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L57) | [R264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R264.txt) +R265 | Pass | [`RenameCpp11.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L63) | [R265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R265.txt) +R266 | Pass | [`RenameCpp11.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L69) | [R266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R266.txt) +R267 | Pass | [`RenameCpp11.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L75) | [R267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R267.txt) +R268 | Pass | [`RenameCpp11.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L81) | [R268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R268.txt) +R269 | Pass | [`RenameCpp11.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L87) | [R269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R269.txt) +R270 | Pass | [`RenameCpp11.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L89) | [R270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R270.txt) +R271 | Pass | [`RenameCpp11.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L95) | [R271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R271.txt) +R272 | Pass | [`RenameCpp11.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L98) | [R272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R272.txt) +R273 | Pass | [`RenameCpp11.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L100) | [R273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R273.txt) +R274 | Pass | [`RenameCpp11.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L101) | [R274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R274.txt) +R275 | Pass | [`RenameCpp11.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L103) | [R275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R275.txt) +R276 | Pass | [`RenameCpp11.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L104) | [R276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R276.txt) +R277 | Pass | [`RenameCpp11.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L106) | [R277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R277.txt) +R278 | Pass | [`RenameCpp11.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L108) | [R278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R278.txt) +R279 | Pass | [`RenameCpp11.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L109) | [R279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R279.txt) +R280 | Pass | [`RenameCpp11.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L111) | [R280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R280.txt) +R281 | Pass | [`RenameCpp11.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L112) | [R281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R281.txt) +R282 | Pass | [`RenameCpp11.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L143) | [R282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R282.txt) +R283 | Pass | [`RenameCpp11.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L146) | [R283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R283.txt) +R284 | Pass | [`RenameCpp11.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L148) | [R284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R284.txt) +R285 | Pass | [`RenameCpp11.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L149) | [R285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R285.txt) +R286 | Pass | [`RenameCpp11.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L151) | [R286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R286.txt) +R287 | Pass | [`RenameCpp11.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L152) | [R287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R287.txt) +R288 | Pass | [`RenameCpp11.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L154) | [R288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R288.txt) +R289 | Pass | [`RenameCpp11.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L156) | [R289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R289.txt) +R290 | Pass | [`RenameCpp11.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L157) | [R290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R290.txt) +R291 | Pass | [`RenameCpp11.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L159) | [R291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R291.txt) +R292 | Pass | [`RenameCpp11.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L160) | [R292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R292.txt) +R293 | Pass | [`RenameCpp11.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L167) | [R293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R293.txt) +R294 | Pass | [`RenameCpp11.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L173) | [R294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R294.txt) +R295 | Pass | [`RenameCpp11.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L175) | [R295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R295.txt) +R296 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L185) | [R296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R296.txt) +R297 | Failure (not available) | [`RenameCpp11.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L186) | [R297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R297.txt) +R298 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L188) | [R298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R298.txt) +R299 | Pass | [`RenameCpp11.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L189) | [R299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R299.txt) +R300 | Failure (not available) | [`RenameCpp11.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L190) | [R300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R300.txt) +R301 | Failure (not available) | [`RenameCpp11.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L191) | [R301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R301.txt) +R302 | Pass | [`RenameCpp11.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L194) | [R302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R302.txt) +R303 | Failure (not available) | [`RenameCpp11.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L196) | [R303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R303.txt) +R304 | Failure (not available) | [`RenameCpp11.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L197) | [R304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R304.txt) +R305 | Failure (not available) | [`RenameCpp11.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L200) | [R305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R305.txt) +R306 | Failure (not available) | [`RenameCpp11.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L215) | [R306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R306.txt) +R307 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L217) | [R307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R307.txt) +R308 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L221) | [R308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R308.txt) +R309 | Failure (not available) | [`RenameCpp11.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L222) | [R309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R309.txt) +R310 | Failure (not available) | [`RenameCpp11.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L223) | [R310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R310.txt) +R311 | Failure (not available) | [`RenameCpp11.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L227) | [R311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R311.txt) +R312 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L243) | [R312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R312.txt) +R313 | Failure (not available) | [`RenameCpp11.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L251) | [R313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R313.txt) +R314 | Failure (not available) | [`RenameCpp11.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L253) | [R314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R314.txt) +R315 | Failure (not available) | [`RenameCpp11.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L264) | [R315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R315.txt) +R316 | Failure (not available) | [`RenameCpp11.cpp`, line 266](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L266) | [R316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R316.txt) +R317 | Failure (not available) | [`RenameCpp11.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L270) | [R317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R317.txt) +R318 | Failure (not available) | [`RenameCpp11.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L280) | [R318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R318.txt) +R319 | Pass | [`RenameCpp11.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L281) | [R319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R319.txt) +R320 | Failure (not available) | [`RenameCpp11.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L294) | [R320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R320.txt) +R321 | Pass | [`RenameCpp11.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L295) | [R321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R321.txt) +R322 | Failure (not available) | [`RenameCpp11.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L346) | [R322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R322.txt) +R323 | Pass | [`RenameCpp11.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L347) | [R323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R323.txt) +R324 | Pass | [`RenameCpp11.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L350) | [R324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R324.txt) +R325 | Failure (not available) | [`RenameCpp11.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L354) | [R325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R325.txt) +R326 | Pass | [`RenameCpp11.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L355) | [R326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R326.txt) +R327 | Pass | [`RenameCpp11.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L358) | [R327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R327.txt) +R328 | Failure (not available) | [`RenameCpp11.cpp`, line 362](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L362) | [R328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R328.txt) +R329 | Pass | [`RenameCpp11.cpp`, line 363](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L363) | [R329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R329.txt) +R330 | Pass | [`RenameCpp11.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L366) | [R330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R330.txt) +R331 | Failure (not available) | [`RenameCpp11.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L370) | [R331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R331.txt) +R332 | Pass | [`RenameCpp11.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L371) | [R332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R332.txt) +R333 | Pass | [`RenameCpp11.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L374) | [R333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R333.txt) +R334 | Failure (not available) | [`RenameCpp11.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L378) | [R334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R334.txt) +R335 | Pass | [`RenameCpp11.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L379) | [R335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R335.txt) +R336 | Pass | [`RenameCpp11.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L382) | [R336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R336.txt) +R337 | Failure (not available) | [`RenameCpp11.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L386) | [R337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R337.txt) +R338 | Pass | [`RenameCpp11.cpp`, line 387](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L387) | [R338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R338.txt) +R339 | Pass | [`RenameCpp11.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L390) | [R339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R339.txt) +R340 | Failure (not available) | [`RenameCpp11.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L394) | [R340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R340.txt) +R341 | Pass | [`RenameCpp11.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L395) | [R341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R341.txt) +R342 | Pass | [`RenameCpp11.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L396) | [R342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R342.txt) +R343 | Pass | [`RenameCpp11.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L399) | [R343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R343.txt) +R344 | Pass | [`RenameCpp11.cpp`, line 400](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L400) | [R344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R344.txt) +R345 | Failure (not available) | [`RenameCpp11.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L413) | [R345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R345.txt) +R346 | Pass | [`RenameCpp11.cpp`, line 414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L414) | [R346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R346.txt) +R347 | Pass | [`RenameCpp11.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L415) | [R347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R347.txt) +R348 | Pass | [`RenameCpp11.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L418) | [R348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R348.txt) +R349 | Pass | [`RenameCpp11.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L419) | [R349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R349.txt) +R350 | Failure (not available) | [`RenameCpp11.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L423) | [R350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R350.txt) +R351 | Pass | [`RenameCpp11.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L424) | [R351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R351.txt) +R352 | Pass | [`RenameCpp11.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L425) | [R352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R352.txt) +R353 | Pass | [`RenameCpp11.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L428) | [R353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R353.txt) +R354 | Pass | [`RenameCpp11.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L429) | [R354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R354.txt) +R355 | Failure (not available) | [`RenameCpp11.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L433) | [R355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R355.txt) +R356 | Pass | [`RenameCpp11.cpp`, line 434](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L434) | [R356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R356.txt) +R357 | Pass | [`RenameCpp11.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L435) | [R357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R357.txt) +R358 | Pass | [`RenameCpp11.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L438) | [R358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R358.txt) +R359 | Pass | [`RenameCpp11.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L439) | [R359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R359.txt) +R360 | Failure (not available) | [`RenameCpp11.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L445) | [R360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R360.txt) +R361 | Failure (not available) | [`RenameCpp11.cpp`, line 447](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L447) | [R361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R361.txt) +R362 | Failure (not available) | [`RenameCpp11.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L449) | [R362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R362.txt) +R363 | Failure (not available) | [`RenameCpp11.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L451) | [R363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R363.txt) +R364 | Failure (not available) | [`RenameCpp11.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L453) | [R364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R364.txt) +R365 | Failure (not available) | [`RenameCpp11.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L455) | [R365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R365.txt) +R366 | Failure (not available) | [`RenameCpp11.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L457) | [R366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R366.txt) +R367 | Failure (not available) | [`RenameCpp11.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L459) | [R367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R367.txt) +R368 | Failure (not available) | [`RenameCpp11.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L461) | [R368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R368.txt) +R369 | Failure (not available) | [`RenameCpp11.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L463) | [R369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R369.txt) +R370 | Failure (not available) | [`RenameCpp11.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L465) | [R370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R370.txt) +R371 | Failure (not available) | [`RenameCpp11.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L467) | [R371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R371.txt) +R372 | Failure (not available) | [`RenameCpp11.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L469) | [R372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R372.txt) +R373 | Pass | [`RenameCpp11.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L473) | [R373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R373.txt) +R374 | Pass | [`RenameCpp11.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L475) | [R374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R374.txt) +R375 | Pass | [`RenameCpp11.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L476) | [R375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R375.txt) +R376 | Pass | [`RenameCpp11.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L481) | [R376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R376.txt) +R377 | Pass | [`RenameCpp11.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L483) | [R377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R377.txt) +R378 | Pass | [`RenameCpp11.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L489) | [R378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R378.txt) +R379 | Pass | [`RenameCpp11.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L492) | [R379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R379.txt) +R380 | Pass | [`RenameCpp11.cpp`, line 499](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L499) | [R380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R380.txt) +R381 | Pass | [`RenameCpp11.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L504) | [R381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R381.txt) +R382 | Pass | [`RenameCpp11.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L505) | [R382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R382.txt) +R383 | Pass | [`RenameCpp11.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L506) | [R383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R383.txt) +R384 | Pass | [`RenameCpp11.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L507) | [R384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R384.txt) +R385 | Pass | [`RenameCpp11.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L509) | [R385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R385.txt) +R386 | Pass | [`RenameCpp11.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L516) | [R386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R386.txt) +R387 | Pass | [`RenameCpp11.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L520) | [R387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R387.txt) +R388 | Pass | [`RenameCpp11.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L522) | [R388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R388.txt) +R389 | Pass | [`RenameCpp11.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L523) | [R389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R389.txt) +R390 | Pass | [`RenameCpp11.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L527) | [R390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R390.txt) +R391 | Pass | [`RenameCpp11.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L529) | [R391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R391.txt) +R392 | Failure (not available) | [`RenameCpp11.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L533) | [R392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R392.txt) +R393 | Failure (not available) | [`RenameCpp11.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L537) | [R393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R393.txt) +R394 | Failure (not available) | [`RenameCpp11.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L538) | [R394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R394.txt) +R395 | Failure (not available) | [`RenameCpp11.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L539) | [R395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R395.txt) +R396 | Failure (not available) | [`RenameCpp11.cpp`, line 543](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L543) | [R396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R396.txt) +R397 | Failure (not available) | [`RenameCpp11.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L555) | [R397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R397.txt) +R398 | Failure (not available) | [`RenameCpp11.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L557) | [R398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R398.txt) +R399 | Failure (not available) | [`RenameCpp11.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L558) | [R399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R399.txt) +R400 | Failure (not available) | [`RenameCpp11.cpp`, line 561](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L561) | [R400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R400.txt) +R401 | Failure (not available) | [`RenameCpp11.cpp`, line 562](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L562) | [R401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R401.txt) +R402 | Failure (not available) | [`RenameCpp11.cpp`, line 573](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L573) | [R402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R402.txt) +R403 | Failure (not available) | [`RenameCpp11.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L577) | [R403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R403.txt) +R404 | Failure (not available) | [`RenameCpp11.cpp`, line 581](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L581) | [R404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R404.txt) +R405 | Failure (not available) | [`RenameCpp11.cpp`, line 582](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L582) | [R405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R405.txt) +R406 | Failure (not available) | [`RenameCpp11.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L587) | [R406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R406.txt) +R407 | Failure (not available) | [`RenameCpp11.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L600) | [R407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R407.txt) +R408 | Failure (not available) | [`RenameCpp11.cpp`, line 602](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L602) | [R408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R408.txt) +R409 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 605](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L605) | [R409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R409.txt) +R410 | Failure (not available) | [`RenameCpp11.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L606) | [R410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R410.txt) +R411 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L607) | [R411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R411.txt) +R412 | Failure (not available) | [`RenameCpp11.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L608) | [R412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R412.txt) +R413 | Failure (not available) | [`RenameCpp11.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L636) | [R413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R413.txt) +R414 | Pass | [`RenameCpp11.cpp`, line 638](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L638) | [R414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R414.txt) +R415 | Failure (not available) | [`RenameCpp11.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L639) | [R415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R415.txt) +R416 | Failure (not available) | [`RenameCpp11.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L640) | [R416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R416.txt) +R417 | Failure (not available) | [`RenameCpp11.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L643) | [R417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R417.txt) +R418 | Failure (not available) | [`RenameCpp11.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L644) | [R418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R418.txt) +R419 | Failure (not available) | [`RenameCpp11.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L647) | [R419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R419.txt) +R420 | Failure (not available) | [`RenameCpp11.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L648) | [R420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R420.txt) +R421 | Pass | [`RenameCpp11.cpp`, line 650](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L650) | [R421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R421.txt) +R422 | Failure (not available) | [`RenameCpp11.cpp`, line 664](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L664) | [R422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R422.txt) +R423 | Failure (not available) | [`RenameCpp11.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L666) | [R423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R423.txt) +R424 | Failure (not available) | [`RenameCpp11.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L676) | [R424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R424.txt) +R425 | Failure (not available) | [`RenameCpp11.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L678) | [R425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R425.txt) +R426 | Failure (not available) | [`RenameCpp11.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L681) | [R426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R426.txt) +R427 | Failure (not available) | [`RenameCpp11.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L682) | [R427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R427.txt) +R428 | Failure (not available) | [`RenameCpp11.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L683) | [R428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R428.txt) +R429 | Failure (not available) | [`RenameCpp11.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L687) | [R429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R429.txt) +R430 | Failure (not available) | [`RenameCpp11.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L701) | [R430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R430.txt) +R431 | Pass | [`RenameCpp11.cpp`, line 704](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L704) | [R431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R431.txt) +R432 | Pass | [`RenameCpp11.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L705) | [R432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R432.txt) +R433 | Pass | [`RenameCpp11.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L709) | [R433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R433.txt) +R434 | Pass | [`RenameCpp11.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L710) | [R434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R434.txt) +R435 | Pass | [`RenameCpp11.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L714) | [R435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R435.txt) +R436 | Pass | [`RenameCpp11.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L722) | [R436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R436.txt) +R437 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L728) | [R437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R437.txt) +R438 | Pass | [`RenameCpp11.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L730) | [R438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R438.txt) +R439 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L731) | [R439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R439.txt) +R440 | Pass | [`RenameCpp11.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L732) | [R440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R440.txt) +R441 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 735](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L735) | [R441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R441.txt) +R442 | Pass | [`RenameCpp11.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L736) | [R442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R442.txt) +R443 | Pass | [`RenameCpp11.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L749) | [R443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R443.txt) +R444 | Pass | [`RenameCpp11.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L751) | [R444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R444.txt) +R445 | Pass | [`RenameCpp11.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L752) | [R445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R445.txt) +R446 | Pass | [`RenameCpp11.cpp`, line 753](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L753) | [R446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R446.txt) +R447 | Pass | [`RenameCpp11.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L756) | [R447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R447.txt) +R448 | Pass | [`RenameCpp11.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L758) | [R448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R448.txt) +R449 | Pass | [`RenameCpp11.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L759) | [R449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R449.txt) +R450 | Pass | [`RenameCpp11.cpp`, line 760](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L760) | [R450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R450.txt) +R451 | Pass | [`RenameCpp11.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L761) | [R451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R451.txt) +R452 | Pass | [`RenameCpp11.cpp`, line 762](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L762) | [R452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R452.txt) +R453 | Pass | [`RenameCpp11.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L765) | [R453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R453.txt) +R454 | Pass | [`RenameCpp11.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L766) | [R454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R454.txt) +R455 | Pass | [`RenameCpp11.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L767) | [R455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R455.txt) +R456 | Pass | [`RenameCpp11.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L768) | [R456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R456.txt) +R457 | Pass | [`RenameCpp11.cpp`, line 771](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L771) | [R457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R457.txt) +R458 | Pass | [`RenameCpp11.cpp`, line 772](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L772) | [R458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R458.txt) +R459 | Pass | [`RenameCpp11.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L776) | [R459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R459.txt) +R460 | Pass | [`RenameCpp11.cpp`, line 780](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L780) | [R460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R460.txt) +R461 | Pass | [`RenameCpp11.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L781) | [R461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R461.txt) +R462 | Pass | [`RenameCpp11.cpp`, line 783](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L783) | [R462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R462.txt) +R463 | Pass | [`RenameCpp11.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L787) | [R463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R463.txt) +R464 | Pass | [`RenameCpp11.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L789) | [R464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R464.txt) +R465 | Pass | [`RenameCpp11.cpp`, line 790](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L790) | [R465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R465.txt) +R466 | Pass | [`RenameCpp11.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L791) | [R466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R466.txt) +R467 | Pass | [`RenameCpp11.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L792) | [R467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R467.txt) +R468 | Pass | [`RenameCpp11.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L793) | [R468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R468.txt) +R469 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 801](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L801) | [R469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R469.txt) +R470 | Pass | [`RenameCpp11.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L805) | [R470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R470.txt) +R471 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L809) | [R471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R471.txt) +R472 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L810) | [R472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R472.txt) +R473 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 812](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L812) | [R473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R473.txt) +R474 | Failure (not available) | [`RenameCpp11.cpp`, line 813](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L813) | [R474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R474.txt) +R475 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 814](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L814) | [R475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R475.txt) +R476 | Pass | [`RenameCpp11.cpp`, line 815](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L815) | [R476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R476.txt) +R477 | Pass | [`RenameCpp11.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L821) | [R477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R477.txt) +R478 | Pass | [`RenameCpp11.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L824) | [R478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R478.txt) +R479 | Pass | [`RenameCpp11.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L825) | [R479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R479.txt) +R480 | Pass | [`RenameCpp11.cpp`, line 828](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L828) | [R480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R480.txt) +R481 | Pass | [`RenameCpp11.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L833) | [R481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R481.txt) +R482 | Pass | [`RenameCpp11.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L834) | [R482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R482.txt) +R483 | Pass | [`RenameCpp11.cpp`, line 837](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L837) | [R483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R483.txt) +R484 | Pass | [`RenameCpp11.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L845) | [R484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R484.txt) +R485 | Pass | [`RenameCpp11.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L846) | [R485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R485.txt) +R486 | Pass | [`RenameCpp11.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L849) | [R486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R486.txt) +R487 | Pass | [`RenameCpp11.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L854) | [R487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R487.txt) +R488 | Pass | [`RenameCpp11.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L855) | [R488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R488.txt) +R489 | Pass | [`RenameCpp11.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L858) | [R489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R489.txt) +R490 | Pass | [`RenameCpp11.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L866) | [R490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R490.txt) +R491 | Pass | [`RenameCpp11.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L867) | [R491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R491.txt) +R492 | Pass | [`RenameCpp11.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L870) | [R492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R492.txt) +R493 | Pass | [`RenameCpp11.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L878) | [R493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R493.txt) +R494 | Pass | [`RenameCpp11.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L880) | [R494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R494.txt) +R495 | Pass | [`RenameCpp11.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L882) | [R495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R495.txt) +R496 | Pass | [`RenameCpp11.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L883) | [R496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R496.txt) +R497 | Pass | [`RenameCpp11.cpp`, line 885](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L885) | [R497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R497.txt) +R498 | Pass | [`RenameCpp11.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L887) | [R498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R498.txt) +R499 | Pass | [`RenameCpp11.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L889) | [R499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R499.txt) +R500 | Pass | [`RenameCpp11.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L890) | [R500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R500.txt) +R501 | Pass | [`RenameCpp11.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L892) | [R501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R501.txt) +R502 | Pass | [`RenameCpp11.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L898) | [R502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R502.txt) +R503 | Pass | [`RenameCpp11.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L900) | [R503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R503.txt) +R504 | Pass | [`RenameCpp11.cpp`, line 901](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L901) | [R504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R504.txt) +R505 | Pass | [`RenameCpp11.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L902) | [R505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R505.txt) +R506 | Pass | [`RenameCpp11.cpp`, line 904](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L904) | [R506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R506.txt) +R507 | Pass | [`RenameCpp11.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L906) | [R507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R507.txt) +R508 | Pass | [`RenameCpp11.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L907) | [R508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R508.txt) +R509 | Pass | [`RenameCpp11.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L909) | [R509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R509.txt) +R510 | Pass | [`RenameCpp11.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L910) | [R510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R510.txt) +R511 | Pass | [`RenameCpp11.cpp`, line 911](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L911) | [R511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R511.txt) +R512 | Pass | [`RenameCpp11.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L912) | [R512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R512.txt) +R513 | Pass | [`RenameCpp11.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L913) | [R513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R513.txt) +R514 | Pass | [`RenameCpp11.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L915) | [R514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R514.txt) +R515 | Pass | [`RenameCpp11.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L921) | [R515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R515.txt) +R516 | Pass | [`RenameCpp11.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L923) | [R516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R516.txt) +R517 | Pass | [`RenameCpp11.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L925) | [R517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R517.txt) +R518 | Pass | [`RenameCpp11.cpp`, line 928](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L928) | [R518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R518.txt) +R519 | Pass | [`RenameCpp11.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L929) | [R519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R519.txt) +R520 | Pass | [`RenameCpp11.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L930) | [R520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R520.txt) +R521 | Pass | [`RenameCpp11.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L940) | [R521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R521.txt) +R522 | Pass | [`RenameCpp11.cpp`, line 942](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L942) | [R522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R522.txt) +R523 | Pass | [`RenameCpp11.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L945) | [R523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R523.txt) +R524 | Pass | [`RenameCpp11.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L952) | [R524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R524.txt) +R525 | Pass | [`RenameCpp11.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L954) | [R525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R525.txt) +R526 | Pass | [`RenameCpp11.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L957) | [R526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R526.txt) +R527 | Pass | [`RenameCpp11.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L958) | [R527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R527.txt) +R528 | Pass | [`RenameCpp11.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L960) | [R528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R528.txt) +R529 | Pass | [`RenameCpp11.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L965) | [R529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R529.txt) +R530 | Pass | [`RenameCpp11.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L970) | [R530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R530.txt) +R531 | Pass | [`RenameCpp11.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L972) | [R531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R531.txt) +R532 | Pass | [`RenameCpp11.cpp`, line 973](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L973) | [R532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R532.txt) +R533 | Pass | [`RenameCpp11.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L975) | [R533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R533.txt) +R534 | Pass | [`RenameCpp11.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L977) | [R534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R534.txt) +R535 | Pass | [`RenameCpp11.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L981) | [R535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R535.txt) +R536 | Pass | [`RenameCpp11.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L982) | [R536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R536.txt) +R537 | Pass | [`RenameCpp11.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L988) | [R537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R537.txt) +R538 | Pass | [`RenameCpp11.cpp`, line 993](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L993) | [R538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R538.txt) +R539 | Pass | [`RenameCpp11.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L997) | [R539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R539.txt) +R540 | Pass | [`RenameCpp11.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1005) | [R540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R540.txt) +R541 | Pass | [`RenameCpp11.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1011) | [R541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R541.txt) +R542 | Pass | [`RenameCpp11.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1018) | [R542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R542.txt) +R543 | Pass | [`RenameCpp11.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1021) | [R543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R543.txt) +R544 | Pass | [`RenameCpp11.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1028) | [R544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R544.txt) +R545 | Pass | [`RenameCpp11.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1030) | [R545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R545.txt) +R546 | Pass | [`RenameCpp11.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1032) | [R546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R546.txt) +R547 | Pass | [`RenameCpp11.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1042) | [R547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R547.txt) +R548 | Pass | [`RenameCpp11.cpp`, line 1044](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1044) | [R548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R548.txt) +R549 | Pass | [`RenameCpp11.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1046) | [R549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R549.txt) +R550 | Pass | [`RenameCpp11.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1052) | [R550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R550.txt) +R551 | Pass | [`RenameCpp11.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1054) | [R551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R551.txt) +R552 | Pass | [`RenameCpp11.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1057) | [R552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R552.txt) +R553 | Pass | [`RenameCpp11.cpp`, line 1059](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1059) | [R553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R553.txt) +R554 | Pass | [`RenameCpp11.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1062) | [R554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R554.txt) +R555 | Pass | [`RenameCpp11.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1064) | [R555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R555.txt) +R556 | Pass | [`RenameCpp11.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1067) | [R556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R556.txt) +R557 | Pass | [`RenameCpp11.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1069) | [R557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R557.txt) +R558 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 1073](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1073) | [R558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R558.txt) +R559 | Failure (not available) | [`RenameCpp11.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1074) | [R559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R559.txt) +R560 | Failure (not available) | [`RenameCpp11.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1075) | [R560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R560.txt) +R561 | Pass | [`RenameCpp11.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1076) | [R561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R561.txt) +R562 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1082) | [R562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R562.txt) +R563 | Failure (not available) | [`RenameCpp11.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1087) | [R563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R563.txt) +R564 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1090) | [R564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R564.txt) +R565 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1096) | [R565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R565.txt) +R566 | Failure (not available) | [`RenameCpp11.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1101) | [R566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R566.txt) +R567 | Pass | [`RenameCpp11.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1104) | [R567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R567.txt) +R568 | Pass | [`RenameCpp11.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1107) | [R568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R568.txt) +R569 | Pass | [`RenameCpp11.cpp`, line 1111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1111) | [R569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R569.txt) +R570 | Pass | [`RenameCpp11.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1112) | [R570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R570.txt) +R571 | Pass | [`RenameCpp11.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1117) | [R571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R571.txt) +R572 | Pass | [`RenameCpp11.cpp`, line 1118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1118) | [R572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R572.txt) +R573 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1122) | [R573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R573.txt) +R574 | Failure (doesn't select all instances) | [`RenameCpp11.cpp`, line 1127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1127) | [R574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R574.txt) +R575 | Failure (unavailable) | [`RenameCpp11.cpp`, line 1131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1131) | [R575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R575.txt) +R576 | Pass | [`RenameCpp11.cpp`, line 1134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1134) | [R576.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R576.txt) +R577 | Pass | [`RenameCpp11.cpp`, line 1143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1143) | [R577.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R577.txt) +R578 | Pass | [`RenameCpp11.cpp`, line 1149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1149) | [R578.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R578.txt) +R579 | Pass | [`RenameCpp11.cpp`, line 1158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1158) | [R579.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R579.txt) +R580 | Pass | [`RenameCpp11.cpp`, line 1165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1165) | [R580.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R580.txt) +R581 | Pass | [`RenameCpp11.cpp`, line 1172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1172) | [R581.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R581.txt) +R582 | Pass | [`RenameCpp11.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1173) | [R582.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R582.txt) +R583 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 1178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1178) | [R583.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R583.txt) +R584 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 1183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1183) | [R584.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R584.txt) +R585 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1189) | [R585.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R585.txt) +R586 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 1194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1194) | [R586.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R586.txt) +R587 | Pass | [`RenameCpp11.cpp`, line 1195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1195) | [R587.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R587.txt) +R588 | Pass | [`RenameCpp11.cpp`, line 1196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1196) | [R588.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R588.txt) +R589 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 1206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1206) | [R589.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R589.txt) +R590 | Pass | [`RenameCpp11.cpp`, line 1213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1213) | [R590.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R590.txt) +R591 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1218) | [R591.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R591.txt) +R592 | Failure (selects unrelated instances) | [`RenameCpp11.cpp`, line 1222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1222) | [R592.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R592.txt) +R593 | Pass | [`RenameCpp11.cpp`, line 1225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1225) | [R593.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R593.txt) +R594 | Pass | [`RenameCpp11.cpp`, line 1227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1227) | [R594.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R594.txt) +R595 | Pass | [`RenameCpp11.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1229) | [R595.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R595.txt) +R596 | Pass | [`RenameCpp11.cpp`, line 1231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1231) | [R596.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R596.txt) +R597 | Pass | [`RenameCpp11.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1236) | [R597.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R597.txt) +R598 | Pass | [`RenameCpp11.cpp`, line 1237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1237) | [R598.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R598.txt) +R599 | Pass | [`RenameCpp11.cpp`, line 1240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1240) | [R599.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R599.txt) +R600 | Pass | [`RenameCpp11.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1246) | [R600.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R600.txt) +R601 | Pass | [`RenameCpp11.cpp`, line 1247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1247) | [R601.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R601.txt) +R602 | Failure (changes unrelated code) | [`RenameCpp11.cpp`, line 1250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1250) | [R602.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R602.txt) +R603 | Pass | [`RenameCpp11.cpp`, line 1251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1251) | [R603.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R603.txt) +R604 | Pass | [`RenameCpp11.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1290) | [R604.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R604.txt) +R605 | Pass | [`RenameCpp11.cpp`, line 1292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1292) | [R605.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R605.txt) +R606 | Failure (selects unrelated instances) | [`RenameCpp14.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L6) | [R606.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R606.txt) +R607 | Failure (selects unrelated instances) | [`RenameCpp14.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L8) | [R607.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R607.txt) +R608 | Pass | [`RenameCpp14.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L9) | [R608.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R608.txt) +R609 | Failure (selects unrelated instances) | [`RenameCpp14.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L10) | [R609.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R609.txt) +R610 | Failure (selects unrelated instances) | [`RenameCpp14.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L11) | [R610.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R610.txt) +R611 | Failure (selects unrelated instances) | [`RenameCpp14.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L14) | [R611.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R611.txt) +R612 | Failure (selects unrelated instances) | [`RenameCpp14.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L16) | [R612.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R612.txt) +R613 | Failure (selects unrelated instances) | [`RenameCpp14.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L17) | [R613.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R613.txt) +R614 | Pass | [`RenameCpp14.h`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L20) | [R614.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R614.txt) +R615 | Failure (selects unrelated instances) | [`RenameCpp14.h`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L21) | [R615.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R615.txt) +R616 | Failure (selects unrelated instances) | [`RenameCpp14.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L20) | [R616.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R616.txt) +R617 | Failure (selects unrelated instances) | [`RenameCpp14.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L22) | [R617.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R617.txt) +R618 | Pass | [`RenameCpp14.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L23) | [R618.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R618.txt) +R619 | Failure (selects unrelated instances) | [`RenameCpp14.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L24) | [R619.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R619.txt) +R620 | Failure (selects unrelated instances) | [`RenameCpp14.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L27) | [R620.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R620.txt) +R621 | Failure (selects unrelated instances) | [`RenameCpp14.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L29) | [R621.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R621.txt) +R622 | Failure (selects unrelated instances) | [`RenameCpp14.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L30) | [R622.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R622.txt) +R623 | Pass | [`RenameCpp14.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L33) | [R623.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R623.txt) +R624 | Failure (selects unrelated instances) | [`RenameCpp14.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L34) | [R624.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R624.txt) +R625 | Pass | [`RenameCpp14.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L48) | [R625.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R625.txt) +R626 | Pass | [`RenameCpp14.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L52) | [R626.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R626.txt) +R627 | Pass | [`RenameCpp14.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L60) | [R627.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R627.txt) +R628 | Pass | [`RenameCpp14.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L64) | [R628.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R628.txt) +R629 | Pass | [`RenameCpp14.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L70) | [R629.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R629.txt) +R630 | Pass | [`RenameCpp14.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L71) | [R630.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R630.txt) +R631 | Pass | [`RenameCpp14.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L72) | [R631.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R631.txt) +R632 | Pass | [`RenameCpp14.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L73) | [R632.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R632.txt) +R633 | Pass | [`RenameCpp14.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L81) | [R633.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R633.txt) +R634 | Pass | [`RenameCpp14.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L83) | [R634.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R634.txt) +R635 | Failure (not available) | [`RenameCpp14.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L84) | [R635.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R635.txt) +R636 | Failure (not available) | [`RenameCpp14.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L85) | [R636.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R636.txt) +R637 | Pass | [`RenameCpp14.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L86) | [R637.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R637.txt) +R638 | Failure (not available) | [`RenameCpp14.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L87) | [R638.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R638.txt) +R639 | Failure (not available) | [`RenameCpp14.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L88) | [R639.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R639.txt) +R640 | Pass | [`RenameCpp14.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L90) | [R640.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R640.txt) +R641 | Pass | [`RenameCpp14.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L92) | [R641.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R641.txt) +R642 | Failure (not available) | [`RenameCpp14.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L93) | [R642.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R642.txt) +R643 | Failure (not available) | [`RenameCpp14.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L94) | [R643.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R643.txt) +R644 | Pass | [`RenameCpp14.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L95) | [R644.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R644.txt) +R645 | Failure (not available) | [`RenameCpp14.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L96) | [R645.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R645.txt) +R646 | Failure (not available) | [`RenameCpp14.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L97) | [R646.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R646.txt) +R647 | Pass | [`RenameCpp14.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L99) | [R647.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R647.txt) +R648 | Pass | [`RenameCpp17.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L6) | [R648.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R648.txt) +R649 | Pass | [`RenameCpp17.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L7) | [R649.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R649.txt) +R650 | Pass | [`RenameCpp17.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L8) | [R650.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R650.txt) +R651 | Pass | [`RenameCpp17.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L11) | [R651.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R651.txt) +R652 | Pass | [`RenameCpp17.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L18) | [R652.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R652.txt) +R653 | Pass | [`RenameCpp17.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L26) | [R653.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R653.txt) +R654 | Pass | [`RenameCpp17.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L27) | [R654.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R654.txt) +R655 | Pass | [`RenameCpp17.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L28) | [R655.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R655.txt) +R656 | Pass | [`RenameCpp17.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L32) | [R656.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R656.txt) +R657 | Pass | [`RenameCpp17.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L48) | [R657.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R657.txt) +R658 | Pass | [`RenameCpp17.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L49) | [R658.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R658.txt) +R659 | Pass | [`RenameCpp17.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L50) | [R659.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R659.txt) +R660 | Pass | [`RenameCpp17.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L51) | [R660.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R660.txt) +R661 | Pass | [`RenameCpp17.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L53) | [R661.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R661.txt) +R662 | Pass | [`RenameCpp17.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L55) | [R662.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R662.txt) +R663 | Pass | [`RenameCpp17.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L56) | [R663.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R663.txt) +R664 | Pass | [`RenameCpp17.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L58) | [R664.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R664.txt) +R665 | Pass | [`RenameCpp17.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L68) | [R665.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R665.txt) +R666 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L72) | [R666.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R666.txt) +R667 | Pass | [`RenameCpp17.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L73) | [R667.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R667.txt) +R668 | Pass | [`RenameCpp17.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L75) | [R668.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R668.txt) +R669 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L78) | [R669.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R669.txt) +R670 | Pass | [`RenameCpp17.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L79) | [R670.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R670.txt) +R671 | Pass | [`RenameCpp17.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L99) | [R671.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R671.txt) +R672 | Pass | [`RenameCpp17.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L105) | [R672.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R672.txt) +R673 | Pass | [`RenameCpp17.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L107) | [R673.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R673.txt) +R674 | Pass | [`RenameCpp17.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L109) | [R674.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R674.txt) +R675 | Pass | [`RenameCpp17.cpp`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L110) | [R675.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R675.txt) +R676 | Pass | [`RenameCpp17.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L111) | [R676.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R676.txt) +R677 | Pass | [`RenameCpp17.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L112) | [R677.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R677.txt) +R678 | Pass | [`RenameCpp17.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L113) | [R678.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R678.txt) +R679 | Pass | [`RenameCpp17.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L118) | [R679.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R679.txt) +R680 | Pass | [`RenameCpp17.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L121) | [R680.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R680.txt) +R681 | Pass | [`RenameCpp17.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L130) | [R681.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R681.txt) +R682 | Pass | [`RenameCpp17.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L137) | [R682.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R682.txt) +R683 | Pass | [`RenameCpp17.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L139) | [R683.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R683.txt) +R684 | Pass | [`RenameCpp17.cpp`, line 147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L147) | [R684.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R684.txt) +R685 | Pass | [`RenameCpp17.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L149) | [R685.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R685.txt) +R686 | Pass | [`RenameCpp17.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L150) | [R686.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R686.txt) +R687 | Pass | [`RenameCpp17.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L151) | [R687.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R687.txt) +R688 | Pass | [`RenameCpp17.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L153) | [R688.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R688.txt) +R689 | Pass | [`RenameCpp17.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L155) | [R689.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R689.txt) +R690 | Pass | [`RenameCpp17.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L157) | [R690.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R690.txt) +R691 | Pass | [`RenameCpp17.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L158) | [R691.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R691.txt) +R692 | Pass | [`RenameCpp17.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L159) | [R692.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R692.txt) +R693 | Pass | [`RenameCpp17.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L161) | [R693.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R693.txt) +R694 | Pass | [`RenameCpp17.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L163) | [R694.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R694.txt) +R695 | Pass | [`RenameCpp17.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L165) | [R695.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R695.txt) +R696 | Pass | [`RenameCpp17.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L166) | [R696.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R696.txt) +R697 | Pass | [`RenameCpp17.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L167) | [R697.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R697.txt) +R698 | Pass | [`RenameCpp17.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L169) | [R698.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R698.txt) +R699 | Pass | [`RenameCpp17.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L171) | [R699.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R699.txt) +R700 | Pass | [`RenameCpp17.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L175) | [R700.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R700.txt) +R701 | Pass | [`RenameCpp17.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L176) | [R701.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R701.txt) +R702 | Pass | [`RenameCpp17.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L177) | [R702.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R702.txt) +R703 | Pass | [`RenameCpp17.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L179) | [R703.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R703.txt) +R704 | Pass | [`RenameCpp17.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L181) | [R704.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R704.txt) +R705 | Failure (not available) | [`RenameCpp17.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L189) | [R705.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R705.txt) +R706 | Failure (not available) | [`RenameCpp17.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L190) | [R706.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R706.txt) +R707 | Pass | [`RenameCpp17.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L191) | [R707.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R707.txt) +R708 | Failure (not available) | [`RenameCpp17.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L193) | [R708.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R708.txt) +R709 | Failure (not available) | [`RenameCpp17.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L195) | [R709.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R709.txt) +R710 | Failure (not available) | [`RenameCpp17.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L197) | [R710.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R710.txt) +R711 | Failure (not available) | [`RenameCpp17.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L198) | [R711.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R711.txt) +R712 | Pass | [`RenameCpp17.cpp`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L199) | [R712.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R712.txt) +R713 | Failure (not available) | [`RenameCpp17.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L201) | [R713.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R713.txt) +R714 | Failure (not available) | [`RenameCpp17.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L203) | [R714.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R714.txt) +R715 | Failure (not available) | [`RenameCpp17.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L205) | [R715.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R715.txt) +R716 | Failure (not available) | [`RenameCpp17.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L206) | [R716.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R716.txt) +R717 | Pass | [`RenameCpp17.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L207) | [R717.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R717.txt) +R718 | Failure (not available) | [`RenameCpp17.cpp`, line 209](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L209) | [R718.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R718.txt) +R719 | Failure (not available) | [`RenameCpp17.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L211) | [R719.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R719.txt) +R720 | Failure (not available) | [`RenameCpp17.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L215) | [R720.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R720.txt) +R721 | Failure (not available) | [`RenameCpp17.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L216) | [R721.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R721.txt) +R722 | Pass | [`RenameCpp17.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L217) | [R722.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R722.txt) +R723 | Failure (not available) | [`RenameCpp17.cpp`, line 219](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L219) | [R723.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R723.txt) +R724 | Failure (not available) | [`RenameCpp17.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L221) | [R724.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R724.txt) +R725 | Failure (not available) | [`RenameCpp17.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L233) | [R725.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R725.txt) +R726 | Failure (not available) | [`RenameCpp17.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L234) | [R726.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R726.txt) +R727 | Pass | [`RenameCpp17.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L235) | [R727.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R727.txt) +R728 | Failure (not available) | [`RenameCpp17.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L237) | [R728.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R728.txt) +R729 | Failure (not available) | [`RenameCpp17.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L239) | [R729.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R729.txt) +R730 | Failure (not available) | [`RenameCpp17.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L241) | [R730.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R730.txt) +R731 | Failure (not available) | [`RenameCpp17.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L242) | [R731.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R731.txt) +R732 | Pass | [`RenameCpp17.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L243) | [R732.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R732.txt) +R733 | Failure (not available) | [`RenameCpp17.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L245) | [R733.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R733.txt) +R734 | Failure (not available) | [`RenameCpp17.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L247) | [R734.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R734.txt) +R735 | Failure (not available) | [`RenameCpp17.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L249) | [R735.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R735.txt) +R736 | Failure (not available) | [`RenameCpp17.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L250) | [R736.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R736.txt) +R737 | Pass | [`RenameCpp17.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L251) | [R737.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R737.txt) +R738 | Failure (not available) | [`RenameCpp17.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L253) | [R738.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R738.txt) +R739 | Failure (not available) | [`RenameCpp17.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L255) | [R739.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R739.txt) +R740 | Failure (not available) | [`RenameCpp17.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L259) | [R740.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R740.txt) +R741 | Failure (not available) | [`RenameCpp17.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L260) | [R741.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R741.txt) +R742 | Pass | [`RenameCpp17.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L261) | [R742.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R742.txt) +R743 | Failure (not available) | [`RenameCpp17.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L263) | [R743.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R743.txt) +R744 | Failure (not available) | [`RenameCpp17.cpp`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L265) | [R744.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R744.txt) +R745 | Pass | [`RenameCpp17.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L273) | [R745.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R745.txt) +R746 | Pass | [`RenameCpp17.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L274) | [R746.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R746.txt) +R747 | Pass | [`RenameCpp17.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L275) | [R747.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R747.txt) +R748 | Pass | [`RenameCpp17.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L278) | [R748.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R748.txt) +R749 | Pass | [`RenameCpp17.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L280) | [R749.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R749.txt) +R750 | Failure (not available) | [`RenameCpp17.cpp`, line 285](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L285) | [R750.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R750.txt) +R751 | Failure (not available) | [`RenameCpp17.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L286) | [R751.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R751.txt) +R752 | Failure (not available) | [`RenameCpp17.cpp`, line 290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L290) | [R752.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R752.txt) +R753 | Failure (not available) | [`RenameCpp17.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L292) | [R753.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R753.txt) +R754 | Failure (not available) | [`RenameCpp17.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L296) | [R754.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R754.txt) +R755 | Failure (not available) | [`RenameCpp17.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L298) | [R755.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R755.txt) +R756 | Failure (not available) | [`RenameCpp17.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L308) | [R756.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R756.txt) +R757 | Pass | [`RenameCpp17.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L310) | [R757.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R757.txt) +R758 | Failure (not available) | [`RenameCpp17.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L311) | [R758.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R758.txt) +R759 | Failure (not available) | [`RenameCpp17.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L312) | [R759.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R759.txt) +R760 | Failure (not available) | [`RenameCpp17.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L315) | [R760.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R760.txt) +R761 | Failure (not available) | [`RenameCpp17.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L319) | [R761.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R761.txt) +R762 | Pass | [`RenameCpp17.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L321) | [R762.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R762.txt) +R763 | Failure (not available) | [`RenameCpp17.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L322) | [R763.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R763.txt) +R764 | Failure (not available) | [`RenameCpp17.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L323) | [R764.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R764.txt) +R765 | Failure (not available) | [`RenameCpp17.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L326) | [R765.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R765.txt) +R766 | Failure (not available) | [`RenameCpp17.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L330) | [R766.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R766.txt) +R767 | Pass | [`RenameCpp17.cpp`, line 332](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L332) | [R767.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R767.txt) +R768 | Pass | [`RenameCpp17.cpp`, line 333](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L333) | [R768.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R768.txt) +R769 | Failure (not available) | [`RenameCpp17.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L334) | [R769.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R769.txt) +R770 | Failure (not available) | [`RenameCpp17.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L335) | [R770.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R770.txt) +R771 | Failure (not available) | [`RenameCpp17.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L338) | [R771.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R771.txt) +R772 | Pass | [`RenameCpp17.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L339) | [R772.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R772.txt) +R773 | Failure (not available) | [`RenameCpp17.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L343) | [R773.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R773.txt) +R774 | Pass | [`RenameCpp17.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L345) | [R774.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R774.txt) +R775 | Pass | [`RenameCpp17.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L346) | [R775.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R775.txt) +R776 | Failure (not available) | [`RenameCpp17.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L347) | [R776.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R776.txt) +R777 | Failure (not available) | [`RenameCpp17.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L348) | [R777.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R777.txt) +R778 | Pass | [`RenameCpp17.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L351) | [R778.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R778.txt) +R779 | Failure (not available) | [`RenameCpp17.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L352) | [R779.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R779.txt) +R780 | Pass | [`RenameCpp17.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L384) | [R780.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R780.txt) +R781 | Pass | [`RenameCpp17.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L385) | [R781.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R781.txt) +R782 | Pass | [`RenameCpp17.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L386) | [R782.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R782.txt) +R783 | Pass | [`RenameCpp17.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L388) | [R783.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R783.txt) +R784 | Pass | [`RenameCpp17.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L390) | [R784.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R784.txt) +R785 | Pass | [`RenameCpp17.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L392) | [R785.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R785.txt) +R786 | Pass | [`RenameCpp17.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L393) | [R786.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R786.txt) +R787 | Pass | [`RenameCpp17.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L394) | [R787.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R787.txt) +R788 | Pass | [`RenameCpp17.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L396) | [R788.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R788.txt) +R789 | Pass | [`RenameCpp17.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L398) | [R789.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R789.txt) +R790 | Pass | [`RenameCpp17.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L403) | [R790.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R790.txt) +R791 | Pass | [`RenameCpp17.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L404) | [R791.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R791.txt) +R792 | Pass | [`RenameCpp17.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L405) | [R792.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R792.txt) +R793 | Pass | [`RenameCpp17.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L407) | [R793.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R793.txt) +R794 | Pass | [`RenameCpp17.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L409) | [R794.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R794.txt) +R795 | Pass | [`RenameCpp17.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L411) | [R795.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R795.txt) +R796 | Pass | [`RenameCpp17.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L413) | [R796.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R796.txt) +R797 | Pass | [`RenameCpp17.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L415) | [R797.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R797.txt) +R798 | Pass | [`RenameCpp17.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L416) | [R798.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R798.txt) +R799 | Pass | [`RenameCpp17.cpp`, line 417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L417) | [R799.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R799.txt) +R800 | Pass | [`RenameCpp17.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L419) | [R800.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R800.txt) +R801 | Pass | [`RenameCpp17.cpp`, line 421](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L421) | [R801.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R801.txt) +R802 | Pass | [`RenameCpp17.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L422) | [R802.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R802.txt) +R803 | Pass | [`RenameCpp17.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L424) | [R803.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R803.txt) +R804 | Pass | [`RenameCpp17.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L430) | [R804.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R804.txt) +R805 | Pass | [`RenameCpp17.cpp`, line 432](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L432) | [R805.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R805.txt) +R806 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L438) | [R806.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R806.txt) +R807 | Pass | [`RenameCpp17.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L440) | [R807.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R807.txt) +R808 | Pass | [`RenameCpp17.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L443) | [R808.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R808.txt) +R809 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L444) | [R809.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R809.txt) +R810 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L449) | [R810.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R810.txt) +R811 | Pass | [`RenameCpp17.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L451) | [R811.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R811.txt) +R812 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L452) | [R812.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R812.txt) +R813 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L453) | [R813.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R813.txt) +R814 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L461) | [R814.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R814.txt) +R815 | Pass | [`RenameCpp17.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L463) | [R815.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R815.txt) +R816 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 464](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L464) | [R816.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R816.txt) +R817 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L465) | [R817.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R817.txt) +R818 | Pass | [`RenameCpp17.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L466) | [R818.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R818.txt) +R819 | Failure (selects unrelated instances) | [`RenameCpp17.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L467) | [R819.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R819.txt) +R820 | Pass | [`RenameCpp17.cpp`, line 472](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L472) | [R820.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R820.txt) +R821 | Pass | [`RenameCpp17.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L473) | [R821.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R821.txt) +R822 | Pass | [`RenameCpp17.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L475) | [R822.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R822.txt) +R823 | Pass | [`RenameCpp17.cpp`, line 478](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L478) | [R823.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R823.txt) +R824 | Pass | [`RenameCpp17.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L479) | [R824.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R824.txt) +R825 | Pass | [`RenameCpp17.cpp`, line 480](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L480) | [R825.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R825.txt) +R826 | Pass | [`RenameCpp17.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L481) | [R826.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R826.txt) +R827 | Pass | [`RenameCpp17.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L483) | [R827.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R827.txt) +R828 | Pass | [`RenameCpp17.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L489) | [R828.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R828.txt) +R829 | Pass | [`RenameCpp17.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L490) | [R829.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R829.txt) +R830 | Pass | [`RenameCpp17.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L491) | [R830.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R830.txt) +R831 | Pass | [`RenameCpp17.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L492) | [R831.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R831.txt) +R832 | Pass | [`RenameCpp17.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L496) | [R832.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R832.txt) +R833 | Pass | [`RenameCpp17.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L497) | [R833.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R833.txt) +R834 | Pass | [`RenameCpp17.cpp`, line 498](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L498) | [R834.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R834.txt) +R835 | Pass | [`RenameCpp17.cpp`, line 500](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L500) | [R835.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R835.txt) +R836 | Pass | [`RenameCpp17.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L508) | [R836.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R836.txt) +R837 | Pass | [`RenameCpp17.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L509) | [R837.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R837.txt) +R838 | Pass | [`RenameCpp17.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L510) | [R838.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R838.txt) +R839 | Pass | [`RenameCpp17.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L511) | [R839.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R839.txt) +R840 | Pass | [`RenameCpp17.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L512) | [R840.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R840.txt) +R841 | Pass | [`RenameCpp17.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L514) | [R841.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R841.txt) +R842 | Pass | [`RenameCpp17.cpp`, line 515](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L515) | [R842.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R842.txt) +R843 | Pass | [`RenameCpp17.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L520) | [R843.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R843.txt) +R844 | Pass | [`RenameCpp17.cpp`, line 521](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L521) | [R844.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R844.txt) +R845 | Pass | [`RenameCpp17.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L522) | [R845.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R845.txt) +R846 | Pass | [`RenameCpp17.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L523) | [R846.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R846.txt) +R847 | Pass | [`RenameCpp17.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L524) | [R847.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R847.txt) +R848 | Pass | [`RenameCpp17.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L526) | [R848.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R848.txt) +R849 | Pass | [`RenameCpp17.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L527) | [R849.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R849.txt) +R850 | Pass | [`RenameCpp17.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L531) | [R850.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R850.txt) +R851 | Pass | [`RenameCpp17.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L533) | [R851.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R851.txt) +R852 | Pass | [`RenameCpp17.cpp`, line 534](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L534) | [R852.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R852.txt) +R853 | Pass | [`RenameCpp17.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L535) | [R853.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R853.txt) +R854 | Pass | [`RenameCpp17.cpp`, line 536](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L536) | [R854.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R854.txt) +R855 | Pass | [`RenameCpp17.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L538) | [R855.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R855.txt) +R856 | Pass | [`RenameCpp17.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L539) | [R856.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R856.txt) +R857 | Pass | [`RenameCpp20.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L10) | [R857.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R857.txt) +R858 | Pass | [`RenameCpp20.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L13) | [R858.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R858.txt) +R859 | Pass | [`RenameCpp20.h`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L15) | [R859.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R859.txt) +R860 | Pass | [`RenameCpp20.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L17) | [R860.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R860.txt) +R861 | Pass | [`RenameCpp20.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L67) | [R861.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R861.txt) +R862 | Pass | [`RenameCpp20.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L69) | [R862.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R862.txt) +R863 | Pass | [`RenameCpp20.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L71) | [R863.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R863.txt) +R864 | Pass | [`RenameCpp20.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L72) | [R864.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R864.txt) +R865 | Pass | [`RenameCpp20.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L74) | [R865.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R865.txt) +R866 | Pass | [`RenameCpp20.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L75) | [R866.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R866.txt) +R867 | Pass | [`RenameCpp20.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L77) | [R867.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R867.txt) +R868 | Pass | [`RenameCpp20.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L78) | [R868.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R868.txt) +R869 | Pass | [`RenameCpp20.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L83) | [R869.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R869.txt) +R870 | Pass | [`RenameCpp20.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L85) | [R870.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R870.txt) +R871 | Pass | [`RenameCpp20.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L87) | [R871.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R871.txt) +R872 | Pass | [`RenameCpp20.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L88) | [R872.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R872.txt) +R873 | Pass | [`RenameCpp20.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L90) | [R873.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R873.txt) +R874 | Pass | [`RenameCpp20.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L91) | [R874.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R874.txt) +R875 | Pass | [`RenameCpp20.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L93) | [R875.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R875.txt) +R876 | Pass | [`RenameCpp20.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L94) | [R876.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R876.txt) +R877 | Pass | [`RenameCpp20.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L102) | [R877.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R877.txt) +R878 | Pass | [`RenameCpp20.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L105) | [R878.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R878.txt) +R879 | Pass | [`RenameCpp20.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L106) | [R879.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R879.txt) +R880 | Pass | [`RenameCpp20.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L107) | [R880.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R880.txt) +R881 | Pass | [`RenameCpp20.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L109) | [R881.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R881.txt) +R882 | Pass | [`RenameCpp20.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L111) | [R882.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R882.txt) +R883 | Pass | [`RenameCpp20.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L113) | [R883.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R883.txt) +R884 | Pass | [`RenameCpp20.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L117) | [R884.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R884.txt) +R885 | Pass | [`RenameCpp20.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L118) | [R885.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R885.txt) +R886 | Pass | [`RenameCpp20.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L119) | [R886.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R886.txt) +R887 | Pass | [`RenameCpp20.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L121) | [R887.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R887.txt) +R888 | Pass | [`RenameCpp20.cpp`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L123) | [R888.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R888.txt) +R889 | Pass | [`RenameCpp20.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L125) | [R889.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R889.txt) +R890 | Pass | [`RenameCpp20.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L129) | [R890.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R890.txt) +R891 | Pass | [`RenameCpp20.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L130) | [R891.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R891.txt) +R892 | Pass | [`RenameCpp20.cpp`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L131) | [R892.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R892.txt) +R893 | Pass | [`RenameCpp20.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L132) | [R893.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R893.txt) +R894 | Pass | [`RenameCpp20.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L134) | [R894.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R894.txt) +R895 | Pass | [`RenameCpp20.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L136) | [R895.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R895.txt) +R896 | Pass | [`RenameCpp20.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L138) | [R896.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R896.txt) +R897 | Pass | [`RenameCpp20.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L143) | [R897.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R897.txt) +R898 | Pass | [`RenameCpp20.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L149) | [R898.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R898.txt) +R899 | Pass | [`RenameCpp20.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L163) | [R899.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R899.txt) +R900 | Pass | [`RenameCpp20.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L164) | [R900.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R900.txt) +R901 | Pass | [`RenameCpp20.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L165) | [R901.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R901.txt) +R902 | Pass | [`RenameCpp20.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L168) | [R902.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R902.txt) +R903 | Pass | [`RenameCpp20.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L175) | [R903.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R903.txt) +R904 | Pass | [`RenameCpp20.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L176) | [R904.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R904.txt) +R905 | Pass | [`RenameCpp20.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L177) | [R905.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R905.txt) +R906 | Pass | [`RenameCpp20.cpp`, line 180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L180) | [R906.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R906.txt) +R907 | Pass | [`RenameCpp20.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L190) | [R907.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R907.txt) +R908 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L191) | [R908.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R908.txt) +R909 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L192) | [R909.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R909.txt) +R910 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L193) | [R910.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R910.txt) +R911 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L194) | [R911.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R911.txt) +R912 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L196) | [R912.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R912.txt) +R913 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L198) | [R913.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R913.txt) +R914 | Pass | [`RenameCpp20.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L200) | [R914.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R914.txt) +R915 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L201) | [R915.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R915.txt) +R916 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L202) | [R916.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R916.txt) +R917 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L211) | [R917.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R917.txt) +R918 | Failure (not available) | [`RenameCpp20.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L212) | [R918.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R918.txt) +R919 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L214) | [R919.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R919.txt) +R920 | Failure (selects unrelated instances) | [`RenameCpp20.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L215) | [R920.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R920.txt) +R921 | Failure (not available) | [`RenameCpp20.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L216) | [R921.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R921.txt) +R922 | Failure (not available) | [`RenameCpp20.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L217) | [R922.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R922.txt) +R923 | Pass | [`RenameCpp20.cpp`, line 220](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L220) | [R923.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R923.txt) +R924 | Pass | [`RenameCpp20.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L221) | [R924.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R924.txt) +R925 | Failure (not available) | [`RenameCpp20.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L222) | [R925.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R925.txt) +R926 | Pass | [`RenameCpp20.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L223) | [R926.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R926.txt) +R927 | Failure (not available) | [`RenameCpp20.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L224) | [R927.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R927.txt) +R928 | Pass | [`RenameCpp20.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L226) | [R928.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R928.txt) +R929 | Pass | [`RenameCpp20.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L236) | [R929.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R929.txt) +R930 | Pass | [`RenameCpp20.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L237) | [R930.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R930.txt) +R931 | Pass | [`RenameCpp20.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L240) | [R931.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R931.txt) +R932 | Pass | [`RenameCpp20.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L241) | [R932.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R932.txt) +R933 | Pass | [`RenameCpp20.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L248) | [R933.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R933.txt) +R934 | Pass | [`RenameCpp20.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L262) | [R934.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R934.txt) +R935 | Pass | [`RenameCpp20.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L263) | [R935.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R935.txt) +R936 | Pass | [`RenameCpp20.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L269) | [R936.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R936.txt) +R937 | Pass | [`RenameCpp20.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L279) | [R937.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R937.txt) +R938 | Pass | [`RenameCpp20.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L280) | [R938.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R938.txt) +R939 | Pass | [`RenameCpp20.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L282) | [R939.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R939.txt) +R940 | Pass | [`RenameCpp20.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L288) | [R940.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R940.txt) +R941 | Pass | [`RenameCpp20.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L295) | [R941.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R941.txt) +R942 | Pass | [`RenameCpp20.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L296) | [R942.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R942.txt) +R943 | Pass | [`RenameCpp20.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L297) | [R943.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R943.txt) +R944 | Pass | [`RenameCpp20.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L299) | [R944.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R944.txt) +R945 | Pass | [`RenameCpp20.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L305) | [R945.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R945.txt) +R946 | Pass | [`RenameCpp20.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L312) | [R946.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R946.txt) +R947 | Pass | [`RenameCpp20.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L313) | [R947.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R947.txt) +R948 | Pass | [`RenameCpp20.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L314) | [R948.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R948.txt) +R949 | Pass | [`RenameCpp20.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L316) | [R949.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R949.txt) +R950 | Pass | [`RenameCpp20.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L321) | [R950.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R950.txt) +R951 | Pass | [`RenameCpp20.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L322) | [R951.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R951.txt) +R952 | Pass | [`RenameCpp20.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L329) | [R952.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R952.txt) +R953 | Pass | [`RenameCpp20.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L336) | [R953.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R953.txt) +R954 | Pass | [`RenameCpp20.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L345) | [R954.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R954.txt) +R955 | Pass | [`RenameCpp20.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L346) | [R955.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R955.txt) +R956 | Pass | [`RenameCpp20.cpp`, line 357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L357) | [R956.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R956.txt) +R957 | Pass | [`RenameCpp20.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L358) | [R957.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R957.txt) +R958 | Pass | [`RenameCpp20.cpp`, line 361](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L361) | [R958.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R958.txt) +R959 | Pass | [`RenameCpp20.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L364) | [R959.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R959.txt) +R960 | Pass | [`RenameCpp20.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L380) | [R960.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R960.txt) +R961 | Pass | [`RenameCpp20.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L381) | [R961.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R961.txt) +R962 | Pass | [`RenameCpp20.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L384) | [R962.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R962.txt) +R963 | Pass | [`RenameCpp20.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L385) | [R963.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R963.txt) +R964 | Pass | [`RenameCpp20.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L389) | [R964.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R964.txt) +R965 | Pass | [`RenameCpp20.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L390) | [R965.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R965.txt) +R966 | Pass | [`RenameCpp20.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L396) | [R966.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R966.txt) +R967 | Pass | [`RenameCpp20.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L397) | [R967.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R967.txt) +R968 | Pass | [`RenameCpp20.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L403) | [R968.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R968.txt) +R969 | Pass | [`RenameCpp20.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L404) | [R969.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R969.txt) +R970 | Failure (not available) | [`RenameCpp20.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L405) | [R970.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R970.txt) +R971 | Pass | [`RenameCpp20.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L408) | [R971.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R971.txt) +R972 | Failure (not available) | [`RenameCpp20.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L409) | [R972.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R972.txt) +R973 | Pass | [`RenameCpp20.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L416) | [R973.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R973.txt) +R974 | Pass | [`RenameCpp20.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L418) | [R974.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R974.txt) +R975 | Pass | [`RenameCpp20.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L422) | [R975.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R975.txt) +R976 | Pass | [`RenameCpp20.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L423) | [R976.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R976.txt) +R977 | Pass | [`RenameCpp20.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L429) | [R977.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R977.txt) +R978 | Pass | [`RenameCpp20.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L430) | [R978.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R978.txt) +R979 | Pass | [`RenameCpp20.cpp`, line 436](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L436) | [R979.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R979.txt) +R980 | Pass | [`RenameCpp20.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L437) | [R980.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R980.txt) +R981 | Pass | [`RenameCpp20.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L443) | [R981.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R981.txt) +R982 | Pass | [`RenameCpp20.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L444) | [R982.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R982.txt) +R983 | Pass | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L449) | [R983.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R983.txt) +R984 | Pass | [`RenameCpp20.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L451) | [R984.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R984.txt) +R985 | Pass | [`RenameCpp20.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L452) | [R985.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R985.txt) +R986 | Pass | [`RenameCpp20.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L454) | [R986.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R986.txt) +R987 | | [`RenameCpp20Constraints.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L48) | [R987.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R987.txt) +R988 | | [`RenameCpp20Constraints.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L50) | [R988.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R988.txt) +R989 | | [`RenameCpp20Constraints.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L51) | [R989.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R989.txt) +R990 | | [`RenameCpp20Constraints.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L52) | [R990.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R990.txt) +R991 | | [`RenameCpp20Constraints.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L55) | [R991.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R991.txt) +R992 | | [`RenameCpp20Constraints.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L56) | [R992.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R992.txt) +R993 | | [`RenameCpp20Constraints.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L61) | [R993.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R993.txt) +R994 | | [`RenameCpp20Constraints.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L62) | [R994.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R994.txt) +R995 | | [`RenameCpp20Constraints.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L64) | [R995.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R995.txt) +R996 | | [`RenameCpp20Constraints.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L65) | [R996.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R996.txt) +R997 | | [`RenameCpp20Constraints.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L66) | [R997.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R997.txt) +R998 | | [`RenameCpp20Constraints.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L67) | [R998.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R998.txt) +R999 | | [`RenameCpp20Constraints.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L68) | [R999.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R999.txt) +R1000 | | [`RenameCpp20Constraints.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L71) | [R1000.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1000.txt) +R1001 | | [`RenameCpp20Constraints.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L72) | [R1001.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1001.txt) +R1002 | | [`RenameCpp20Constraints.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L78) | [R1002.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1002.txt) +R1003 | | [`RenameCpp20Constraints.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L80) | [R1003.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1003.txt) +R1004 | | [`RenameCpp20Constraints.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L81) | [R1004.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1004.txt) +R1005 | | [`RenameCpp20Constraints.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L83) | [R1005.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1005.txt) +R1006 | | [`RenameCpp20Constraints.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L84) | [R1006.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1006.txt) +R1007 | | [`RenameCpp20Constraints.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L85) | [R1007.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1007.txt) +R1008 | | [`RenameCpp20Constraints.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L86) | [R1008.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1008.txt) +R1009 | | [`RenameCpp20Constraints.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L89) | [R1009.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1009.txt) +R1010 | | [`RenameCpp20Constraints.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L90) | [R1010.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1010.txt) +R1011 | | [`RenameCpp20Constraints.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L95) | [R1011.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1011.txt) +R1012 | | [`RenameCpp20Constraints.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L97) | [R1012.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1012.txt) +R1013 | | [`RenameCpp20Constraints.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L98) | [R1013.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1013.txt) +R1014 | | [`RenameCpp20Constraints.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L99) | [R1014.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1014.txt) +R1015 | | [`RenameCpp20Constraints.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L100) | [R1015.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1015.txt) +R1016 | | [`RenameCpp20Constraints.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L102) | [R1016.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1016.txt) +R1017 | | [`RenameCpp20Constraints.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L103) | [R1017.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1017.txt) +R1018 | | [`RenameCpp20Constraints.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L106) | [R1018.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1018.txt) +R1019 | | [`RenameCpp20Constraints.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L107) | [R1019.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1019.txt) +R1020 | | [`RenameCpp20Constraints.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L112) | [R1020.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1020.txt) +R1021 | | [`RenameCpp20Constraints.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L114) | [R1021.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1021.txt) +R1022 | | [`RenameCpp20Constraints.cpp`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L115) | [R1022.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1022.txt) +R1023 | | [`RenameCpp20Constraints.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L116) | [R1023.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1023.txt) +R1024 | | [`RenameCpp20Constraints.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L118) | [R1024.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1024.txt) +R1025 | | [`RenameCpp20Constraints.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L119) | [R1025.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1025.txt) +R1026 | | [`RenameCpp20Constraints.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L120) | [R1026.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1026.txt) +R1027 | | [`RenameCpp20Constraints.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L121) | [R1027.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1027.txt) +R1028 | | [`RenameCpp20Constraints.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L124) | [R1028.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1028.txt) +R1029 | | [`RenameCpp20Constraints.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L125) | [R1029.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1029.txt) +R1030 | | [`RenameCpp20Constraints.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L130) | [R1030.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1030.txt) +R1031 | | [`RenameCpp20Constraints.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L132) | [R1031.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1031.txt) +R1032 | | [`RenameCpp20Constraints.cpp`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L133) | [R1032.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1032.txt) +R1033 | | [`RenameCpp20Constraints.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L134) | [R1033.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1033.txt) +R1034 | | [`RenameCpp20Constraints.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L136) | [R1034.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1034.txt) +R1035 | | [`RenameCpp20Constraints.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L137) | [R1035.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1035.txt) +R1036 | | [`RenameCpp20Constraints.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L138) | [R1036.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1036.txt) +R1037 | | [`RenameCpp20Constraints.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L139) | [R1037.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1037.txt) +R1038 | | [`RenameCpp20Constraints.cpp`, line 142](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L142) | [R1038.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1038.txt) +R1039 | | [`RenameCpp20Constraints.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L143) | [R1039.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1039.txt) +R1040 | | [`RenameCpp20Constraints.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L148) | [R1040.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1040.txt) +R1041 | | [`RenameCpp20Constraints.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L150) | [R1041.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1041.txt) +R1042 | | [`RenameCpp20Constraints.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L151) | [R1042.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1042.txt) +R1043 | | [`RenameCpp20Constraints.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L152) | [R1043.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1043.txt) +R1044 | | [`RenameCpp20Constraints.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L153) | [R1044.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1044.txt) +R1045 | | [`RenameCpp20Constraints.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L155) | [R1045.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1045.txt) +R1046 | | [`RenameCpp20Constraints.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L156) | [R1046.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1046.txt) +R1047 | | [`RenameCpp20Constraints.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L157) | [R1047.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1047.txt) +R1048 | | [`RenameCpp20Constraints.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L160) | [R1048.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1048.txt) +R1049 | | [`RenameCpp20Constraints.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L161) | [R1049.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1049.txt) +R1050 | | [`RenameCpp20Constraints.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L166) | [R1050.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1050.txt) +R1051 | | [`RenameCpp20Constraints.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L168) | [R1051.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1051.txt) +R1052 | | [`RenameCpp20Constraints.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L169) | [R1052.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1052.txt) +R1053 | | [`RenameCpp20Constraints.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L170) | [R1053.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1053.txt) +R1054 | | [`RenameCpp20Constraints.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L171) | [R1054.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1054.txt) +R1055 | | [`RenameCpp20Constraints.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L173) | [R1055.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1055.txt) +R1056 | | [`RenameCpp20Constraints.cpp`, line 174](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L174) | [R1056.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1056.txt) +R1057 | | [`RenameCpp20Constraints.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L175) | [R1057.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1057.txt) +R1058 | | [`RenameCpp20Constraints.cpp`, line 178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L178) | [R1058.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1058.txt) +R1059 | | [`RenameCpp20Constraints.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L179) | [R1059.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1059.txt) +R1060 | | [`RenameCpp20Constraints.cpp`, line 184](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L184) | [R1060.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1060.txt) +R1061 | | [`RenameCpp20Constraints.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L186) | [R1061.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1061.txt) +R1062 | | [`RenameCpp20Constraints.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L187) | [R1062.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1062.txt) +R1063 | | [`RenameCpp20Constraints.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L188) | [R1063.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1063.txt) +R1064 | | [`RenameCpp20Constraints.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L189) | [R1064.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1064.txt) +R1065 | | [`RenameCpp20Constraints.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L191) | [R1065.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1065.txt) +R1066 | | [`RenameCpp20Constraints.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L192) | [R1066.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1066.txt) +R1067 | | [`RenameCpp20Constraints.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L193) | [R1067.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1067.txt) +R1068 | | [`RenameCpp20Constraints.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L194) | [R1068.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1068.txt) +R1069 | | [`RenameCpp20Constraints.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L197) | [R1069.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1069.txt) +R1070 | | [`RenameCpp20Constraints.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L198) | [R1070.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1070.txt) +R1071 | | [`RenameCpp20Constraints.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L203) | [R1071.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1071.txt) +R1072 | | [`RenameCpp20Constraints.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L205) | [R1072.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1072.txt) +R1073 | | [`RenameCpp20Constraints.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L206) | [R1073.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1073.txt) +R1074 | | [`RenameCpp20Constraints.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L207) | [R1074.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1074.txt) +R1075 | | [`RenameCpp20Constraints.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L208) | [R1075.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1075.txt) +R1076 | | [`RenameCpp20Constraints.cpp`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L210) | [R1076.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1076.txt) +R1077 | | [`RenameCpp20Constraints.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L211) | [R1077.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1077.txt) +R1078 | | [`RenameCpp20Constraints.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L212) | [R1078.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1078.txt) +R1079 | | [`RenameCpp20Constraints.cpp`, line 213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L213) | [R1079.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1079.txt) +R1080 | | [`RenameCpp20Constraints.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L216) | [R1080.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1080.txt) +R1081 | | [`RenameCpp20Constraints.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L217) | [R1081.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1081.txt) +R1082 | | [`RenameCpp20Constraints.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L222) | [R1082.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1082.txt) +R1083 | | [`RenameCpp20Constraints.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L223) | [R1083.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1083.txt) +R1084 | | [`RenameCpp20Constraints.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L224) | [R1084.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1084.txt) +R1085 | | [`RenameCpp20Constraints.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L226) | [R1085.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1085.txt) +R1086 | | [`RenameCpp20Constraints.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L227) | [R1086.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1086.txt) +R1087 | | [`RenameCpp20Constraints.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L228) | [R1087.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1087.txt) +R1088 | | [`RenameCpp20Constraints.cpp`, line 230](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L230) | [R1088.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1088.txt) +R1089 | | [`RenameCpp20Constraints.cpp`, line 231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L231) | [R1089.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1089.txt) +R1090 | | [`RenameCpp20Constraints.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L232) | [R1090.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1090.txt) +R1091 | | [`RenameCpp20Constraints.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L233) | [R1091.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1091.txt) +R1092 | | [`RenameCpp20Constraints.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L234) | [R1092.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1092.txt) +R1093 | | [`RenameCpp20Constraints.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L235) | [R1093.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1093.txt) +R1094 | | [`RenameCpp20Constraints.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L236) | [R1094.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1094.txt) +R1095 | | [`RenameCpp20Constraints.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L239) | [R1095.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1095.txt) +R1096 | | [`RenameCpp20Constraints.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L240) | [R1096.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1096.txt) +R1097 | | [`RenameCpp20Constraints.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L245) | [R1097.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1097.txt) +R1098 | | [`RenameCpp20Constraints.cpp`, line 246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L246) | [R1098.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1098.txt) +R1099 | | [`RenameCpp20Constraints.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L247) | [R1099.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1099.txt) +R1100 | | [`RenameCpp20Constraints.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L249) | [R1100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1100.txt) +R1101 | | [`RenameCpp20Constraints.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L250) | [R1101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1101.txt) +R1102 | | [`RenameCpp20Constraints.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L251) | [R1102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1102.txt) +R1103 | | [`RenameCpp20Constraints.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L252) | [R1103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1103.txt) +R1104 | | [`RenameCpp20Constraints.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L253) | [R1104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1104.txt) +R1105 | | [`RenameCpp20Constraints.cpp`, line 254](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L254) | [R1105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1105.txt) +R1106 | | [`RenameCpp20Constraints.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L255) | [R1106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1106.txt) +R1107 | | [`RenameCpp20Constraints.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L257) | [R1107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1107.txt) +R1108 | | [`RenameCpp20Constraints.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L258) | [R1108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1108.txt) +R1109 | | [`RenameCpp20Constraints.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L259) | [R1109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1109.txt) +R1110 | | [`RenameCpp20Constraints.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L262) | [R1110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1110.txt) +R1111 | | [`RenameCpp20Constraints.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L263) | [R1111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1111.txt) +R1112 | | [`RenameCpp20Constraints.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L268) | [R1112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1112.txt) +R1113 | | [`RenameCpp20Constraints.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L269) | [R1113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1113.txt) +R1114 | | [`RenameCpp20Constraints.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L270) | [R1114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1114.txt) +R1115 | | [`RenameCpp20Constraints.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L272) | [R1115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1115.txt) +R1116 | | [`RenameCpp20Constraints.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L273) | [R1116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1116.txt) +R1117 | | [`RenameCpp20Constraints.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L274) | [R1117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1117.txt) +R1118 | | [`RenameCpp20Constraints.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L275) | [R1118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1118.txt) +R1119 | | [`RenameCpp20Constraints.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L277) | [R1119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1119.txt) +R1120 | | [`RenameCpp20Constraints.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L278) | [R1120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1120.txt) +R1121 | | [`RenameCpp20Constraints.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L279) | [R1121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1121.txt) +R1122 | | [`RenameCpp20Constraints.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L280) | [R1122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1122.txt) +R1123 | | [`RenameCpp20Constraints.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L281) | [R1123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1123.txt) +R1124 | | [`RenameCpp20Constraints.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L282) | [R1124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1124.txt) +R1125 | | [`RenameCpp20Constraints.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L283) | [R1125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1125.txt) +R1126 | | [`RenameCpp20Constraints.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L286) | [R1126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1126.txt) +R1127 | | [`RenameCpp20Constraints.cpp`, line 287](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L287) | [R1127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1127.txt) +R1128 | | [`RenameCpp20Constraints.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L292) | [R1128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1128.txt) +R1129 | | [`RenameCpp20Constraints.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L293) | [R1129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1129.txt) +R1130 | | [`RenameCpp20Constraints.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L294) | [R1130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1130.txt) +R1131 | | [`RenameCpp20Constraints.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L296) | [R1131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1131.txt) +R1132 | | [`RenameCpp20Constraints.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L297) | [R1132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1132.txt) +R1133 | | [`RenameCpp20Constraints.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L298) | [R1133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1133.txt) +R1134 | | [`RenameCpp20Constraints.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L299) | [R1134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1134.txt) +R1135 | | [`RenameCpp20Constraints.cpp`, line 300](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L300) | [R1135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1135.txt) +R1136 | | [`RenameCpp20Constraints.cpp`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L301) | [R1136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1136.txt) +R1137 | | [`RenameCpp20Constraints.cpp`, line 302](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L302) | [R1137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1137.txt) +R1138 | | [`RenameCpp20Constraints.cpp`, line 304](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L304) | [R1138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1138.txt) +R1139 | | [`RenameCpp20Constraints.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L305) | [R1139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1139.txt) +R1140 | | [`RenameCpp20Constraints.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L306) | [R1140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1140.txt) +R1141 | | [`RenameCpp20Constraints.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L307) | [R1141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1141.txt) +R1142 | | [`RenameCpp20Constraints.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L310) | [R1142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1142.txt) +R1143 | | [`RenameCpp20Constraints.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L311) | [R1143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1143.txt) +R1144 | | [`RenameCpp20Constraints.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L316) | [R1144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1144.txt) +R1145 | | [`RenameCpp20Constraints.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L317) | [R1145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1145.txt) +R1146 | | [`RenameCpp20Constraints.cpp`, line 318](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L318) | [R1146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1146.txt) +R1147 | | [`RenameCpp20Constraints.cpp`, line 320](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L320) | [R1147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1147.txt) +R1148 | | [`RenameCpp20Constraints.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L321) | [R1148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1148.txt) +R1149 | | [`RenameCpp20Constraints.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L322) | [R1149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1149.txt) +R1150 | | [`RenameCpp20Constraints.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L323) | [R1150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1150.txt) +R1151 | | [`RenameCpp20Constraints.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L325) | [R1151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1151.txt) +R1152 | | [`RenameCpp20Constraints.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L326) | [R1152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1152.txt) +R1153 | | [`RenameCpp20Constraints.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L327) | [R1153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1153.txt) +R1154 | | [`RenameCpp20Constraints.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L328) | [R1154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1154.txt) +R1155 | | [`RenameCpp20Constraints.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L329) | [R1155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1155.txt) +R1156 | | [`RenameCpp20Constraints.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L330) | [R1156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1156.txt) +R1157 | | [`RenameCpp20Constraints.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L331) | [R1157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1157.txt) +R1158 | | [`RenameCpp20Constraints.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L334) | [R1158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1158.txt) +R1159 | | [`RenameCpp20Constraints.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L335) | [R1159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1159.txt) +R1160 | | [`RenameCpp20Constraints.cpp`, line 340](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L340) | [R1160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1160.txt) +R1161 | | [`RenameCpp20Constraints.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L341) | [R1161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1161.txt) +R1162 | | [`RenameCpp20Constraints.cpp`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L342) | [R1162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1162.txt) +R1163 | | [`RenameCpp20Constraints.cpp`, line 344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L344) | [R1163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1163.txt) +R1164 | | [`RenameCpp20Constraints.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L345) | [R1164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1164.txt) +R1165 | | [`RenameCpp20Constraints.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L346) | [R1165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1165.txt) +R1166 | | [`RenameCpp20Constraints.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L347) | [R1166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1166.txt) +R1167 | | [`RenameCpp20Constraints.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L348) | [R1167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1167.txt) +R1168 | | [`RenameCpp20Constraints.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L349) | [R1168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1168.txt) +R1169 | | [`RenameCpp20Constraints.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L350) | [R1169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1169.txt) +R1170 | | [`RenameCpp20Constraints.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L352) | [R1170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1170.txt) +R1171 | | [`RenameCpp20Constraints.cpp`, line 353](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L353) | [R1171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1171.txt) +R1172 | | [`RenameCpp20Constraints.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L354) | [R1172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1172.txt) +R1173 | | [`RenameCpp20Constraints.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L355) | [R1173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1173.txt) +R1174 | | [`RenameCpp20Constraints.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L358) | [R1174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1174.txt) +R1175 | | [`RenameCpp20Constraints.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L359) | [R1175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1175.txt) +R1176 | | [`RenameCpp20Constraints.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L364) | [R1176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1176.txt) +R1177 | | [`RenameCpp20Constraints.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L365) | [R1177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1177.txt) +R1178 | | [`RenameCpp20Constraints.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L366) | [R1178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1178.txt) +R1179 | | [`RenameCpp20Constraints.cpp`, line 368](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L368) | [R1179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1179.txt) +R1180 | | [`RenameCpp20Constraints.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L369) | [R1180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1180.txt) +R1181 | | [`RenameCpp20Constraints.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L370) | [R1181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1181.txt) +R1182 | | [`RenameCpp20Constraints.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L371) | [R1182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1182.txt) +R1183 | | [`RenameCpp20Constraints.cpp`, line 372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L372) | [R1183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1183.txt) +R1184 | | [`RenameCpp20Constraints.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L374) | [R1184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1184.txt) +R1185 | | [`RenameCpp20Constraints.cpp`, line 375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L375) | [R1185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1185.txt) +R1186 | | [`RenameCpp20Constraints.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L376) | [R1186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1186.txt) +R1187 | | [`RenameCpp20Constraints.cpp`, line 377](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L377) | [R1187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1187.txt) +R1188 | | [`RenameCpp20Constraints.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L378) | [R1188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1188.txt) +R1189 | | [`RenameCpp20Constraints.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L379) | [R1189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1189.txt) +R1190 | | [`RenameCpp20Constraints.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L380) | [R1190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1190.txt) +R1191 | | [`RenameCpp20Constraints.cpp`, line 383](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L383) | [R1191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1191.txt) +R1192 | | [`RenameCpp20Constraints.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L384) | [R1192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1192.txt) +R1193 | | [`RenameCpp20Constraints.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L389) | [R1193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1193.txt) +R1194 | | [`RenameCpp20Constraints.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L390) | [R1194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1194.txt) +R1195 | | [`RenameCpp20Constraints.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L391) | [R1195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1195.txt) +R1196 | | [`RenameCpp20Constraints.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L393) | [R1196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1196.txt) +R1197 | | [`RenameCpp20Constraints.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L394) | [R1197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1197.txt) +R1198 | | [`RenameCpp20Constraints.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L395) | [R1198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1198.txt) +R1199 | | [`RenameCpp20Constraints.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L396) | [R1199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1199.txt) +R1200 | | [`RenameCpp20Constraints.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L397) | [R1200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1200.txt) +R1201 | | [`RenameCpp20Constraints.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L398) | [R1201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1201.txt) +R1202 | | [`RenameCpp20Constraints.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L399) | [R1202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1202.txt) +R1203 | | [`RenameCpp20Constraints.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L401) | [R1203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1203.txt) +R1204 | | [`RenameCpp20Constraints.cpp`, line 402](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L402) | [R1204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1204.txt) +R1205 | | [`RenameCpp20Constraints.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L403) | [R1205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1205.txt) +R1206 | | [`RenameCpp20Constraints.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L404) | [R1206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1206.txt) +R1207 | | [`RenameCpp20Constraints.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L405) | [R1207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1207.txt) +R1208 | | [`RenameCpp20Constraints.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L408) | [R1208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1208.txt) +R1209 | | [`RenameCpp20Constraints.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L409) | [R1209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1209.txt) +R1210 | | [`RenameCpp20Constraints.cpp`, line 441](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L441) | [R1210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1210.txt) +R1211 | | [`RenameCpp20Constraints.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L443) | [R1211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1211.txt) +R1212 | | [`RenameCpp20Constraints.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L446) | [R1212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1212.txt) +R1213 | | [`RenameCpp20Constraints.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L452) | [R1213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1213.txt) +R1214 | | [`RenameCpp20Constraints.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L454) | [R1214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1214.txt) +R1215 | | [`RenameCpp20Constraints.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L457) | [R1215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1215.txt) +R1216 | | [`RenameCpp20Constraints.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L463) | [R1216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1216.txt) +R1217 | | [`RenameCpp20Constraints.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L465) | [R1217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1217.txt) +R1218 | | [`RenameCpp20Constraints.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L468) | [R1218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1218.txt) +R1219 | | [`RenameCpp20Constraints.cpp`, line 474](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L474) | [R1219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1219.txt) +R1220 | | [`RenameCpp20Constraints.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L476) | [R1220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1220.txt) +R1221 | | [`RenameCpp20Constraints.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L483) | [R1221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1221.txt) +R1222 | | [`RenameCpp20Constraints.cpp`, line 485](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L485) | [R1222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1222.txt) +R1223 | | [`RenameCpp20Constraints.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L488) | [R1223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1223.txt) +R1224 | | [`RenameCpp20Constraints.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L494) | [R1224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1224.txt) +R1225 | | [`RenameCpp20Constraints.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L496) | [R1225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1225.txt) +R1226 | | [`RenameCpp20Constraints.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L503) | [R1226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1226.txt) +R1227 | | [`RenameCpp20Constraints.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L505) | [R1227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1227.txt) +R1228 | | [`RenameCpp20Constraints.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L512) | [R1228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1228.txt) +R1229 | | [`RenameCpp20Constraints.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L514) | [R1229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1229.txt) +R1230 | | [`RenameCpp20Constraints.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L522) | [R1230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1230.txt) +R1231 | | [`RenameCpp20Constraints.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L524) | [R1231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1231.txt) +R1232 | | [`RenameCpp20Constraints.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L527) | [R1232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1232.txt) +R1233 | | [`RenameCpp20Constraints.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L533) | [R1233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1233.txt) +R1234 | | [`RenameCpp20Constraints.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L535) | [R1234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1234.txt) +R1235 | | [`RenameCpp20Constraints.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L538) | [R1235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1235.txt) +R1236 | | [`RenameCpp20Constraints.cpp`, line 544](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L544) | [R1236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1236.txt) +R1237 | | [`RenameCpp20Constraints.cpp`, line 546](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L546) | [R1237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1237.txt) +R1238 | | [`RenameCpp20Constraints.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L549) | [R1238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1238.txt) +R1239 | | [`RenameCpp20Constraints.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L555) | [R1239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1239.txt) +R1240 | | [`RenameCpp20Constraints.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L557) | [R1240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1240.txt) +R1241 | | [`RenameCpp20Constraints.cpp`, line 565](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L565) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1242 | | [`RenameCpp20Constraints.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L567) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1243 | | [`RenameCpp20Constraints.cpp`, line 574](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L574) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1244 | | [`RenameCpp20Constraints.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L576) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1245 | | [`RenameCpp20Constraints.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L583) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L585) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L588) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 594](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L594) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 596](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L596) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 599](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L599) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L606) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L608) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L609) | [R1253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1253.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 611](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L611) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 615](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L615) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 616](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L616) | [R1256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1256.txt) +R1257 | | [`RenameCpp20Constraints.cpp`, line 623](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L623) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1258 | | [`RenameCpp20Constraints.cpp`, line 625](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L625) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L626) | [R1259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1259.txt) +R1260 | | [`RenameCpp20Constraints.cpp`, line 628](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L628) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1261 | | [`RenameCpp20Constraints.cpp`, line 631](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L631) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 632](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L632) | [R1262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1262.txt) +R1263 | | [`RenameCpp20Constraints.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L639) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1264 | | [`RenameCpp20Constraints.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L641) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L642) | [R1265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1265.txt) +R1266 | | [`RenameCpp20Constraints.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L644) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1267 | | [`RenameCpp20Constraints.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L647) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L648) | [R1268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1268.txt) +R1269 | | [`RenameCpp20Constraints.cpp`, line 656](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L656) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1270 | | [`RenameCpp20Constraints.cpp`, line 658](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L658) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 659](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L659) | [R1271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1271.txt) +R1272 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1273 | | [`RenameCpp20Constraints.cpp`, line 665](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L665) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L666) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1275 | | [`RenameCpp20Constraints.cpp`, line 673](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L673) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1276 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L676) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L682) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 689](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L689) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L691) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L697) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 706](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L706) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L708) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L709) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 711](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L711) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 715](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L715) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 723](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L723) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 725](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L725) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 726](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L726) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 739](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L739) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 741](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L741) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L742) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L744) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L756) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L758) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L759) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L761) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 773](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L773) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L776) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 778](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L778) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L781) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L791) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 794](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L794) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 797](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L797) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 798](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L798) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 806](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L806) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L809) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 816](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L816) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 817](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L817) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 818](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L818) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 840](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L840) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 841](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L841) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 842](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L842) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 843](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L843) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 847](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L847) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 853](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L853) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 864](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L864) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 865](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L865) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L866) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L867) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 871](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L871) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 877](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L877) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 888](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L888) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L889) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L890) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 891](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L891) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L892) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 896](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L896) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L902) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 903](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L903) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L912) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L915) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 916](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L916) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 917](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L917) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 927](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L927) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L929) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 936](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L936) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 937](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L937) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L940) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 941](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L941) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L952) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L954) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 962](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L962) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L965) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 966](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L966) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 967](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L967) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 979](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L979) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 980](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L980) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L981) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L988) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 989](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L989) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 994](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L994) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 995](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L995) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 1004](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1004) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1005) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 1006](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1006) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 1013](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1013) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 1014](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1014) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1018) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1019](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1019) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1029](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1029) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1030) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1031](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1031) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1038](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1038) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1039](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1039) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1042) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1045](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1045) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1046) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1056](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1056) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1057) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1058](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1058) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1066](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1066) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1067) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1070](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1070) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1071](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1071) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1077](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1077) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1083](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1083) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1092](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1092) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1096) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1119) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1122) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1126) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1132) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1135) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1139) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1145) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1148) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1152) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1163) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1167) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1176) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1180) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1186) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1189) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1193) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1204) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1221) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1224) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1233) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1243) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1253) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1256) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) diff --git a/results/annotated/VisualStudioResults.md b/results/annotated/VisualStudioResults.md new file mode 100644 index 0000000..409f442 --- /dev/null +++ b/results/annotated/VisualStudioResults.md @@ -0,0 +1,1935 @@ +# Visual Studio + +Home: [Visual Studio 2022](http://www.visualstudio.com/) + +Version: Microsoft Visual Studio Community 2022, Version 17.7.5 + +Notes: +* All extensions that can provide refactorings, such as ReSharper for C++, + are disabled while testing to ensure that only core Visual Studio refactoring + capabilities are tested. +* Intellisense must be enabled for most refactorings to work properly. +* When applying an operation, the default selections on any prompting dialogs + were used. + + Getting the default selection correct for a refactoring is important, + particularly when changing a name that is used in thousands of places. + Making the developer manually resolve which identical text is actually a + related name makes the developer act like a compiler. The compiler already + knows which names refer to the same thing by using the context of the names. + Any refactoring tool worth using has to employ the same logic as the compiler + to correctly resolve names. In other words, a refactoring tool has to be at + least as smart as a compiler. + + If the correct instances of a name can't be selected by a refactoring tool, + then you might as well use Find/Replace across a file set. +* Change locations to files are listed in the *Visual C++ Refactoring* tab of the Output pane. +* **Add Block Delimiter** is available by selecting a block of code and typing `{`. +* **Add Parameter** is available through **Change Signature**. +* **Move Implementation to Source File** is available as **Move Definition + Location**. +* **Remove Unused Parameters** is available through **Change Signature**, but the unused + parameters are not indicated visually in the IDE. +* **Reorder Parameters** is available through **Change Signature**. +* **Replace String Literal WIth Raw String Literal** is available through the action *Edit.ConvertToRawStringLiteral*. +* In general, bugs reported against Visual Studio refactoring functionality get closed with no action taken. + Not a single bug reported in 2017 was marked as fixed, although some test cases now pass. + +
+ +## Add Block Delimiter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +ABD1 | Pass | [`AddBlockDelimiter.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L11) | [ABD1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD1.txt) +ABD2 | Pass | [`AddBlockDelimiter.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L14) | [ABD2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD2.txt) +ABD3 | Pass | [`AddBlockDelimiter.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L17) | [ABD3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD3.txt) +ABD4 | Pass | [`AddBlockDelimiter.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L21) | [ABD4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD4.txt) +ABD5 | Pass | [`AddBlockDelimiter.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L23) | [ABD5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD5.txt) +ABD6 | Pass | [`AddBlockDelimiter.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L25) | [ABD6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD6.txt) +ABD7 | Pass | [`AddBlockDelimiter.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddBlockDelimiter.cpp#L27) | [ABD7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/ABD7.txt) + +## Add Parameter +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +AP1 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.h`, line 3](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L3) | [AP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP1.txt) +AP2 | Pass | [`AddParameter.h`, line 5](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L5) | [AP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP2.txt) +AP3 | Failure (changes unrelated overloads; disregards dialog selection) | [`AddParameter.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L7) | [AP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP3.txt) +AP4 | Failure (changes unrelated overloads; disregards dialog selection) | [`AddParameter.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L9) | [AP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP4.txt) +AP5 | Pass | [`AddParameter.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L11) | [AP5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP5.txt) +AP6 | Pass | [`AddParameter.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L13) | [AP6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP6.txt) +AP7 | Failure (c'tor usages not updated) | [`AddParameter.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L19) | [AP7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP7.txt) +AP8 | Pass | [`AddParameter.h`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L27) | [AP8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP8.txt) +AP9 | Pass | [`AddParameter.h`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L32) | [AP9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP9.txt) +AP10 | Pass | [`AddParameter.h`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L38) | [AP10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP10.txt) +AP11 | Pass | [`AddParameter.h`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L40) | [AP11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP11.txt) +AP12 | Pass | [`AddParameter.h`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L42) | [AP12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP12.txt) +AP13 | Pass | [`AddParameter.h`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L45) | [AP13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP13.txt) +AP14 | Pass | [`AddParameter.h`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L49) | [AP14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP14.txt) +AP15 | Failure (definition not updated) | [`AddParameter.h`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L53) | [AP15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP15.txt) +AP16 | Pass | [`AddParameter.h`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L55) | [AP16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP16.txt) +AP17 | Pass | [`AddParameter.h`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L58) | [AP17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP17.txt) +AP18 | Pass | [`AddParameter.h`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L64) | [AP18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP18.txt) +AP19 | Pass | [`AddParameter.h`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L74) | [AP19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP19.txt) +AP20 | Pass | [`AddParameter.h`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L80) | [AP20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP20.txt) +AP21 | Pass | [`AddParameter.h`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L86) | [AP21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP21.txt) +AP22 | Pass | [`AddParameter.h`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L91) | [AP22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP22.txt) +AP23 | Pass | [`AddParameter.h`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L96) | [AP23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP23.txt) +AP24 | Failure (unrelated code changed) | [`AddParameter.h`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L103) | [AP24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP24.txt) +AP25 | Failure (not available) | [`AddParameter.h`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L106) | [AP25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP25.txt) +AP26 | Failure (c'tor usages not updated) | [`AddParameter.h`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L112) | [AP26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP26.txt) +AP27 | Pass | [`AddParameter.h`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L120) | [AP27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP27.txt) +AP28 | Pass | [`AddParameter.h`, line 126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L126) | [AP28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP28.txt) +AP29 | Pass | [`AddParameter.h`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L131) | [AP29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP29.txt) +AP30 | Pass | [`AddParameter.h`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L133) | [AP30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP30.txt) +AP31 | Pass | [`AddParameter.h`, line 135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L135) | [AP31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP31.txt) +AP32 | Failure (default value on definition, not declaration) | [`AddParameter.h`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L136) | [AP32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP32.txt) +AP33 | Pass | [`AddParameter.h`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L139) | [AP33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP33.txt) +AP34 | Pass | [`AddParameter.h`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L143) | [AP34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP34.txt) +AP35 | Pass | [`AddParameter.h`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L144) | [AP35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP35.txt) +AP36 | Failure (definition not updated) | [`AddParameter.h`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L148) | [AP36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP36.txt) +AP37 | Pass | [`AddParameter.h`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L150) | [AP37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP37.txt) +AP38 | Failure (default value on definition, not declaration) | [`AddParameter.h`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L151) | [AP38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP38.txt) +AP39 | Pass | [`AddParameter.h`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L154) | [AP39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP39.txt) +AP40 | Pass | [`AddParameter.h`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L160) | [AP40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP40.txt) +AP41 | Failure (c'tor usages not updated) | [`AddParameter.h`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L169) | [AP41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP41.txt) +AP42 | Pass | [`AddParameter.h`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L177) | [AP42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP42.txt) +AP43 | Pass | [`AddParameter.h`, line 183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L183) | [AP43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP43.txt) +AP44 | Pass | [`AddParameter.h`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L188) | [AP44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP44.txt) +AP45 | Pass | [`AddParameter.h`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L190) | [AP45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP45.txt) +AP46 | Pass | [`AddParameter.h`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L192) | [AP46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP46.txt) +AP47 | Pass | [`AddParameter.h`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L195) | [AP47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP47.txt) +AP48 | Pass | [`AddParameter.h`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L199) | [AP48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP48.txt) +AP49 | Pass | [`AddParameter.h`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L200) | [AP49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP49.txt) +AP50 | Failure (definition not updated) | [`AddParameter.h`, line 204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L204) | [AP50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP50.txt) +AP51 | Pass | [`AddParameter.h`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L206) | [AP51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP51.txt) +AP52 | Failure (default value on definition, not declaration) | [`AddParameter.h`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L207) | [AP52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP52.txt) +AP53 | Pass | [`AddParameter.h`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L210) | [AP53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP53.txt) +AP54 | Pass | [`AddParameter.h`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L216) | [AP54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP54.txt) +AP55 | Failure (c'tor usages not updated) | [`AddParameter.h`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L226) | [AP55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP55.txt) +AP56 | Pass | [`AddParameter.h`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L234) | [AP56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP56.txt) +AP57 | Pass | [`AddParameter.h`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L240) | [AP57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP57.txt) +AP58 | Pass | [`AddParameter.h`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L245) | [AP58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP58.txt) +AP59 | Pass | [`AddParameter.h`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L247) | [AP59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP59.txt) +AP60 | Pass | [`AddParameter.h`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L249) | [AP60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP60.txt) +AP61 | Pass | [`AddParameter.h`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L252) | [AP61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP61.txt) +AP62 | Pass | [`AddParameter.h`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L256) | [AP62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP62.txt) +AP63 | Pass | [`AddParameter.h`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L260) | [AP63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP63.txt) +AP64 | Pass | [`AddParameter.h`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L262) | [AP64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP64.txt) +AP65 | Pass | [`AddParameter.h`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L265) | [AP65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP65.txt) +AP66 | Pass | [`AddParameter.h`, line 271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L271) | [AP66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP66.txt) +AP67 | Pass | [`AddParameter.h`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L276) | [AP67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP67.txt) +AP68 | Pass | [`AddParameter.h`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L281) | [AP68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP68.txt) +AP69 | Failure (c'tor usages not updated) | [`AddParameter.h`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L293) | [AP69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP69.txt) +AP70 | Pass | [`AddParameter.h`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L301) | [AP70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP70.txt) +AP71 | Failure (c'tor usages not updated) | [`AddParameter.h`, line 309](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L309) | [AP71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP71.txt) +AP72 | Pass | [`AddParameter.h`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L314) | [AP72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP72.txt) +AP73 | Pass | [`AddParameter.h`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L324) | [AP73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP73.txt) +AP74 | Pass | [`AddParameter.h`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L330) | [AP74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP74.txt) +AP75 | Pass | [`AddParameter.h`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L336) | [AP75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP75.txt) +AP76 | Pass | [`AddParameter.h`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L342) | [AP76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP76.txt) +AP77 | Pass | [`AddParameter.h`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.h#L348) | [AP77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP77.txt) +AP78 | Pass | [`AddParameter.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L14) | [AP78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP78.txt) +AP79 | Failure (template usages not updated) | [`AddParameter.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L20) | [AP79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP79.txt) +AP80 | Failure (template usages not updated) | [`AddParameter.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L28) | [AP80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP80.txt) +AP81 | Failure (declaration not updated) | [`AddParameter.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L36) | [AP81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP81.txt) +AP82 | Pass | [`AddParameter.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L38) | [AP82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP82.txt) +AP83 | Failure (changes unrelated overloads; disregards dialog selection) | [`AddParameter.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L40) | [AP83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP83.txt) +AP84 | Failure (changes unrelated overloads; disregards dialog selection) | [`AddParameter.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L43) | [AP84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP84.txt) +AP85 | Pass | [`AddParameter.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L47) | [AP85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP85.txt) +AP86 | Pass | [`AddParameter.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L49) | [AP86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP86.txt) +AP87 | Pass | [`AddParameter.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L51) | [AP87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP87.txt) +AP88 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L55) | [AP88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP88.txt) +AP89 | Failure (error occured while applying changes; textIndex out of range) | [`AddParameter.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L57) | [AP89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP89.txt) +AP90 | Failure (changes unrelated overloads) | [`AddParameter.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L59) | [AP90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP90.txt) +AP91 | Failure (changes unrelated overloads) | [`AddParameter.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L61) | [AP91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP91.txt) +AP92 | Pass | [`AddParameter.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L63) | [AP92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP92.txt) +AP93 | Pass | [`AddParameter.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L65) | [AP93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP93.txt) +AP94 | Pass | [`AddParameter.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L67) | [AP94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP94.txt) +AP95 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L70) | [AP95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP95.txt) +AP96 | Pass | [`AddParameter.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L72) | [AP96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP96.txt) +AP97 | Pass | [`AddParameter.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L74) | [AP97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP97.txt) +AP98 | Failure (declaration not updated) | [`AddParameter.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L76) | [AP98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP98.txt) +AP99 | Pass | [`AddParameter.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L78) | [AP99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP99.txt) +AP100 | Pass | [`AddParameter.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L80) | [AP100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP100.txt) +AP101 | Pass | [`AddParameter.cpp`, line 82](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L82) | [AP101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP101.txt) +AP102 | Pass | [`AddParameter.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L84) | [AP102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP102.txt) +AP103 | Pass | [`AddParameter.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L86) | [AP103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP103.txt) +AP104 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L88) | [AP104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP104.txt) +AP105 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L92) | [AP105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP105.txt) +AP106 | Pass | [`AddParameter.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L94) | [AP106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP106.txt) +AP107 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L96) | [AP107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP107.txt) +AP108 | Pass | [`AddParameter.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L98) | [AP108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP108.txt) +AP109 | Pass | [`AddParameter.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L100) | [AP109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP109.txt) +AP110 | Failure (default value on definition, not declaration) | [`AddParameter.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L101) | [AP110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP110.txt) +AP111 | Pass | [`AddParameter.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L103) | [AP111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP111.txt) +AP112 | Failure (default value on definition, not declaration) | [`AddParameter.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L104) | [AP112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP112.txt) +AP113 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L106) | [AP113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP113.txt) +AP114 | Pass | [`AddParameter.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L108) | [AP114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP114.txt) +AP115 | Pass | [`AddParameter.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L109) | [AP115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP115.txt) +AP116 | Pass | [`AddParameter.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L111) | [AP116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP116.txt) +AP117 | Pass | [`AddParameter.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L112) | [AP117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP117.txt) +AP118 | Failure (declaration not updated) | [`AddParameter.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L114) | [AP118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP118.txt) +AP119 | Pass | [`AddParameter.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L116) | [AP119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP119.txt) +AP120 | Failure (default value on definition, not declaration) | [`AddParameter.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L117) | [AP120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP120.txt) +AP121 | Pass | [`AddParameter.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L119) | [AP121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP121.txt) +AP122 | Failure (default value on definition, not declaration) | [`AddParameter.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L120) | [AP122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP122.txt) +AP123 | Pass | [`AddParameter.cpp`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L122) | [AP123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP123.txt) +AP124 | Pass | [`AddParameter.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L124) | [AP124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP124.txt) +AP125 | Pass | [`AddParameter.cpp`, line 126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L126) | [AP125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP125.txt) +AP126 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 128](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L128) | [AP126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP126.txt) +AP127 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L132) | [AP127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP127.txt) +AP128 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L134) | [AP128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP128.txt) +AP129 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L136) | [AP129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP129.txt) +AP130 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 141](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L141) | [AP130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP130.txt) +AP131 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L145) | [AP131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP131.txt) +AP132 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L150) | [AP132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP132.txt) +AP133 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L154) | [AP133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP133.txt) +AP134 | Pass | [`AddParameter.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L157) | [AP134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP134.txt) +AP135 | Pass | [`AddParameter.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L164) | [AP135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP135.txt) +AP136 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L167) | [AP136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP136.txt) +AP137 | Failure (declaration not updated) | [`AddParameter.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L171) | [AP137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP137.txt) +AP138 | Pass | [`AddParameter.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L176) | [AP138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP138.txt) +AP139 | Failure (changes unrelated overloads; disregards dialog selection) | [`AddParameter.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L181) | [AP139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP139.txt) +AP140 | Failure (changes unrelated overloads; disregards dialog selection) | [`AddParameter.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L187) | [AP140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP140.txt) +AP141 | Pass | [`AddParameter.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L192) | [AP141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP141.txt) +AP142 | Pass | [`AddParameter.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L197) | [AP142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP142.txt) +AP143 | Pass | [`AddParameter.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L202) | [AP143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP143.txt) +AP144 | Pass | [`AddParameter.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L207) | [AP144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP144.txt) +AP145 | Pass | [`AddParameter.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L212) | [AP145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP145.txt) +AP146 | Failure (declaration not updated) | [`AddParameter.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L217) | [AP146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP146.txt) +AP147 | Pass | [`AddParameter.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L222) | [AP147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP147.txt) +AP148 | Pass | [`AddParameter.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L227) | [AP148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP148.txt) +AP149 | Pass | [`AddParameter.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L232) | [AP149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP149.txt) +AP150 | Pass | [`AddParameter.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L237) | [AP150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP150.txt) +AP151 | Failure (default value on definition, not declaration) | [`AddParameter.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L238) | [AP151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP151.txt) +AP152 | Failure (declaration not updated) | [`AddParameter.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L243) | [AP152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP152.txt) +AP153 | Pass | [`AddParameter.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L248) | [AP153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP153.txt) +AP154 | Failure (default value on definition, not declaration) | [`AddParameter.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L249) | [AP154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP154.txt) +AP155 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L264) | [AP155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP155.txt) +AP156 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 267](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L267) | [AP156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP156.txt) +AP157 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L276) | [AP157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP157.txt) +AP158 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L279) | [AP158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP158.txt) +AP159 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L288) | [AP159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP159.txt) +AP160 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L294) | [AP160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP160.txt) +AP161 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L306) | [AP161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP161.txt) +AP162 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 309](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L309) | [AP162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP162.txt) +AP163 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L313) | [AP163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP163.txt) +AP164 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L319) | [AP164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP164.txt) +AP165 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L325) | [AP165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP165.txt) +AP166 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L331) | [AP166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP166.txt) +AP167 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L334) | [AP167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP167.txt) +AP168 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L341) | [AP168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP168.txt) +AP169 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L343) | [AP169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP169.txt) +AP170 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L348) | [AP170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP170.txt) +AP171 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L351) | [AP171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP171.txt) +AP172 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 356](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L356) | [AP172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP172.txt) +AP173 | Failure (declarations not updated; not all usages updated) | [`AddParameter.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L359) | [AP173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP173.txt) +AP174 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 367](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L367) | [AP174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP174.txt) +AP175 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L369) | [AP175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP175.txt) +AP176 | Pass | [`AddParameter.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L371) | [AP176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP176.txt) +AP177 | Pass | [`AddParameter.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L374) | [AP177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP177.txt) +AP178 | Pass | [`AddParameter.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L376) | [AP178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP178.txt) +AP179 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L378) | [AP179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP179.txt) +AP180 | Pass | [`AddParameter.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L380) | [AP180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP180.txt) +AP181 | Failure (declaration not updated) | [`AddParameter.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L382) | [AP181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP181.txt) +AP182 | Pass | [`AddParameter.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L384) | [AP182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP182.txt) +AP183 | Pass | [`AddParameter.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L386) | [AP183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP183.txt) +AP184 | Pass | [`AddParameter.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L388) | [AP184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP184.txt) +AP185 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L392) | [AP185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP185.txt) +AP186 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L394) | [AP186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP186.txt) +AP187 | Pass | [`AddParameter.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L396) | [AP187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP187.txt) +AP188 | Pass | [`AddParameter.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L399) | [AP188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP188.txt) +AP189 | Pass | [`AddParameter.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L401) | [AP189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP189.txt) +AP190 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L403) | [AP190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP190.txt) +AP191 | Pass | [`AddParameter.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L405) | [AP191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP191.txt) +AP192 | Failure (error occured while applying changes; Value does not fall within expected range) | [`AddParameter.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L407) | [AP192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP192.txt) +AP193 | Pass | [`AddParameter.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L409) | [AP193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP193.txt) +AP194 | Pass | [`AddParameter.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L411) | [AP194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP194.txt) +AP195 | Pass | [`AddParameter.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L413) | [AP195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP195.txt) +AP196 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L415) | [AP196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP196.txt) +AP197 | Failure (error occured while applying changes; Object reference not set to an instance of an object) | [`AddParameter.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L418) | [AP197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP197.txt) +AP198 | Pass | [`AddParameter.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L425) | [AP198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP198.txt) +AP199 | Pass | [`AddParameter.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L430) | [AP199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP199.txt) +AP200 | Pass | [`AddParameter.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L435) | [AP200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP200.txt) +AP201 | Failure (declaration not updated) | [`AddParameter.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L440) | [AP201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP201.txt) +AP202 | Pass | [`AddParameter.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/AddParameter.cpp#L445) | [AP202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/AP202.txt) + +## Change Signature +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +CS1 | Failure (instances not renamed) | [`ChangeSignature.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L8) | [CS1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS1.txt) +CS2 | Failure (instances not renamed) | [`ChangeSignature.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L9) | [CS2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS2.txt) +CS3 | Failure (unavailable) | [`ChangeSignature.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L10) | [CS3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS3.txt) +CS4 | Pass | [`ChangeSignature.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L11) | [CS4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS4.txt) +CS5 | Pass | [`ChangeSignature.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L12) | [CS5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS5.txt) +CS6 | Pass | [`ChangeSignature.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L18) | [CS6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS6.txt) +CS7 | Failure (instances not renamed) | [`ChangeSignature.h`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L26) | [CS7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS7.txt) +CS8 | Failure (instances not renamed) | [`ChangeSignature.h`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L27) | [CS8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS8.txt) +CS9 | Failure (unavailable) | [`ChangeSignature.h`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L28) | [CS9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS9.txt) +CS10 | Pass | [`ChangeSignature.h`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L29) | [CS10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS10.txt) +CS11 | Pass | [`ChangeSignature.h`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L30) | [CS11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS11.txt) +CS12 | Failure (instances not renamed) | [`ChangeSignature.h`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L36) | [CS12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS12.txt) +CS13 | Failure (instances not renamed) | [`ChangeSignature.h`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L37) | [CS13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS13.txt) +CS14 | Failure (unavailable) | [`ChangeSignature.h`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L38) | [CS14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS14.txt) +CS15 | Pass | [`ChangeSignature.h`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L39) | [CS15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS15.txt) +CS16 | Failure (unavailable) | [`ChangeSignature.h`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L40) | [CS16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS16.txt) +CS17 | Failure (instances not renamed) | [`ChangeSignature.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L46) | [CS17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS17.txt) +CS18 | Failure (instances not renamed) | [`ChangeSignature.h`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L47) | [CS18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS18.txt) +CS19 | Pass | [`ChangeSignature.h`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L48) | [CS19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS19.txt) +CS20 | Failure (not available) | [`ChangeSignature.h`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.h#L49) | [CS20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS20.txt) +CS21 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L9) | [CS21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS21.txt) +CS22 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L10) | [CS22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS22.txt) +CS23 | Failure (not available) | [`ChangeSignature.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L11) | [CS23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS23.txt) +CS24 | Pass | [`ChangeSignature.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L12) | [CS24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS24.txt) +CS25 | Pass | [`ChangeSignature.cpp`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L13) | [CS25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS25.txt) +CS26 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L19) | [CS26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS26.txt) +CS27 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L20) | [CS27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS27.txt) +CS28 | Failure (not available) | [`ChangeSignature.cpp`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L21) | [CS28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS28.txt) +CS29 | Pass | [`ChangeSignature.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L22) | [CS29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS29.txt) +CS30 | Failure (not available) | [`ChangeSignature.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L23) | [CS30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS30.txt) +CS31 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L34) | [CS31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS31.txt) +CS32 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L35) | [CS32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS32.txt) +CS33 | Failure (not available) | [`ChangeSignature.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L36) | [CS33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS33.txt) +CS34 | Pass | [`ChangeSignature.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L37) | [CS34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS34.txt) +CS35 | Pass | [`ChangeSignature.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L38) | [CS35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS35.txt) +CS36 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L44) | [CS36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS36.txt) +CS37 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L45) | [CS37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS37.txt) +CS38 | Failure (not available) | [`ChangeSignature.cpp`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L46) | [CS38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS38.txt) +CS39 | Pass | [`ChangeSignature.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L47) | [CS39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS39.txt) +CS40 | Pass | [`ChangeSignature.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L48) | [CS40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS40.txt) +CS41 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L66) | [CS41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS41.txt) +CS42 | Failure (instances not renamed) | [`ChangeSignature.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L67) | [CS42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS42.txt) +CS43 | Failure (not available) | [`ChangeSignature.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L68) | [CS43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS43.txt) +CS44 | Pass | [`ChangeSignature.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L69) | [CS44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS44.txt) +CS45 | Pass | [`ChangeSignature.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ChangeSignature.cpp#L70) | [CS45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/CS45.txt) + +## Extract Function +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EXF1 | Failure (not available) | [`ExtractFunction.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L11) | [EXF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF1.txt) +EXF2 | Pass | [`ExtractFunction.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L14) | [EXF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF2.txt) +EXF3 | Pass | [`ExtractFunction.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L17) | [EXF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF3.txt) +EXF4 | Pass | [`ExtractFunction.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L20) | [EXF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF4.txt) +EXF5 | Pass | [`ExtractFunction.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L23) | [EXF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF5.txt) +EXF6 | Pass | [`ExtractFunction.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L26) | [EXF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF6.txt) +EXF7 | Pass | [`ExtractFunction.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L30) | [EXF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF7.txt) +EXF8 | Pass | [`ExtractFunction.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L33) | [EXF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF8.txt) +EXF9 | Pass | [`ExtractFunction.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L36) | [EXF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF9.txt) +EXF10 | Pass | [`ExtractFunction.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L39) | [EXF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF10.txt) +EXF11 | Pass | [`ExtractFunction.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L42) | [EXF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF11.txt) +EXF12 | Pass | [`ExtractFunction.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L60) | [EXF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF12.txt) +EXF13 | Failure (references typedef before it is declared) | [`ExtractFunction.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L76) | [EXF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF13.txt) +EXF14 | Failure (references class before it is declared) | [`ExtractFunction.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L113) | [EXF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF14.txt) +EXF15 | Failure (references typedef before it is declared) | [`ExtractFunction.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L129) | [EXF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF15.txt) +EXF16 | Failure (references class before it is declared) | [`ExtractFunction.cpp`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L144) | [EXF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF16.txt) +EXF17 | Failure (references typedef before it is declared) | [`ExtractFunction.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L160) | [EXF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF17.txt) +EXF18 | Failure (unavailable) | [`ExtractFunction.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L186) | [EXF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF18.txt) +EXF19 | Pass | [`ExtractFunction2.c`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction2.c#L9) | [EXF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF19.txt) + +## Extract Method +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EM1 | Pass | [`ExtractMethod.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L19) | [EM1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM1.txt) +EM2 | Failure (unavailable) | [`ExtractMethod.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L26) | [EM2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM2.txt) +EM3 | Pass | [`ExtractMethod.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L38) | [EM3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM3.txt) +EM4 | Pass (unnecessary use of namespace) | [`ExtractMethod.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L58) | [EM4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM4.txt) +EM5 | Pass (unnecessary use of namespace) | [`ExtractMethod.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L74) | [EM5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM5.txt) +EM6 | Pass (unnecessary use of namespace) | [`ExtractMethod.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L75) | [EM6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM6.txt) +EM7 | Pass (unnecessary use of namespace) | [`ExtractMethod.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L90) | [EM7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM7.txt) +EM8 | Pass (unnecessary use of namespace) | [`ExtractMethod.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L106) | [EM8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM8.txt) +EM9 | Pass | [`ExtractMethod.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L124) | [EM9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM9.txt) +EM10 | Pass | [`ExtractMethod.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L134) | [EM10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM10.txt) +EM11 | Pass | [`ExtractMethod.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L155) | [EM11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM11.txt) +EM12 | Pass | [`ExtractMethod.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L170) | [EM12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM12.txt) +EM13 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L185) | [EM13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM13.txt) +EM14 | Pass (unnecessary use of namespace) | [`ExtractMethod.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L201) | [EM14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM14.txt) +EM15 | Pass | [`ExtractMethod.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L232) | [EM15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM15.txt) +EM16 | Pass | [`ExtractMethod.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L241) | [EM16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM16.txt) +EM17 | Pass | [`ExtractMethod.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L261) | [EM17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM17.txt) +EM18 | Pass | [`ExtractMethod.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L277) | [EM18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM18.txt) +EM19 | Failure (creates invalid code) | [`ExtractMethod.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L292) | [EM19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM19.txt) +EM20 | Pass | [`ExtractMethod.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L308) | [EM20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM20.txt) +EM21 | Pass | [`ExtractMethod.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L326) | [EM21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM21.txt) + +## Move Implementation to Source File +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +MISF1 | Pass (leaves `inline` in header) | [`MoveImplementationToSourceFile.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L6) | [MISF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF1.txt) +MISF2 | Failure (unknown error) | [`MoveImplementationToSourceFile.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L14) | [MISF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF2.txt) +MISF3 | Pass (sensitive to cursor placement) | [`MoveImplementationToSourceFile.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L19) | [MISF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF3.txt) +MISF4 | Pass | [`MoveImplementationToSourceFile.h`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L24) | [MISF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF4.txt) +MISF5 | Pass | [`MoveImplementationToSourceFile.h`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L30) | [MISF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF5.txt) +MISF6 | Pass | [`MoveImplementationToSourceFile.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L46) | [MISF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF6.txt) +MISF7 | Pass | [`MoveImplementationToSourceFile.h`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L56) | [MISF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF7.txt) +MISF8 | Pass | [`MoveImplementationToSourceFile.h`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L61) | [MISF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF8.txt) +MISF9 | Pass | [`MoveImplementationToSourceFile.h`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L64) | [MISF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF9.txt) +MISF10 | Pass | [`MoveImplementationToSourceFile.h`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L69) | [MISF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF10.txt) +MISF11 | Pass | [`MoveImplementationToSourceFile.h`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L72) | [MISF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF11.txt) +MISF12 | Pass | [`MoveImplementationToSourceFile.h`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L79) | [MISF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF12.txt) +MISF13 | Pass | [`MoveImplementationToSourceFile.h`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L84) | [MISF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF13.txt) +MISF14 | Pass | [`MoveImplementationToSourceFile.h`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L89) | [MISF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF14.txt) +MISF15 | Pass | [`MoveImplementationToSourceFile.h`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L98) | [MISF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF15.txt) +MISF16 | Failure (creates invalid code) | [`MoveImplementationToSourceFile.h`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L104) | [MISF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF16.txt) +MISF17 | Pass | [`MoveImplementationToSourceFile.h`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L117) | [MISF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF17.txt) +MISF18 | Pass | [`MoveImplementationToSourceFile.h`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L122) | [MISF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF18.txt) +MISF19 | Pass | [`MoveImplementationToSourceFile.h`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L125) | [MISF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF19.txt) +MISF20 | Pass | [`MoveImplementationToSourceFile.h`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L130) | [MISF20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF20.txt) +MISF21 | Pass | [`MoveImplementationToSourceFile.h`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L133) | [MISF21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF21.txt) +MISF22 | Pass | [`MoveImplementationToSourceFile.h`, line 140](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L140) | [MISF22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF22.txt) +MISF23 | Pass | [`MoveImplementationToSourceFile.h`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L145) | [MISF23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF23.txt) +MISF24 | Pass | [`MoveImplementationToSourceFile.h`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L150) | [MISF24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF24.txt) +MISF25 | Pass | [`MoveImplementationToSourceFile.h`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L159) | [MISF25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF25.txt) +MISF26 | Failure (creates invalid code) | [`MoveImplementationToSourceFile.h`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L165) | [MISF26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF26.txt) + +## Rename +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +R1 | Pass | [`Rename.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L12) | [R1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1.txt) +R2 | Failure (not available) | [`Rename.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L15) | [R2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R2.txt) +R3 | Failure (not available) | [`Rename.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L16) | [R3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R3.txt) +R4 | Pass | [`Rename.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L17) | [R4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R4.txt) +R5 | Pass | [`Rename.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L33) | [R5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R5.txt) +R6 | Pass | [`Rename.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L37) | [R6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R6.txt) +R7 | Pass | [`Rename.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L42) | [R7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R7.txt) +R8 | Pass | [`Rename.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L47) | [R8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R8.txt) +R9 | Pass | [`Rename.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L48) | [R9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R9.txt) +R10 | Pass | [`Rename.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L51) | [R10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R10.txt) +R11 | Pass | [`Rename.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L59) | [R11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R11.txt) +R12 | Pass | [`Rename.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L62) | [R12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R12.txt) +R13 | Pass | [`Rename.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L64) | [R13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R13.txt) +R14 | Pass | [`Rename.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L67) | [R14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R14.txt) +R15 | Pass | [`Rename.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L75) | [R15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R15.txt) +R16 | Pass | [`Rename.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L85) | [R16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R16.txt) +R17 | Pass | [`Rename.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L93) | [R17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R17.txt) +R18 | Pass | [`Rename.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L96) | [R18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R18.txt) +R19 | Pass | [`Rename.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L127) | [R19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R19.txt) +R20 | Pass | [`Rename.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L152) | [R20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R20.txt) +R21 | Pass | [`Rename.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L153) | [R21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R21.txt) +R22 | Pass | [`Rename.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L154) | [R22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R22.txt) +R23 | Pass | [`Rename.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L157) | [R23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R23.txt) +R24 | Pass | [`Rename.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L158) | [R24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R24.txt) +R25 | Pass | [`Rename.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L159) | [R25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R25.txt) +R26 | Pass | [`Rename.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L161) | [R26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R26.txt) +R27 | Pass | [`Rename.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L164) | [R27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R27.txt) +R28 | Pass | [`Rename.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L165) | [R28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R28.txt) +R29 | Pass | [`Rename.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L166) | [R29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R29.txt) +R30 | Pass | [`Rename.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L169) | [R30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R30.txt) +R31 | Pass | [`Rename.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L173) | [R31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R31.txt) +R32 | Pass | [`Rename.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L176) | [R32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R32.txt) +R33 | Pass | [`Rename.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L185) | [R33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R33.txt) +R34 | Pass | [`Rename.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L195) | [R34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R34.txt) +R35 | Pass | [`Rename.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L208) | [R35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R35.txt) +R36 | Pass | [`Rename.cpp`, line 218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L218) | [R36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R36.txt) +R37 | Failure (selects unrelated instances, doesn't select all instances) | [`Rename.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L224) | [R37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R37.txt) +R38 | Failure (selects unrelated instances, doesn't select all instances) | [`Rename.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L226) | [R38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R38.txt) +R39 | Failure (selects unrelated instances, doesn't select all instances) | [`Rename.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L228) | [R39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R39.txt) +R40 | Failure (selects unrelated instances, doesn't select all instances) | [`Rename.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L233) | [R40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R40.txt) +R41 | Failure (selects unrelated instances, doesn't select all instances) | [`Rename.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L236) | [R41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R41.txt) +R42 | Failure (selects unrelated instances, doesn't select all instances) | [`Rename.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L238) | [R42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R42.txt) +R43 | Failure (selects unrelated instances, doesn't select all instances) | [`Rename.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L240) | [R43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R43.txt) +R44 | Failure (selects unrelated instances, doesn't select all instances) | [`Rename.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L245) | [R44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R44.txt) +R45 | Pass | [`Rename.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L248) | [R45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R45.txt) +R46 | Pass | [`Rename.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L253) | [R46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R46.txt) +R47 | Pass | [`Rename.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L255) | [R47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R47.txt) +R48 | Pass | [`Rename.cpp`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L256) | [R48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R48.txt) +R49 | Pass | [`Rename.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L257) | [R49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R49.txt) +R50 | Pass | [`Rename.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L258) | [R50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R50.txt) +R51 | Pass | [`Rename.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L259) | [R51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R51.txt) +R52 | Pass | [`Rename.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L260) | [R52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R52.txt) +R53 | Pass | [`Rename.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L263) | [R53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R53.txt) +R54 | Pass | [`Rename.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L264) | [R54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R54.txt) +R55 | Pass | [`Rename.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L270) | [R55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R55.txt) +R56 | Pass | [`Rename.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L272) | [R56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R56.txt) +R57 | Pass | [`Rename.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L274) | [R57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R57.txt) +R58 | Pass | [`Rename.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L276) | [R58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R58.txt) +R59 | Pass | [`Rename.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L280) | [R59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R59.txt) +R60 | Pass | [`Rename.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L283) | [R60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R60.txt) +R61 | Pass | [`Rename.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L286) | [R61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R61.txt) +R62 | Pass | [`Rename.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L297) | [R62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R62.txt) +R63 | Pass | [`Rename.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L298) | [R63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R63.txt) +R64 | Pass | [`Rename.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L299) | [R64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R64.txt) +R65 | Pass | [`Rename.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L305) | [R65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R65.txt) +R66 | Pass | [`Rename.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L307) | [R66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R66.txt) +R67 | Pass | [`Rename.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L308) | [R67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R67.txt) +R68 | Pass | [`Rename.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L314) | [R68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R68.txt) +R69 | Pass | [`Rename.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L315) | [R69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R69.txt) +R70 | Pass | [`Rename.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L317) | [R70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R70.txt) +R71 | Failure (selects unrelated instances) | [`Rename.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L323) | [R71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R71.txt) +R72 | Pass | [`Rename.cpp`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L324) | [R72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R72.txt) +R73 | Failure (selects unrelated instances) | [`Rename.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L326) | [R73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R73.txt) +R74 | Pass | [`Rename.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L327) | [R74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R74.txt) +R75 | Pass | [`Rename.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L328) | [R75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R75.txt) +R76 | Failure (selects unrelated instances) | [`Rename.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L334) | [R76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R76.txt) +R77 | Pass | [`Rename.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L335) | [R77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R77.txt) +R78 | Pass | [`Rename.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L336) | [R78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R78.txt) +R79 | Failure (selects unrelated instances) | [`Rename.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L338) | [R79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R79.txt) +R80 | Pass | [`Rename.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L339) | [R80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R80.txt) +R81 | Failure (selects unrelated instances) | [`Rename.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L345) | [R81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R81.txt) +R82 | Pass | [`Rename.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L346) | [R82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R82.txt) +R83 | Pass | [`Rename.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L347) | [R83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R83.txt) +R84 | Failure (selects unrelated instances) | [`Rename.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L349) | [R84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R84.txt) +R85 | Pass | [`Rename.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L351) | [R85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R85.txt) +R86 | Pass | [`Rename.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L365) | [R86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R86.txt) +R87 | Pass | [`Rename.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L369) | [R87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R87.txt) +R88 | Failure (fails to select all instances) | [`Rename.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L370) | [R88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R88.txt) +R89 | Failure (fails to select all instances) | [`Rename.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L374) | [R89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R89.txt) +R90 | Pass | [`Rename.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L378) | [R90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R90.txt) +R91 | Pass | [`Rename.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L381) | [R91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R91.txt) +R92 | Pass | [`Rename.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L382) | [R92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R92.txt) +R93 | Pass | [`Rename.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L384) | [R93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R93.txt) +R94 | Pass | [`Rename.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L385) | [R94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R94.txt) +R95 | Pass | [`Rename.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L386) | [R95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R95.txt) +R96 | Pass | [`Rename.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L389) | [R96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R96.txt) +R97 | Pass | [`Rename.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L390) | [R97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R97.txt) +R98 | Pass | [`Rename.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L391) | [R98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R98.txt) +R99 | Failure (fails to select all instances) | [`Rename.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L393) | [R99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R99.txt) +R100 | Pass | [`Rename.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L395) | [R100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R100.txt) +R101 | Pass | [`Rename.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L397) | [R101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R101.txt) +R102 | Pass | [`Rename.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L398) | [R102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R102.txt) +R103 | Pass | [`Rename.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L399) | [R103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R103.txt) +R104 | Pass | [`Rename.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L401) | [R104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R104.txt) +R105 | Pass | [`Rename.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L403) | [R105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R105.txt) +R106 | Failure (fails to select all instances) | [`Rename.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L404) | [R106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R106.txt) +R107 | Pass | [`Rename.cpp`, line 410](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L410) | [R107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R107.txt) +R108 | Pass | [`Rename.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L411) | [R108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R108.txt) +R109 | Pass | [`Rename.cpp`, line 412](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L412) | [R109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R109.txt) +R110 | Pass | [`Rename.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L416) | [R110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R110.txt) +R111 | Pass | [`Rename.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L418) | [R111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R111.txt) +R112 | Pass | [`Rename.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L422) | [R112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R112.txt) +R113 | Pass | [`Rename.cpp`, line 426](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L426) | [R113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R113.txt) +R114 | Pass | [`Rename.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L428) | [R114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R114.txt) +R115 | Pass | [`Rename.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L433) | [R115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R115.txt) +R116 | Pass | [`Rename.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L437) | [R116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R116.txt) +R117 | Pass | [`Rename.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L439) | [R117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R117.txt) +R118 | Pass | [`Rename.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L445) | [R118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R118.txt) +R119 | Pass | [`Rename.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L446) | [R119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R119.txt) +R120 | Pass | [`Rename.cpp`, line 448](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L448) | [R120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R120.txt) +R121 | Pass | [`Rename.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L449) | [R121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R121.txt) +R122 | Pass | [`Rename.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L451) | [R122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R122.txt) +R123 | Pass | [`Rename.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L452) | [R123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R123.txt) +R124 | Pass | [`Rename.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L454) | [R124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R124.txt) +R125 | Pass | [`Rename.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L455) | [R125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R125.txt) +R126 | Pass | [`Rename.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L459) | [R126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R126.txt) +R127 | Pass | [`Rename.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L461) | [R127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R127.txt) +R128 | Failure (fails to select all instances) | [`Rename.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L465) | [R128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R128.txt) +R129 | Pass | [`Rename.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L466) | [R129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R129.txt) +R130 | Pass | [`Rename.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L468) | [R130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R130.txt) +R131 | Failure (fails to select all instances) | [`Rename.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L469) | [R131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R131.txt) +R132 | Pass | [`Rename.cpp`, line 470](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L470) | [R132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R132.txt) +R133 | Pass | [`Rename.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L475) | [R133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R133.txt) +R134 | Pass | [`Rename.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L479) | [R134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R134.txt) +R135 | Pass | [`Rename.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L481) | [R135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R135.txt) +R136 | Pass | [`Rename.cpp`, line 487](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L487) | [R136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R136.txt) +R137 | Failure (fails to rename selected instance) | [`Rename.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L488) | [R137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R137.txt) +R138 | Pass | [`Rename.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L490) | [R138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R138.txt) +R139 | Failure (fails to rename selected instance) | [`Rename.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L491) | [R139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R139.txt) +R140 | Pass | [`Rename.cpp`, line 493](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L493) | [R140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R140.txt) +R141 | Pass | [`Rename.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L494) | [R141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R141.txt) +R142 | Pass | [`Rename.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L496) | [R142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R142.txt) +R143 | Pass | [`Rename.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L497) | [R143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R143.txt) +R144 | Pass | [`Rename.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L503) | [R144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R144.txt) +R145 | Pass | [`Rename.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L504) | [R145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R145.txt) +R146 | (deprecated) | [`Rename.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L506) | [R146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R146.txt) +R147 | Pass | [`Rename.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L507) | [R147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R147.txt) +R148 | Pass | [`Rename.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L508) | [R148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R148.txt) +R149 | Failure (use in decltype not selected) | [`Rename.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L509) | [R149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R149.txt) +R150 | Pass | [`Rename.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L510) | [R150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R150.txt) +R151 | Failure (use in decltype not selected) | [`Rename.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L511) | [R151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R151.txt) +R152 | Failure (selects unrelated instances) | [`Rename.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L512) | [R152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R152.txt) +R153 | Failure (selects unrelated instances) | [`Rename.cpp`, line 513](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L513) | [R153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R153.txt) +R154 | Pass | [`Rename.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L516) | [R154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R154.txt) +R155 | Failure (use in decltype not selected) | [`Rename.cpp`, line 518](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L518) | [R155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R155.txt) +R156 | Failure (use in decltype not selected) | [`Rename.cpp`, line 519](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L519) | [R156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R156.txt) +R157 | Pass | [`Rename.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L523) | [R157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R157.txt) +R158 | Pass | [`Rename.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L524) | [R158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R158.txt) +R159 | Pass | [`Rename.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L526) | [R159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R159.txt) +R160 | Pass | [`Rename.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L527) | [R160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R160.txt) +R161 | Pass | [`Rename.cpp`, line 528](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L528) | [R161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R161.txt) +R162 | Pass | [`Rename.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L529) | [R162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R162.txt) +R163 | Pass | [`Rename.cpp`, line 530](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L530) | [R163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R163.txt) +R164 | Pass | [`Rename.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L531) | [R164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R164.txt) +R165 | Pass | [`Rename.cpp`, line 532](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L532) | [R165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R165.txt) +R166 | Pass | [`Rename.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L535) | [R166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R166.txt) +R167 | Pass | [`Rename.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L537) | [R167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R167.txt) +R168 | Pass | [`Rename.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L538) | [R168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R168.txt) +R169 | Pass | [`Rename.cpp`, line 542](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L542) | [R169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R169.txt) +R170 | Pass | [`Rename.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L549) | [R170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R170.txt) +R171 | Pass | [`Rename.cpp`, line 551](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L551) | [R171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R171.txt) +R172 | Pass | [`Rename.cpp`, line 553](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L553) | [R172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R172.txt) +R173 | Pass | [`Rename.cpp`, line 556](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L556) | [R173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R173.txt) +R174 | Pass | [`Rename.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L558) | [R174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R174.txt) +R175 | Pass | [`Rename.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L560) | [R175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R175.txt) +R176 | Pass | [`Rename.cpp`, line 564](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L564) | [R176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R176.txt) +R177 | Pass | [`Rename.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L567) | [R177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R177.txt) +R178 | Pass | [`Rename.cpp`, line 571](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L571) | [R178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R178.txt) +R179 | Pass | [`Rename.cpp`, line 572](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L572) | [R179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R179.txt) +R180 | Pass | [`Rename.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L575) | [R180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R180.txt) +R181 | Pass | [`Rename.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L576) | [R181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R181.txt) +R182 | Pass | [`Rename.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L583) | [R182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R182.txt) +R183 | Pass | [`Rename.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L584) | [R183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R183.txt) +R184 | Pass | [`Rename.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L585) | [R184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R184.txt) +R185 | Pass | [`Rename.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L587) | [R185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R185.txt) +R186 | Pass | [`Rename.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L588) | [R186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R186.txt) +R187 | Pass | [`Rename.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L589) | [R187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R187.txt) +R188 | Pass | [`Rename.cpp`, line 591](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L591) | [R188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R188.txt) +R189 | Pass | [`Rename.cpp`, line 593](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L593) | [R189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R189.txt) +R190 | Pass | [`Rename.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L609) | [R190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R190.txt) +R191 | Pass | [`Rename.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L617) | [R191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R191.txt) +R192 | Pass | [`Rename.cpp`, line 618](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L618) | [R192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R192.txt) +R193 | Pass | [`Rename.cpp`, line 622](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L622) | [R193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R193.txt) +R194 | Pass | [`Rename.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L624) | [R194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R194.txt) +R195 | Pass | [`Rename.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L626) | [R195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R195.txt) +R196 | Pass | [`Rename.cpp`, line 635](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L635) | [R196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R196.txt) +R197 | Pass | [`Rename.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L636) | [R197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R197.txt) +R198 | Pass | [`Rename.cpp`, line 637](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L637) | [R198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R198.txt) +R199 | Pass | [`Rename.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L639) | [R199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R199.txt) +R200 | Pass | [`Rename.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L640) | [R200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R200.txt) +R201 | Pass | [`Rename.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L641) | [R201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R201.txt) +R202 | Pass | [`Rename.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L642) | [R202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R202.txt) +R203 | Pass | [`Rename.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L643) | [R203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R203.txt) +R204 | Pass | [`Rename.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L644) | [R204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R204.txt) +R205 | Pass | [`Rename.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L645) | [R205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R205.txt) +R206 | Pass | [`Rename.cpp`, line 652](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L652) | [R206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R206.txt) +R207 | Pass | [`Rename.cpp`, line 653](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L653) | [R207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R207.txt) +R208 | Pass | [`Rename.cpp`, line 655](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L655) | [R208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R208.txt) +R209 | Pass | [`Rename.cpp`, line 662](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L662) | [R209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R209.txt) +R210 | Pass | [`Rename.cpp`, line 674](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L674) | [R210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R210.txt) +R211 | Pass | [`Rename.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L681) | [R211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R211.txt) +R212 | Pass | [`Rename.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L682) | [R212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R212.txt) +R213 | Pass | [`Rename.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L683) | [R213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R213.txt) +R214 | Pass | [`Rename.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L685) | [R214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R214.txt) +R215 | Pass | [`Rename.cpp`, line 686](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L686) | [R215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R215.txt) +R216 | Pass | [`Rename.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L687) | [R216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R216.txt) +R217 | Pass | [`Rename.cpp`, line 690](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L690) | [R217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R217.txt) +R218 | Pass | [`Rename.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L691) | [R218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R218.txt) +R219 | Pass | [`Rename.cpp`, line 693](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L693) | [R219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R219.txt) +R220 | Pass | [`Rename.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L694) | [R220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R220.txt) +R221 | Pass | [`Rename.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L697) | [R221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R221.txt) +R222 | Pass | [`Rename.cpp`, line 699](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L699) | [R222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R222.txt) +R223 | Pass | [`Rename.cpp`, line 700](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L700) | [R223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R223.txt) +R224 | Pass | [`Rename.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L702) | [R224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R224.txt) +R225 | Pass | [`Rename.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L705) | [R225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R225.txt) +R226 | Pass | [`Rename.cpp`, line 707](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L707) | [R226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R226.txt) +R227 | Pass | [`Rename.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L708) | [R227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R227.txt) +R228 | Pass | [`Rename.cpp`, line 717](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L717) | [R228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R228.txt) +R229 | Pass | [`Rename.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L722) | [R229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R229.txt) +R230 | Pass | [`Rename.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L728) | [R230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R230.txt) +R231 | Pass | [`Rename.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L730) | [R231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R231.txt) +R232 | Pass | [`Rename.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L732) | [R232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R232.txt) +R233 | Pass | [`Rename.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L734) | [R233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R233.txt) +R234 | Pass | [`Rename.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L736) | [R234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R234.txt) +R235 | Pass | [`Rename.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L738) | [R235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R235.txt) +R236 | Pass | [`Rename.cpp`, line 740](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L740) | [R236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R236.txt) +R237 | (deprecated) | [`Rename.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L742) | [R237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R237.txt) +R238 | (deprecated) | [`Rename.cpp`, line 743](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L743) | [R238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R238.txt) +R239 | Pass | [`Rename.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L744) | [R239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R239.txt) +R240 | Pass | [`Rename.cpp`, line 746](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L746) | [R240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R240.txt) +R241 | Pass | [`Rename.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L748) | [R241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R241.txt) +R242 | Pass | [`Rename.cpp`, line 750](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L750) | [R242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R242.txt) +R243 | Pass | [`Rename.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L752) | [R243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R243.txt) +R244 | Pass | [`RenameCpp11.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L7) | [R244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R244.txt) +R245 | Pass | [`RenameCpp11.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L9) | [R245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R245.txt) +R246 | Pass | [`RenameCpp11.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L12) | [R246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R246.txt) +R247 | Pass | [`RenameCpp11.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L16) | [R247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R247.txt) +R248 | Pass | [`RenameCpp11.h`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L23) | [R248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R248.txt) +R249 | Pass | [`RenameCpp11.h`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L25) | [R249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R249.txt) +R250 | Pass | [`RenameCpp11.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L14) | [R250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R250.txt) +R251 | Pass | [`RenameCpp11.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L16) | [R251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R251.txt) +R252 | Pass | [`RenameCpp11.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L18) | [R252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R252.txt) +R253 | Pass | [`RenameCpp11.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L20) | [R253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R253.txt) +R254 | Pass | [`RenameCpp11.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L23) | [R254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R254.txt) +R255 | Pass | [`RenameCpp11.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L25) | [R255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R255.txt) +R256 | Pass | [`RenameCpp11.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L28) | [R256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R256.txt) +R257 | Pass | [`RenameCpp11.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L33) | [R257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R257.txt) +R258 | Pass | [`RenameCpp11.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L38) | [R258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R258.txt) +R259 | Pass | [`RenameCpp11.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L40) | [R259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R259.txt) +R260 | Pass | [`RenameCpp11.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L43) | [R260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R260.txt) +R261 | Pass | [`RenameCpp11.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L49) | [R261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R261.txt) +R262 | Pass | [`RenameCpp11.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L51) | [R262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R262.txt) +R263 | Pass | [`RenameCpp11.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L55) | [R263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R263.txt) +R264 | Pass | [`RenameCpp11.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L57) | [R264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R264.txt) +R265 | Pass | [`RenameCpp11.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L63) | [R265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R265.txt) +R266 | Pass | [`RenameCpp11.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L69) | [R266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R266.txt) +R267 | Pass | [`RenameCpp11.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L75) | [R267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R267.txt) +R268 | Pass | [`RenameCpp11.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L81) | [R268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R268.txt) +R269 | Pass | [`RenameCpp11.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L87) | [R269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R269.txt) +R270 | Pass | [`RenameCpp11.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L89) | [R270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R270.txt) +R271 | Pass | [`RenameCpp11.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L95) | [R271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R271.txt) +R272 | Pass | [`RenameCpp11.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L98) | [R272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R272.txt) +R273 | Pass | [`RenameCpp11.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L100) | [R273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R273.txt) +R274 | Pass | [`RenameCpp11.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L101) | [R274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R274.txt) +R275 | Pass | [`RenameCpp11.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L103) | [R275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R275.txt) +R276 | Pass | [`RenameCpp11.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L104) | [R276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R276.txt) +R277 | Pass | [`RenameCpp11.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L106) | [R277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R277.txt) +R278 | Pass | [`RenameCpp11.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L108) | [R278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R278.txt) +R279 | Pass | [`RenameCpp11.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L109) | [R279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R279.txt) +R280 | Pass | [`RenameCpp11.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L111) | [R280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R280.txt) +R281 | Pass | [`RenameCpp11.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L112) | [R281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R281.txt) +R282 | Pass | [`RenameCpp11.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L143) | [R282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R282.txt) +R283 | Pass | [`RenameCpp11.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L146) | [R283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R283.txt) +R284 | Pass | [`RenameCpp11.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L148) | [R284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R284.txt) +R285 | Pass | [`RenameCpp11.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L149) | [R285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R285.txt) +R286 | Pass | [`RenameCpp11.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L151) | [R286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R286.txt) +R287 | Pass | [`RenameCpp11.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L152) | [R287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R287.txt) +R288 | Pass | [`RenameCpp11.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L154) | [R288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R288.txt) +R289 | Pass | [`RenameCpp11.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L156) | [R289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R289.txt) +R290 | Pass | [`RenameCpp11.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L157) | [R290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R290.txt) +R291 | Pass | [`RenameCpp11.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L159) | [R291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R291.txt) +R292 | Pass | [`RenameCpp11.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L160) | [R292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R292.txt) +R293 | Pass | [`RenameCpp11.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L167) | [R293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R293.txt) +R294 | Pass | [`RenameCpp11.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L173) | [R294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R294.txt) +R295 | Pass | [`RenameCpp11.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L175) | [R295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R295.txt) +R296 | Pass | [`RenameCpp11.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L185) | [R296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R296.txt) +R297 | Pass | [`RenameCpp11.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L186) | [R297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R297.txt) +R298 | Pass | [`RenameCpp11.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L188) | [R298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R298.txt) +R299 | Pass | [`RenameCpp11.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L189) | [R299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R299.txt) +R300 | Pass | [`RenameCpp11.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L190) | [R300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R300.txt) +R301 | Pass | [`RenameCpp11.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L191) | [R301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R301.txt) +R302 | Pass | [`RenameCpp11.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L194) | [R302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R302.txt) +R303 | Pass | [`RenameCpp11.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L196) | [R303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R303.txt) +R304 | Pass | [`RenameCpp11.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L197) | [R304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R304.txt) +R305 | Pass | [`RenameCpp11.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L200) | [R305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R305.txt) +R306 | Pass | [`RenameCpp11.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L215) | [R306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R306.txt) +R307 | Pass | [`RenameCpp11.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L217) | [R307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R307.txt) +R308 | Pass | [`RenameCpp11.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L221) | [R308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R308.txt) +R309 | Pass | [`RenameCpp11.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L222) | [R309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R309.txt) +R310 | Pass | [`RenameCpp11.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L223) | [R310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R310.txt) +R311 | Pass | [`RenameCpp11.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L227) | [R311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R311.txt) +R312 | Pass | [`RenameCpp11.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L243) | [R312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R312.txt) +R313 | Pass | [`RenameCpp11.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L251) | [R313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R313.txt) +R314 | Pass | [`RenameCpp11.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L253) | [R314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R314.txt) +R315 | Pass | [`RenameCpp11.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L264) | [R315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R315.txt) +R316 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 266](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L266) | [R316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R316.txt) +R317 | Pass | [`RenameCpp11.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L270) | [R317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R317.txt) +R318 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L280) | [R318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R318.txt) +R319 | Pass | [`RenameCpp11.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L281) | [R319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R319.txt) +R320 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L294) | [R320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R320.txt) +R321 | Pass | [`RenameCpp11.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L295) | [R321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R321.txt) +R322 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L346) | [R322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R322.txt) +R323 | Pass | [`RenameCpp11.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L347) | [R323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R323.txt) +R324 | Pass | [`RenameCpp11.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L350) | [R324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R324.txt) +R325 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L354) | [R325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R325.txt) +R326 | Pass | [`RenameCpp11.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L355) | [R326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R326.txt) +R327 | Pass | [`RenameCpp11.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L358) | [R327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R327.txt) +R328 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 362](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L362) | [R328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R328.txt) +R329 | Pass | [`RenameCpp11.cpp`, line 363](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L363) | [R329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R329.txt) +R330 | Pass | [`RenameCpp11.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L366) | [R330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R330.txt) +R331 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L370) | [R331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R331.txt) +R332 | Pass | [`RenameCpp11.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L371) | [R332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R332.txt) +R333 | Pass | [`RenameCpp11.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L374) | [R333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R333.txt) +R334 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L378) | [R334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R334.txt) +R335 | Pass | [`RenameCpp11.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L379) | [R335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R335.txt) +R336 | Pass | [`RenameCpp11.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L382) | [R336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R336.txt) +R337 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L386) | [R337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R337.txt) +R338 | Pass | [`RenameCpp11.cpp`, line 387](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L387) | [R338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R338.txt) +R339 | Pass | [`RenameCpp11.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L390) | [R339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R339.txt) +R340 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L394) | [R340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R340.txt) +R341 | Pass | [`RenameCpp11.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L395) | [R341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R341.txt) +R342 | Pass | [`RenameCpp11.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L396) | [R342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R342.txt) +R343 | Pass | [`RenameCpp11.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L399) | [R343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R343.txt) +R344 | Pass | [`RenameCpp11.cpp`, line 400](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L400) | [R344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R344.txt) +R345 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L413) | [R345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R345.txt) +R346 | Pass | [`RenameCpp11.cpp`, line 414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L414) | [R346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R346.txt) +R347 | Pass | [`RenameCpp11.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L415) | [R347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R347.txt) +R348 | Pass | [`RenameCpp11.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L418) | [R348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R348.txt) +R349 | Pass | [`RenameCpp11.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L419) | [R349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R349.txt) +R350 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L423) | [R350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R350.txt) +R351 | Pass | [`RenameCpp11.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L424) | [R351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R351.txt) +R352 | Pass | [`RenameCpp11.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L425) | [R352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R352.txt) +R353 | Pass | [`RenameCpp11.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L428) | [R353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R353.txt) +R354 | Pass | [`RenameCpp11.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L429) | [R354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R354.txt) +R355 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L433) | [R355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R355.txt) +R356 | Pass | [`RenameCpp11.cpp`, line 434](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L434) | [R356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R356.txt) +R357 | Pass | [`RenameCpp11.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L435) | [R357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R357.txt) +R358 | Pass | [`RenameCpp11.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L438) | [R358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R358.txt) +R359 | Pass | [`RenameCpp11.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L439) | [R359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R359.txt) +R360 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L445) | [R360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R360.txt) +R361 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 447](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L447) | [R361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R361.txt) +R362 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L449) | [R362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R362.txt) +R363 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L451) | [R363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R363.txt) +R364 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L453) | [R364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R364.txt) +R365 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L455) | [R365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R365.txt) +R366 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L457) | [R366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R366.txt) +R367 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L459) | [R367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R367.txt) +R368 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L461) | [R368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R368.txt) +R369 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L463) | [R369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R369.txt) +R370 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L465) | [R370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R370.txt) +R371 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L467) | [R371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R371.txt) +R372 | Failure (action not enabled in dialog) | [`RenameCpp11.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L469) | [R372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R372.txt) +R373 | Pass | [`RenameCpp11.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L473) | [R373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R373.txt) +R374 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L475) | [R374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R374.txt) +R375 | Pass | [`RenameCpp11.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L476) | [R375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R375.txt) +R376 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L481) | [R376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R376.txt) +R377 | Failure (selects incorrect instances) | [`RenameCpp11.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L483) | [R377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R377.txt) +R378 | Pass | [`RenameCpp11.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L489) | [R378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R378.txt) +R379 | Pass | [`RenameCpp11.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L492) | [R379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R379.txt) +R380 | Pass | [`RenameCpp11.cpp`, line 499](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L499) | [R380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R380.txt) +R381 | Pass | [`RenameCpp11.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L504) | [R381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R381.txt) +R382 | Pass | [`RenameCpp11.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L505) | [R382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R382.txt) +R383 | Pass | [`RenameCpp11.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L506) | [R383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R383.txt) +R384 | Pass | [`RenameCpp11.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L507) | [R384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R384.txt) +R385 | Pass | [`RenameCpp11.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L509) | [R385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R385.txt) +R386 | Pass | [`RenameCpp11.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L516) | [R386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R386.txt) +R387 | Pass | [`RenameCpp11.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L520) | [R387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R387.txt) +R388 | Pass | [`RenameCpp11.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L522) | [R388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R388.txt) +R389 | Pass | [`RenameCpp11.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L523) | [R389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R389.txt) +R390 | Pass | [`RenameCpp11.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L527) | [R390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R390.txt) +R391 | Pass | [`RenameCpp11.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L529) | [R391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R391.txt) +R392 | Pass | [`RenameCpp11.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L533) | [R392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R392.txt) +R393 | Pass | [`RenameCpp11.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L537) | [R393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R393.txt) +R394 | Pass | [`RenameCpp11.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L538) | [R394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R394.txt) +R395 | Pass | [`RenameCpp11.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L539) | [R395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R395.txt) +R396 | Pass | [`RenameCpp11.cpp`, line 543](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L543) | [R396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R396.txt) +R397 | Pass | [`RenameCpp11.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L555) | [R397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R397.txt) +R398 | Pass | [`RenameCpp11.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L557) | [R398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R398.txt) +R399 | Pass | [`RenameCpp11.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L558) | [R399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R399.txt) +R400 | Pass | [`RenameCpp11.cpp`, line 561](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L561) | [R400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R400.txt) +R401 | Pass | [`RenameCpp11.cpp`, line 562](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L562) | [R401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R401.txt) +R402 | Pass | [`RenameCpp11.cpp`, line 573](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L573) | [R402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R402.txt) +R403 | Pass | [`RenameCpp11.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L577) | [R403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R403.txt) +R404 | Pass | [`RenameCpp11.cpp`, line 581](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L581) | [R404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R404.txt) +R405 | Pass | [`RenameCpp11.cpp`, line 582](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L582) | [R405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R405.txt) +R406 | Pass | [`RenameCpp11.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L587) | [R406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R406.txt) +R407 | Pass | [`RenameCpp11.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L600) | [R407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R407.txt) +R408 | Pass | [`RenameCpp11.cpp`, line 602](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L602) | [R408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R408.txt) +R409 | Pass | [`RenameCpp11.cpp`, line 605](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L605) | [R409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R409.txt) +R410 | Pass | [`RenameCpp11.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L606) | [R410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R410.txt) +R411 | Pass | [`RenameCpp11.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L607) | [R411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R411.txt) +R412 | Pass | [`RenameCpp11.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L608) | [R412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R412.txt) +R413 | Pass | [`RenameCpp11.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L636) | [R413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R413.txt) +R414 | Pass | [`RenameCpp11.cpp`, line 638](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L638) | [R414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R414.txt) +R415 | Pass | [`RenameCpp11.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L639) | [R415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R415.txt) +R416 | Pass | [`RenameCpp11.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L640) | [R416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R416.txt) +R417 | Pass | [`RenameCpp11.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L643) | [R417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R417.txt) +R418 | Pass | [`RenameCpp11.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L644) | [R418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R418.txt) +R419 | Pass | [`RenameCpp11.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L647) | [R419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R419.txt) +R420 | Pass | [`RenameCpp11.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L648) | [R420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R420.txt) +R421 | Pass | [`RenameCpp11.cpp`, line 650](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L650) | [R421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R421.txt) +R422 | Pass | [`RenameCpp11.cpp`, line 664](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L664) | [R422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R422.txt) +R423 | Pass | [`RenameCpp11.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L666) | [R423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R423.txt) +R424 | Pass | [`RenameCpp11.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L676) | [R424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R424.txt) +R425 | Pass | [`RenameCpp11.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L678) | [R425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R425.txt) +R426 | Pass | [`RenameCpp11.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L681) | [R426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R426.txt) +R427 | Pass | [`RenameCpp11.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L682) | [R427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R427.txt) +R428 | Pass | [`RenameCpp11.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L683) | [R428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R428.txt) +R429 | Pass | [`RenameCpp11.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L687) | [R429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R429.txt) +R430 | Pass | [`RenameCpp11.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L701) | [R430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R430.txt) +R431 | Pass | [`RenameCpp11.cpp`, line 704](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L704) | [R431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R431.txt) +R432 | Pass | [`RenameCpp11.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L705) | [R432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R432.txt) +R433 | Pass | [`RenameCpp11.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L709) | [R433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R433.txt) +R434 | Pass | [`RenameCpp11.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L710) | [R434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R434.txt) +R435 | Pass | [`RenameCpp11.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L714) | [R435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R435.txt) +R436 | Pass | [`RenameCpp11.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L722) | [R436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R436.txt) +R437 | Pass | [`RenameCpp11.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L728) | [R437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R437.txt) +R438 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L730) | [R438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R438.txt) +R439 | Pass | [`RenameCpp11.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L731) | [R439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R439.txt) +R440 | Failure (does nothing) | [`RenameCpp11.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L732) | [R440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R440.txt) +R441 | Pass | [`RenameCpp11.cpp`, line 735](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L735) | [R441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R441.txt) +R442 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L736) | [R442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R442.txt) +R443 | Pass | [`RenameCpp11.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L749) | [R443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R443.txt) +R444 | Pass | [`RenameCpp11.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L751) | [R444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R444.txt) +R445 | Pass | [`RenameCpp11.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L752) | [R445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R445.txt) +R446 | Pass | [`RenameCpp11.cpp`, line 753](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L753) | [R446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R446.txt) +R447 | Pass | [`RenameCpp11.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L756) | [R447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R447.txt) +R448 | Pass | [`RenameCpp11.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L758) | [R448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R448.txt) +R449 | Pass | [`RenameCpp11.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L759) | [R449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R449.txt) +R450 | Pass | [`RenameCpp11.cpp`, line 760](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L760) | [R450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R450.txt) +R451 | Pass | [`RenameCpp11.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L761) | [R451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R451.txt) +R452 | Pass | [`RenameCpp11.cpp`, line 762](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L762) | [R452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R452.txt) +R453 | Pass | [`RenameCpp11.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L765) | [R453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R453.txt) +R454 | Pass | [`RenameCpp11.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L766) | [R454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R454.txt) +R455 | Pass | [`RenameCpp11.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L767) | [R455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R455.txt) +R456 | Pass | [`RenameCpp11.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L768) | [R456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R456.txt) +R457 | Pass | [`RenameCpp11.cpp`, line 771](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L771) | [R457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R457.txt) +R458 | Pass | [`RenameCpp11.cpp`, line 772](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L772) | [R458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R458.txt) +R459 | Pass | [`RenameCpp11.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L776) | [R459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R459.txt) +R460 | Pass | [`RenameCpp11.cpp`, line 780](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L780) | [R460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R460.txt) +R461 | Pass | [`RenameCpp11.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L781) | [R461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R461.txt) +R462 | Pass | [`RenameCpp11.cpp`, line 783](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L783) | [R462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R462.txt) +R463 | Pass | [`RenameCpp11.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L787) | [R463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R463.txt) +R464 | Pass | [`RenameCpp11.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L789) | [R464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R464.txt) +R465 | Pass | [`RenameCpp11.cpp`, line 790](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L790) | [R465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R465.txt) +R466 | Pass | [`RenameCpp11.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L791) | [R466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R466.txt) +R467 | Pass | [`RenameCpp11.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L792) | [R467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R467.txt) +R468 | Pass | [`RenameCpp11.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L793) | [R468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R468.txt) +R469 | Pass | [`RenameCpp11.cpp`, line 801](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L801) | [R469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R469.txt) +R470 | Pass | [`RenameCpp11.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L805) | [R470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R470.txt) +R471 | Pass | [`RenameCpp11.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L809) | [R471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R471.txt) +R472 | Pass | [`RenameCpp11.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L810) | [R472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R472.txt) +R473 | Pass | [`RenameCpp11.cpp`, line 812](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L812) | [R473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R473.txt) +R474 | Pass | [`RenameCpp11.cpp`, line 813](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L813) | [R474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R474.txt) +R475 | Pass | [`RenameCpp11.cpp`, line 814](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L814) | [R475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R475.txt) +R476 | Pass | [`RenameCpp11.cpp`, line 815](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L815) | [R476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R476.txt) +R477 | Pass | [`RenameCpp11.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L821) | [R477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R477.txt) +R478 | Pass | [`RenameCpp11.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L824) | [R478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R478.txt) +R479 | Pass | [`RenameCpp11.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L825) | [R479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R479.txt) +R480 | Pass | [`RenameCpp11.cpp`, line 828](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L828) | [R480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R480.txt) +R481 | Pass | [`RenameCpp11.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L833) | [R481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R481.txt) +R482 | Pass | [`RenameCpp11.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L834) | [R482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R482.txt) +R483 | Pass | [`RenameCpp11.cpp`, line 837](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L837) | [R483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R483.txt) +R484 | Pass | [`RenameCpp11.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L845) | [R484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R484.txt) +R485 | Pass | [`RenameCpp11.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L846) | [R485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R485.txt) +R486 | Pass | [`RenameCpp11.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L849) | [R486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R486.txt) +R487 | Pass | [`RenameCpp11.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L854) | [R487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R487.txt) +R488 | Pass | [`RenameCpp11.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L855) | [R488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R488.txt) +R489 | Pass | [`RenameCpp11.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L858) | [R489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R489.txt) +R490 | Pass | [`RenameCpp11.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L866) | [R490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R490.txt) +R491 | Pass | [`RenameCpp11.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L867) | [R491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R491.txt) +R492 | Pass | [`RenameCpp11.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L870) | [R492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R492.txt) +R493 | Pass | [`RenameCpp11.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L878) | [R493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R493.txt) +R494 | Pass | [`RenameCpp11.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L880) | [R494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R494.txt) +R495 | Pass | [`RenameCpp11.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L882) | [R495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R495.txt) +R496 | Pass | [`RenameCpp11.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L883) | [R496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R496.txt) +R497 | Pass | [`RenameCpp11.cpp`, line 885](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L885) | [R497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R497.txt) +R498 | Pass | [`RenameCpp11.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L887) | [R498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R498.txt) +R499 | Pass | [`RenameCpp11.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L889) | [R499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R499.txt) +R500 | Pass | [`RenameCpp11.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L890) | [R500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R500.txt) +R501 | Pass | [`RenameCpp11.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L892) | [R501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R501.txt) +R502 | Pass | [`RenameCpp11.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L898) | [R502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R502.txt) +R503 | Pass | [`RenameCpp11.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L900) | [R503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R503.txt) +R504 | Pass | [`RenameCpp11.cpp`, line 901](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L901) | [R504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R504.txt) +R505 | Pass | [`RenameCpp11.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L902) | [R505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R505.txt) +R506 | Pass | [`RenameCpp11.cpp`, line 904](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L904) | [R506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R506.txt) +R507 | Pass | [`RenameCpp11.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L906) | [R507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R507.txt) +R508 | Pass | [`RenameCpp11.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L907) | [R508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R508.txt) +R509 | Pass | [`RenameCpp11.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L909) | [R509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R509.txt) +R510 | Pass | [`RenameCpp11.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L910) | [R510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R510.txt) +R511 | Pass | [`RenameCpp11.cpp`, line 911](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L911) | [R511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R511.txt) +R512 | Pass | [`RenameCpp11.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L912) | [R512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R512.txt) +R513 | Pass | [`RenameCpp11.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L913) | [R513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R513.txt) +R514 | Pass | [`RenameCpp11.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L915) | [R514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R514.txt) +R515 | Pass | [`RenameCpp11.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L921) | [R515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R515.txt) +R516 | Pass | [`RenameCpp11.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L923) | [R516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R516.txt) +R517 | Pass | [`RenameCpp11.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L925) | [R517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R517.txt) +R518 | Pass | [`RenameCpp11.cpp`, line 928](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L928) | [R518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R518.txt) +R519 | Pass | [`RenameCpp11.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L929) | [R519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R519.txt) +R520 | Pass | [`RenameCpp11.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L930) | [R520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R520.txt) +R521 | Pass | [`RenameCpp11.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L940) | [R521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R521.txt) +R522 | Pass | [`RenameCpp11.cpp`, line 942](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L942) | [R522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R522.txt) +R523 | Pass | [`RenameCpp11.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L945) | [R523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R523.txt) +R524 | Pass | [`RenameCpp11.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L952) | [R524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R524.txt) +R525 | Pass | [`RenameCpp11.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L954) | [R525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R525.txt) +R526 | Pass | [`RenameCpp11.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L957) | [R526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R526.txt) +R527 | Pass | [`RenameCpp11.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L958) | [R527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R527.txt) +R528 | Pass | [`RenameCpp11.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L960) | [R528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R528.txt) +R529 | Pass | [`RenameCpp11.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L965) | [R529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R529.txt) +R530 | Pass | [`RenameCpp11.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L970) | [R530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R530.txt) +R531 | Pass | [`RenameCpp11.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L972) | [R531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R531.txt) +R532 | Pass | [`RenameCpp11.cpp`, line 973](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L973) | [R532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R532.txt) +R533 | Pass | [`RenameCpp11.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L975) | [R533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R533.txt) +R534 | Pass | [`RenameCpp11.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L977) | [R534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R534.txt) +R535 | Pass | [`RenameCpp11.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L981) | [R535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R535.txt) +R536 | Pass | [`RenameCpp11.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L982) | [R536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R536.txt) +R537 | Pass | [`RenameCpp11.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L988) | [R537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R537.txt) +R538 | Pass | [`RenameCpp11.cpp`, line 993](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L993) | [R538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R538.txt) +R539 | Pass | [`RenameCpp11.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L997) | [R539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R539.txt) +R540 | Pass | [`RenameCpp11.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1005) | [R540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R540.txt) +R541 | Pass | [`RenameCpp11.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1011) | [R541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R541.txt) +R542 | Pass | [`RenameCpp11.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1018) | [R542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R542.txt) +R543 | Pass | [`RenameCpp11.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1021) | [R543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R543.txt) +R544 | Pass | [`RenameCpp11.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1028) | [R544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R544.txt) +R545 | Pass | [`RenameCpp11.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1030) | [R545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R545.txt) +R546 | Pass | [`RenameCpp11.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1032) | [R546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R546.txt) +R547 | Pass | [`RenameCpp11.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1042) | [R547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R547.txt) +R548 | Pass | [`RenameCpp11.cpp`, line 1044](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1044) | [R548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R548.txt) +R549 | Pass | [`RenameCpp11.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1046) | [R549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R549.txt) +R550 | Pass | [`RenameCpp11.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1052) | [R550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R550.txt) +R551 | Pass | [`RenameCpp11.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1054) | [R551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R551.txt) +R552 | Pass | [`RenameCpp11.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1057) | [R552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R552.txt) +R553 | Pass | [`RenameCpp11.cpp`, line 1059](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1059) | [R553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R553.txt) +R554 | Pass | [`RenameCpp11.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1062) | [R554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R554.txt) +R555 | Pass | [`RenameCpp11.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1064) | [R555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R555.txt) +R556 | Pass | [`RenameCpp11.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1067) | [R556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R556.txt) +R557 | Pass | [`RenameCpp11.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1069) | [R557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R557.txt) +R558 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 1073](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1073) | [R558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R558.txt) +R559 | Failure (not available) | [`RenameCpp11.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1074) | [R559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R559.txt) +R560 | Failure (not available) | [`RenameCpp11.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1075) | [R560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R560.txt) +R561 | Pass | [`RenameCpp11.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1076) | [R561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R561.txt) +R562 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1082) | [R562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R562.txt) +R563 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1087) | [R563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R563.txt) +R564 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1090) | [R564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R564.txt) +R565 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1096) | [R565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R565.txt) +R566 | Failure (not available) | [`RenameCpp11.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1101) | [R566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R566.txt) +R567 | Pass | [`RenameCpp11.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1104) | [R567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R567.txt) +R568 | Pass | [`RenameCpp11.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1107) | [R568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R568.txt) +R569 | Pass | [`RenameCpp11.cpp`, line 1111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1111) | [R569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R569.txt) +R570 | Pass | [`RenameCpp11.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1112) | [R570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R570.txt) +R571 | Pass | [`RenameCpp11.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1117) | [R571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R571.txt) +R572 | Pass | [`RenameCpp11.cpp`, line 1118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1118) | [R572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R572.txt) +R573 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1122) | [R573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R573.txt) +R574 | Failure (not all instances selected) | [`RenameCpp11.cpp`, line 1127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1127) | [R574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R574.txt) +R575 | Failure (not available) | [`RenameCpp11.cpp`, line 1131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1131) | [R575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R575.txt) +R576 | Pass | [`RenameCpp11.cpp`, line 1134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1134) | [R576.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R576.txt) +R577 | Pass | [`RenameCpp11.cpp`, line 1143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1143) | [R577.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R577.txt) +R578 | Pass | [`RenameCpp11.cpp`, line 1149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1149) | [R578.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R578.txt) +R579 | Pass | [`RenameCpp11.cpp`, line 1158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1158) | [R579.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R579.txt) +R580 | Pass | [`RenameCpp11.cpp`, line 1165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1165) | [R580.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R580.txt) +R581 | Pass | [`RenameCpp11.cpp`, line 1172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1172) | [R581.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R581.txt) +R582 | Pass | [`RenameCpp11.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1173) | [R582.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R582.txt) +R583 | Failure (selects wrong instances) | [`RenameCpp11.cpp`, line 1178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1178) | [R583.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R583.txt) +R584 | Pass | [`RenameCpp11.cpp`, line 1183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1183) | [R584.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R584.txt) +R585 | Failure (selects wrong instances) | [`RenameCpp11.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1189) | [R585.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R585.txt) +R586 | Pass | [`RenameCpp11.cpp`, line 1194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1194) | [R586.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R586.txt) +R587 | Pass | [`RenameCpp11.cpp`, line 1195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1195) | [R587.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R587.txt) +R588 | Pass | [`RenameCpp11.cpp`, line 1196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1196) | [R588.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R588.txt) +R589 | Failure (selects wrong instances) | [`RenameCpp11.cpp`, line 1206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1206) | [R589.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R589.txt) +R590 | Pass | [`RenameCpp11.cpp`, line 1213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1213) | [R590.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R590.txt) +R591 | Failure (selects wrong instances) | [`RenameCpp11.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1218) | [R591.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R591.txt) +R592 | Pass | [`RenameCpp11.cpp`, line 1222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1222) | [R592.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R592.txt) +R593 | Pass | [`RenameCpp11.cpp`, line 1225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1225) | [R593.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R593.txt) +R594 | Pass | [`RenameCpp11.cpp`, line 1227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1227) | [R594.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R594.txt) +R595 | Pass | [`RenameCpp11.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1229) | [R595.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R595.txt) +R596 | Pass | [`RenameCpp11.cpp`, line 1231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1231) | [R596.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R596.txt) +R597 | Pass | [`RenameCpp11.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1236) | [R597.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R597.txt) +R598 | Pass | [`RenameCpp11.cpp`, line 1237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1237) | [R598.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R598.txt) +R599 | Pass | [`RenameCpp11.cpp`, line 1240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1240) | [R599.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R599.txt) +R600 | Pass | [`RenameCpp11.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1246) | [R600.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R600.txt) +R601 | Pass | [`RenameCpp11.cpp`, line 1247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1247) | [R601.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R601.txt) +R602 | Pass | [`RenameCpp11.cpp`, line 1250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1250) | [R602.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R602.txt) +R603 | Pass | [`RenameCpp11.cpp`, line 1251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1251) | [R603.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R603.txt) +R604 | Pass | [`RenameCpp11.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1290) | [R604.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R604.txt) +R605 | Pass | [`RenameCpp11.cpp`, line 1292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1292) | [R605.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R605.txt) +R606 | Pass | [`RenameCpp14.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L6) | [R606.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R606.txt) +R607 | Pass | [`RenameCpp14.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L8) | [R607.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R607.txt) +R608 | Failure (usages not selected) | [`RenameCpp14.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L9) | [R608.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R608.txt) +R609 | Pass | [`RenameCpp14.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L10) | [R609.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R609.txt) +R610 | Pass | [`RenameCpp14.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L11) | [R610.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R610.txt) +R611 | Pass | [`RenameCpp14.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L14) | [R611.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R611.txt) +R612 | Pass | [`RenameCpp14.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L16) | [R612.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R612.txt) +R613 | Pass | [`RenameCpp14.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L17) | [R613.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R613.txt) +R614 | Failure (usages not selected) | [`RenameCpp14.h`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L20) | [R614.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R614.txt) +R615 | Pass | [`RenameCpp14.h`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L21) | [R615.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R615.txt) +R616 | Pass | [`RenameCpp14.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L20) | [R616.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R616.txt) +R617 | Pass | [`RenameCpp14.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L22) | [R617.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R617.txt) +R618 | Failure (usages not selected) | [`RenameCpp14.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L23) | [R618.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R618.txt) +R619 | Pass | [`RenameCpp14.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L24) | [R619.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R619.txt) +R620 | Pass | [`RenameCpp14.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L27) | [R620.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R620.txt) +R621 | Pass | [`RenameCpp14.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L29) | [R621.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R621.txt) +R622 | Pass | [`RenameCpp14.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L30) | [R622.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R622.txt) +R623 | Failure (usages not selected) | [`RenameCpp14.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L33) | [R623.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R623.txt) +R624 | Pass | [`RenameCpp14.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L34) | [R624.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R624.txt) +R625 | Failure (usages not selected) | [`RenameCpp14.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L48) | [R625.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R625.txt) +R626 | Failure (usages not selected) | [`RenameCpp14.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L52) | [R626.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R626.txt) +R627 | Failure (usages not selected) | [`RenameCpp14.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L60) | [R627.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R627.txt) +R628 | Failure (usages not selected) | [`RenameCpp14.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L64) | [R628.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R628.txt) +R629 | Pass | [`RenameCpp14.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L70) | [R629.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R629.txt) +R630 | Pass | [`RenameCpp14.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L71) | [R630.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R630.txt) +R631 | Pass | [`RenameCpp14.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L72) | [R631.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R631.txt) +R632 | Pass | [`RenameCpp14.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L73) | [R632.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R632.txt) +R633 | Pass | [`RenameCpp14.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L81) | [R633.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R633.txt) +R634 | Pass | [`RenameCpp14.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L83) | [R634.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R634.txt) +R635 | Pass | [`RenameCpp14.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L84) | [R635.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R635.txt) +R636 | Pass | [`RenameCpp14.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L85) | [R636.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R636.txt) +R637 | Pass | [`RenameCpp14.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L86) | [R637.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R637.txt) +R638 | Pass | [`RenameCpp14.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L87) | [R638.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R638.txt) +R639 | Pass | [`RenameCpp14.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L88) | [R639.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R639.txt) +R640 | Pass | [`RenameCpp14.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L90) | [R640.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R640.txt) +R641 | Pass | [`RenameCpp14.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L92) | [R641.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R641.txt) +R642 | Pass | [`RenameCpp14.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L93) | [R642.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R642.txt) +R643 | Pass | [`RenameCpp14.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L94) | [R643.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R643.txt) +R644 | Pass | [`RenameCpp14.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L95) | [R644.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R644.txt) +R645 | Pass | [`RenameCpp14.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L96) | [R645.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R645.txt) +R646 | Pass | [`RenameCpp14.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L97) | [R646.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R646.txt) +R647 | Pass | [`RenameCpp14.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L99) | [R647.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R647.txt) +R648 | Pass | [`RenameCpp17.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L6) | [R648.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R648.txt) +R649 | Pass | [`RenameCpp17.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L7) | [R649.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R649.txt) +R650 | Pass | [`RenameCpp17.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L8) | [R650.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R650.txt) +R651 | Pass | [`RenameCpp17.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L11) | [R651.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R651.txt) +R652 | Pass | [`RenameCpp17.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L18) | [R652.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R652.txt) +R653 | Pass | [`RenameCpp17.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L26) | [R653.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R653.txt) +R654 | Pass | [`RenameCpp17.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L27) | [R654.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R654.txt) +R655 | Pass | [`RenameCpp17.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L28) | [R655.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R655.txt) +R656 | Pass | [`RenameCpp17.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L32) | [R656.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R656.txt) +R657 | Pass | [`RenameCpp17.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L48) | [R657.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R657.txt) +R658 | Pass | [`RenameCpp17.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L49) | [R658.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R658.txt) +R659 | Pass | [`RenameCpp17.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L50) | [R659.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R659.txt) +R660 | Pass | [`RenameCpp17.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L51) | [R660.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R660.txt) +R661 | Pass | [`RenameCpp17.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L53) | [R661.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R661.txt) +R662 | Pass | [`RenameCpp17.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L55) | [R662.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R662.txt) +R663 | Pass | [`RenameCpp17.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L56) | [R663.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R663.txt) +R664 | Pass | [`RenameCpp17.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L58) | [R664.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R664.txt) +R665 | Pass | [`RenameCpp17.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L68) | [R665.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R665.txt) +R666 | Pass | [`RenameCpp17.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L72) | [R666.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R666.txt) +R667 | Pass | [`RenameCpp17.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L73) | [R667.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R667.txt) +R668 | Pass | [`RenameCpp17.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L75) | [R668.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R668.txt) +R669 | Pass | [`RenameCpp17.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L78) | [R669.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R669.txt) +R670 | Pass | [`RenameCpp17.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L79) | [R670.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R670.txt) +R671 | Pass | [`RenameCpp17.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L99) | [R671.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R671.txt) +R672 | Pass | [`RenameCpp17.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L105) | [R672.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R672.txt) +R673 | Pass | [`RenameCpp17.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L107) | [R673.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R673.txt) +R674 | Pass | [`RenameCpp17.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L109) | [R674.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R674.txt) +R675 | Pass | [`RenameCpp17.cpp`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L110) | [R675.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R675.txt) +R676 | Pass | [`RenameCpp17.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L111) | [R676.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R676.txt) +R677 | Pass | [`RenameCpp17.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L112) | [R677.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R677.txt) +R678 | Pass | [`RenameCpp17.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L113) | [R678.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R678.txt) +R679 | Pass | [`RenameCpp17.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L118) | [R679.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R679.txt) +R680 | Pass | [`RenameCpp17.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L121) | [R680.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R680.txt) +R681 | Pass | [`RenameCpp17.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L130) | [R681.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R681.txt) +R682 | Pass | [`RenameCpp17.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L137) | [R682.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R682.txt) +R683 | Pass | [`RenameCpp17.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L139) | [R683.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R683.txt) +R684 | Pass | [`RenameCpp17.cpp`, line 147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L147) | [R684.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R684.txt) +R685 | Pass | [`RenameCpp17.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L149) | [R685.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R685.txt) +R686 | Pass | [`RenameCpp17.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L150) | [R686.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R686.txt) +R687 | Pass | [`RenameCpp17.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L151) | [R687.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R687.txt) +R688 | Pass | [`RenameCpp17.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L153) | [R688.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R688.txt) +R689 | Pass | [`RenameCpp17.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L155) | [R689.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R689.txt) +R690 | Pass | [`RenameCpp17.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L157) | [R690.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R690.txt) +R691 | Pass | [`RenameCpp17.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L158) | [R691.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R691.txt) +R692 | Pass | [`RenameCpp17.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L159) | [R692.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R692.txt) +R693 | Pass | [`RenameCpp17.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L161) | [R693.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R693.txt) +R694 | Pass | [`RenameCpp17.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L163) | [R694.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R694.txt) +R695 | Pass | [`RenameCpp17.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L165) | [R695.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R695.txt) +R696 | Pass | [`RenameCpp17.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L166) | [R696.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R696.txt) +R697 | Pass | [`RenameCpp17.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L167) | [R697.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R697.txt) +R698 | Pass | [`RenameCpp17.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L169) | [R698.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R698.txt) +R699 | Pass | [`RenameCpp17.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L171) | [R699.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R699.txt) +R700 | Pass | [`RenameCpp17.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L175) | [R700.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R700.txt) +R701 | Pass | [`RenameCpp17.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L176) | [R701.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R701.txt) +R702 | Pass | [`RenameCpp17.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L177) | [R702.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R702.txt) +R703 | Pass | [`RenameCpp17.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L179) | [R703.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R703.txt) +R704 | Pass | [`RenameCpp17.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L181) | [R704.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R704.txt) +R705 | Pass | [`RenameCpp17.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L189) | [R705.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R705.txt) +R706 | Pass | [`RenameCpp17.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L190) | [R706.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R706.txt) +R707 | Pass | [`RenameCpp17.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L191) | [R707.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R707.txt) +R708 | Pass | [`RenameCpp17.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L193) | [R708.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R708.txt) +R709 | Pass | [`RenameCpp17.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L195) | [R709.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R709.txt) +R710 | Pass | [`RenameCpp17.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L197) | [R710.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R710.txt) +R711 | Pass | [`RenameCpp17.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L198) | [R711.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R711.txt) +R712 | Pass | [`RenameCpp17.cpp`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L199) | [R712.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R712.txt) +R713 | Pass | [`RenameCpp17.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L201) | [R713.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R713.txt) +R714 | Pass | [`RenameCpp17.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L203) | [R714.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R714.txt) +R715 | Pass | [`RenameCpp17.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L205) | [R715.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R715.txt) +R716 | Pass | [`RenameCpp17.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L206) | [R716.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R716.txt) +R717 | Pass | [`RenameCpp17.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L207) | [R717.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R717.txt) +R718 | Pass | [`RenameCpp17.cpp`, line 209](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L209) | [R718.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R718.txt) +R719 | Pass | [`RenameCpp17.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L211) | [R719.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R719.txt) +R720 | Pass | [`RenameCpp17.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L215) | [R720.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R720.txt) +R721 | Pass | [`RenameCpp17.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L216) | [R721.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R721.txt) +R722 | Pass | [`RenameCpp17.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L217) | [R722.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R722.txt) +R723 | Pass | [`RenameCpp17.cpp`, line 219](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L219) | [R723.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R723.txt) +R724 | Pass | [`RenameCpp17.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L221) | [R724.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R724.txt) +R725 | Pass | [`RenameCpp17.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L233) | [R725.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R725.txt) +R726 | Pass | [`RenameCpp17.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L234) | [R726.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R726.txt) +R727 | Pass | [`RenameCpp17.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L235) | [R727.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R727.txt) +R728 | Pass | [`RenameCpp17.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L237) | [R728.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R728.txt) +R729 | Pass | [`RenameCpp17.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L239) | [R729.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R729.txt) +R730 | Pass | [`RenameCpp17.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L241) | [R730.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R730.txt) +R731 | Pass | [`RenameCpp17.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L242) | [R731.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R731.txt) +R732 | Pass | [`RenameCpp17.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L243) | [R732.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R732.txt) +R733 | Pass | [`RenameCpp17.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L245) | [R733.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R733.txt) +R734 | Pass | [`RenameCpp17.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L247) | [R734.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R734.txt) +R735 | Pass | [`RenameCpp17.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L249) | [R735.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R735.txt) +R736 | Pass | [`RenameCpp17.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L250) | [R736.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R736.txt) +R737 | Pass | [`RenameCpp17.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L251) | [R737.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R737.txt) +R738 | Pass | [`RenameCpp17.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L253) | [R738.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R738.txt) +R739 | Pass | [`RenameCpp17.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L255) | [R739.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R739.txt) +R740 | Pass | [`RenameCpp17.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L259) | [R740.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R740.txt) +R741 | Pass | [`RenameCpp17.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L260) | [R741.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R741.txt) +R742 | Pass | [`RenameCpp17.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L261) | [R742.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R742.txt) +R743 | Pass | [`RenameCpp17.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L263) | [R743.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R743.txt) +R744 | Pass | [`RenameCpp17.cpp`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L265) | [R744.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R744.txt) +R745 | Pass | [`RenameCpp17.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L273) | [R745.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R745.txt) +R746 | Pass | [`RenameCpp17.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L274) | [R746.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R746.txt) +R747 | Pass | [`RenameCpp17.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L275) | [R747.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R747.txt) +R748 | Pass | [`RenameCpp17.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L278) | [R748.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R748.txt) +R749 | Pass | [`RenameCpp17.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L280) | [R749.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R749.txt) +R750 | Pass | [`RenameCpp17.cpp`, line 285](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L285) | [R750.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R750.txt) +R751 | Pass | [`RenameCpp17.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L286) | [R751.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R751.txt) +R752 | Pass | [`RenameCpp17.cpp`, line 290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L290) | [R752.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R752.txt) +R753 | Pass | [`RenameCpp17.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L292) | [R753.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R753.txt) +R754 | Pass | [`RenameCpp17.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L296) | [R754.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R754.txt) +R755 | Pass | [`RenameCpp17.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L298) | [R755.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R755.txt) +R756 | Pass | [`RenameCpp17.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L308) | [R756.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R756.txt) +R757 | Pass | [`RenameCpp17.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L310) | [R757.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R757.txt) +R758 | Pass | [`RenameCpp17.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L311) | [R758.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R758.txt) +R759 | Pass | [`RenameCpp17.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L312) | [R759.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R759.txt) +R760 | Pass | [`RenameCpp17.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L315) | [R760.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R760.txt) +R761 | Pass | [`RenameCpp17.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L319) | [R761.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R761.txt) +R762 | Pass | [`RenameCpp17.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L321) | [R762.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R762.txt) +R763 | Pass | [`RenameCpp17.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L322) | [R763.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R763.txt) +R764 | Pass | [`RenameCpp17.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L323) | [R764.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R764.txt) +R765 | Pass | [`RenameCpp17.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L326) | [R765.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R765.txt) +R766 | Pass | [`RenameCpp17.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L330) | [R766.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R766.txt) +R767 | Pass | [`RenameCpp17.cpp`, line 332](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L332) | [R767.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R767.txt) +R768 | Pass | [`RenameCpp17.cpp`, line 333](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L333) | [R768.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R768.txt) +R769 | Pass | [`RenameCpp17.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L334) | [R769.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R769.txt) +R770 | Pass | [`RenameCpp17.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L335) | [R770.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R770.txt) +R771 | Pass | [`RenameCpp17.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L338) | [R771.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R771.txt) +R772 | Pass | [`RenameCpp17.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L339) | [R772.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R772.txt) +R773 | Pass | [`RenameCpp17.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L343) | [R773.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R773.txt) +R774 | Pass | [`RenameCpp17.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L345) | [R774.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R774.txt) +R775 | Pass | [`RenameCpp17.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L346) | [R775.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R775.txt) +R776 | Pass | [`RenameCpp17.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L347) | [R776.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R776.txt) +R777 | Pass | [`RenameCpp17.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L348) | [R777.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R777.txt) +R778 | Pass | [`RenameCpp17.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L351) | [R778.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R778.txt) +R779 | Pass | [`RenameCpp17.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L352) | [R779.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R779.txt) +R780 | Pass | [`RenameCpp17.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L384) | [R780.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R780.txt) +R781 | Pass | [`RenameCpp17.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L385) | [R781.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R781.txt) +R782 | Pass | [`RenameCpp17.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L386) | [R782.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R782.txt) +R783 | Pass | [`RenameCpp17.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L388) | [R783.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R783.txt) +R784 | Pass | [`RenameCpp17.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L390) | [R784.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R784.txt) +R785 | Pass | [`RenameCpp17.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L392) | [R785.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R785.txt) +R786 | Pass | [`RenameCpp17.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L393) | [R786.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R786.txt) +R787 | Pass | [`RenameCpp17.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L394) | [R787.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R787.txt) +R788 | Pass | [`RenameCpp17.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L396) | [R788.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R788.txt) +R789 | Pass | [`RenameCpp17.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L398) | [R789.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R789.txt) +R790 | Pass | [`RenameCpp17.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L403) | [R790.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R790.txt) +R791 | Pass | [`RenameCpp17.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L404) | [R791.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R791.txt) +R792 | Pass | [`RenameCpp17.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L405) | [R792.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R792.txt) +R793 | Pass | [`RenameCpp17.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L407) | [R793.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R793.txt) +R794 | Pass | [`RenameCpp17.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L409) | [R794.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R794.txt) +R795 | Pass | [`RenameCpp17.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L411) | [R795.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R795.txt) +R796 | Pass | [`RenameCpp17.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L413) | [R796.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R796.txt) +R797 | Pass | [`RenameCpp17.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L415) | [R797.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R797.txt) +R798 | Pass | [`RenameCpp17.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L416) | [R798.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R798.txt) +R799 | Pass | [`RenameCpp17.cpp`, line 417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L417) | [R799.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R799.txt) +R800 | Pass | [`RenameCpp17.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L419) | [R800.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R800.txt) +R801 | Pass | [`RenameCpp17.cpp`, line 421](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L421) | [R801.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R801.txt) +R802 | Pass | [`RenameCpp17.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L422) | [R802.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R802.txt) +R803 | Pass | [`RenameCpp17.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L424) | [R803.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R803.txt) +R804 | Pass | [`RenameCpp17.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L430) | [R804.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R804.txt) +R805 | Pass | [`RenameCpp17.cpp`, line 432](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L432) | [R805.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R805.txt) +R806 | Pass | [`RenameCpp17.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L438) | [R806.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R806.txt) +R807 | Failure (doesn't select all usages) | [`RenameCpp17.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L440) | [R807.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R807.txt) +R808 | Failure (doesn't select all usages) | [`RenameCpp17.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L443) | [R808.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R808.txt) +R809 | Pass | [`RenameCpp17.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L444) | [R809.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R809.txt) +R810 | Pass | [`RenameCpp17.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L449) | [R810.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R810.txt) +R811 | Failure (doesn't select all usages) | [`RenameCpp17.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L451) | [R811.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R811.txt) +R812 | Pass | [`RenameCpp17.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L452) | [R812.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R812.txt) +R813 | Pass | [`RenameCpp17.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L453) | [R813.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R813.txt) +R814 | Pass | [`RenameCpp17.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L461) | [R814.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R814.txt) +R815 | Failure (doesn't select all usages) | [`RenameCpp17.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L463) | [R815.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R815.txt) +R816 | Pass | [`RenameCpp17.cpp`, line 464](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L464) | [R816.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R816.txt) +R817 | Pass | [`RenameCpp17.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L465) | [R817.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R817.txt) +R818 | Failure (doesn't select all usages) | [`RenameCpp17.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L466) | [R818.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R818.txt) +R819 | Pass | [`RenameCpp17.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L467) | [R819.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R819.txt) +R820 | Failure (doesn't select all usages) | [`RenameCpp17.cpp`, line 472](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L472) | [R820.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R820.txt) +R821 | Pass | [`RenameCpp17.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L473) | [R821.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R821.txt) +R822 | Pass | [`RenameCpp17.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L475) | [R822.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R822.txt) +R823 | Failure (doesn't select all usages) | [`RenameCpp17.cpp`, line 478](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L478) | [R823.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R823.txt) +R824 | Pass | [`RenameCpp17.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L479) | [R824.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R824.txt) +R825 | Pass | [`RenameCpp17.cpp`, line 480](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L480) | [R825.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R825.txt) +R826 | Pass | [`RenameCpp17.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L481) | [R826.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R826.txt) +R827 | Pass | [`RenameCpp17.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L483) | [R827.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R827.txt) +R828 | Pass | [`RenameCpp17.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L489) | [R828.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R828.txt) +R829 | Pass | [`RenameCpp17.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L490) | [R829.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R829.txt) +R830 | Pass | [`RenameCpp17.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L491) | [R830.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R830.txt) +R831 | Pass | [`RenameCpp17.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L492) | [R831.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R831.txt) +R832 | Pass | [`RenameCpp17.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L496) | [R832.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R832.txt) +R833 | Pass | [`RenameCpp17.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L497) | [R833.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R833.txt) +R834 | Pass | [`RenameCpp17.cpp`, line 498](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L498) | [R834.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R834.txt) +R835 | Pass | [`RenameCpp17.cpp`, line 500](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L500) | [R835.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R835.txt) +R836 | Pass | [`RenameCpp17.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L508) | [R836.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R836.txt) +R837 | Pass | [`RenameCpp17.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L509) | [R837.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R837.txt) +R838 | Pass | [`RenameCpp17.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L510) | [R838.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R838.txt) +R839 | Pass | [`RenameCpp17.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L511) | [R839.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R839.txt) +R840 | Pass | [`RenameCpp17.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L512) | [R840.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R840.txt) +R841 | Pass | [`RenameCpp17.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L514) | [R841.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R841.txt) +R842 | Pass | [`RenameCpp17.cpp`, line 515](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L515) | [R842.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R842.txt) +R843 | Pass | [`RenameCpp17.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L520) | [R843.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R843.txt) +R844 | Pass | [`RenameCpp17.cpp`, line 521](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L521) | [R844.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R844.txt) +R845 | Pass | [`RenameCpp17.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L522) | [R845.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R845.txt) +R846 | Pass | [`RenameCpp17.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L523) | [R846.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R846.txt) +R847 | Pass | [`RenameCpp17.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L524) | [R847.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R847.txt) +R848 | Pass | [`RenameCpp17.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L526) | [R848.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R848.txt) +R849 | Pass | [`RenameCpp17.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L527) | [R849.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R849.txt) +R850 | Pass | [`RenameCpp17.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L531) | [R850.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R850.txt) +R851 | Pass | [`RenameCpp17.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L533) | [R851.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R851.txt) +R852 | Pass | [`RenameCpp17.cpp`, line 534](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L534) | [R852.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R852.txt) +R853 | Pass | [`RenameCpp17.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L535) | [R853.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R853.txt) +R854 | Pass | [`RenameCpp17.cpp`, line 536](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L536) | [R854.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R854.txt) +R855 | Pass | [`RenameCpp17.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L538) | [R855.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R855.txt) +R856 | Pass | [`RenameCpp17.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L539) | [R856.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R856.txt) +R857 | Pass | [`RenameCpp20.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L10) | [R857.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R857.txt) +R858 | Pass | [`RenameCpp20.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L13) | [R858.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R858.txt) +R859 | Pass | [`RenameCpp20.h`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L15) | [R859.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R859.txt) +R860 | Pass | [`RenameCpp20.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L17) | [R860.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R860.txt) +R861 | Pass | [`RenameCpp20.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L67) | [R861.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R861.txt) +R862 | Pass | [`RenameCpp20.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L69) | [R862.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R862.txt) +R863 | Pass | [`RenameCpp20.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L71) | [R863.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R863.txt) +R864 | Pass | [`RenameCpp20.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L72) | [R864.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R864.txt) +R865 | Pass | [`RenameCpp20.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L74) | [R865.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R865.txt) +R866 | Pass | [`RenameCpp20.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L75) | [R866.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R866.txt) +R867 | Pass | [`RenameCpp20.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L77) | [R867.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R867.txt) +R868 | Pass | [`RenameCpp20.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L78) | [R868.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R868.txt) +R869 | Pass | [`RenameCpp20.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L83) | [R869.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R869.txt) +R870 | Pass | [`RenameCpp20.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L85) | [R870.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R870.txt) +R871 | Pass | [`RenameCpp20.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L87) | [R871.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R871.txt) +R872 | Pass | [`RenameCpp20.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L88) | [R872.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R872.txt) +R873 | Pass | [`RenameCpp20.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L90) | [R873.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R873.txt) +R874 | Pass | [`RenameCpp20.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L91) | [R874.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R874.txt) +R875 | Pass | [`RenameCpp20.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L93) | [R875.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R875.txt) +R876 | Pass | [`RenameCpp20.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L94) | [R876.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R876.txt) +R877 | Pass | [`RenameCpp20.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L102) | [R877.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R877.txt) +R878 | Pass | [`RenameCpp20.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L105) | [R878.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R878.txt) +R879 | Pass | [`RenameCpp20.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L106) | [R879.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R879.txt) +R880 | Pass | [`RenameCpp20.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L107) | [R880.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R880.txt) +R881 | Pass | [`RenameCpp20.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L109) | [R881.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R881.txt) +R882 | Pass | [`RenameCpp20.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L111) | [R882.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R882.txt) +R883 | Pass | [`RenameCpp20.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L113) | [R883.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R883.txt) +R884 | Pass | [`RenameCpp20.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L117) | [R884.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R884.txt) +R885 | Pass | [`RenameCpp20.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L118) | [R885.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R885.txt) +R886 | Pass | [`RenameCpp20.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L119) | [R886.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R886.txt) +R887 | Pass | [`RenameCpp20.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L121) | [R887.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R887.txt) +R888 | Pass | [`RenameCpp20.cpp`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L123) | [R888.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R888.txt) +R889 | Pass | [`RenameCpp20.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L125) | [R889.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R889.txt) +R890 | Pass | [`RenameCpp20.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L129) | [R890.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R890.txt) +R891 | Pass | [`RenameCpp20.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L130) | [R891.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R891.txt) +R892 | Pass | [`RenameCpp20.cpp`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L131) | [R892.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R892.txt) +R893 | Pass | [`RenameCpp20.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L132) | [R893.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R893.txt) +R894 | Pass | [`RenameCpp20.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L134) | [R894.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R894.txt) +R895 | Pass | [`RenameCpp20.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L136) | [R895.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R895.txt) +R896 | Pass | [`RenameCpp20.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L138) | [R896.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R896.txt) +R897 | Pass | [`RenameCpp20.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L143) | [R897.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R897.txt) +R898 | Pass | [`RenameCpp20.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L149) | [R898.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R898.txt) +R899 | Pass | [`RenameCpp20.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L163) | [R899.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R899.txt) +R900 | Pass | [`RenameCpp20.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L164) | [R900.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R900.txt) +R901 | Pass | [`RenameCpp20.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L165) | [R901.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R901.txt) +R902 | Pass | [`RenameCpp20.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L168) | [R902.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R902.txt) +R903 | Pass | [`RenameCpp20.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L175) | [R903.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R903.txt) +R904 | Pass | [`RenameCpp20.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L176) | [R904.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R904.txt) +R905 | Pass | [`RenameCpp20.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L177) | [R905.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R905.txt) +R906 | Pass | [`RenameCpp20.cpp`, line 180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L180) | [R906.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R906.txt) +R907 | Pass | [`RenameCpp20.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L190) | [R907.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R907.txt) +R908 | Pass | [`RenameCpp20.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L191) | [R908.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R908.txt) +R909 | Pass | [`RenameCpp20.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L192) | [R909.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R909.txt) +R910 | Pass | [`RenameCpp20.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L193) | [R910.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R910.txt) +R911 | Pass | [`RenameCpp20.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L194) | [R911.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R911.txt) +R912 | Pass | [`RenameCpp20.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L196) | [R912.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R912.txt) +R913 | Pass | [`RenameCpp20.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L198) | [R913.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R913.txt) +R914 | Pass | [`RenameCpp20.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L200) | [R914.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R914.txt) +R915 | Pass | [`RenameCpp20.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L201) | [R915.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R915.txt) +R916 | Pass | [`RenameCpp20.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L202) | [R916.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R916.txt) +R917 | Pass | [`RenameCpp20.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L211) | [R917.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R917.txt) +R918 | Pass | [`RenameCpp20.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L212) | [R918.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R918.txt) +R919 | Pass | [`RenameCpp20.cpp`, line 214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L214) | [R919.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R919.txt) +R920 | Pass | [`RenameCpp20.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L215) | [R920.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R920.txt) +R921 | Pass | [`RenameCpp20.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L216) | [R921.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R921.txt) +R922 | Pass | [`RenameCpp20.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L217) | [R922.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R922.txt) +R923 | Pass | [`RenameCpp20.cpp`, line 220](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L220) | [R923.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R923.txt) +R924 | Pass | [`RenameCpp20.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L221) | [R924.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R924.txt) +R925 | Pass | [`RenameCpp20.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L222) | [R925.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R925.txt) +R926 | Pass | [`RenameCpp20.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L223) | [R926.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R926.txt) +R927 | Pass | [`RenameCpp20.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L224) | [R927.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R927.txt) +R928 | Pass | [`RenameCpp20.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L226) | [R928.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R928.txt) +R929 | Pass | [`RenameCpp20.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L236) | [R929.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R929.txt) +R930 | Pass | [`RenameCpp20.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L237) | [R930.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R930.txt) +R931 | Pass | [`RenameCpp20.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L240) | [R931.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R931.txt) +R932 | Pass | [`RenameCpp20.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L241) | [R932.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R932.txt) +R933 | Pass | [`RenameCpp20.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L248) | [R933.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R933.txt) +R934 | Pass | [`RenameCpp20.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L262) | [R934.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R934.txt) +R935 | Pass | [`RenameCpp20.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L263) | [R935.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R935.txt) +R936 | Pass | [`RenameCpp20.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L269) | [R936.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R936.txt) +R937 | Pass | [`RenameCpp20.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L279) | [R937.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R937.txt) +R938 | Pass | [`RenameCpp20.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L280) | [R938.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R938.txt) +R939 | Pass | [`RenameCpp20.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L282) | [R939.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R939.txt) +R940 | Pass | [`RenameCpp20.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L288) | [R940.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R940.txt) +R941 | Pass | [`RenameCpp20.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L295) | [R941.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R941.txt) +R942 | Pass | [`RenameCpp20.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L296) | [R942.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R942.txt) +R943 | Pass | [`RenameCpp20.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L297) | [R943.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R943.txt) +R944 | Pass | [`RenameCpp20.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L299) | [R944.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R944.txt) +R945 | Pass | [`RenameCpp20.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L305) | [R945.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R945.txt) +R946 | Pass | [`RenameCpp20.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L312) | [R946.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R946.txt) +R947 | Pass | [`RenameCpp20.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L313) | [R947.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R947.txt) +R948 | Pass | [`RenameCpp20.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L314) | [R948.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R948.txt) +R949 | Pass | [`RenameCpp20.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L316) | [R949.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R949.txt) +R950 | Pass | [`RenameCpp20.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L321) | [R950.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R950.txt) +R951 | Failure (doesn't select all usages) | [`RenameCpp20.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L322) | [R951.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R951.txt) +R952 | Pass | [`RenameCpp20.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L329) | [R952.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R952.txt) +R953 | Pass | [`RenameCpp20.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L336) | [R953.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R953.txt) +R954 | Pass | [`RenameCpp20.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L345) | [R954.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R954.txt) +R955 | Pass | [`RenameCpp20.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L346) | [R955.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R955.txt) +R956 | Pass | [`RenameCpp20.cpp`, line 357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L357) | [R956.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R956.txt) +R957 | Pass | [`RenameCpp20.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L358) | [R957.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R957.txt) +R958 | Pass | [`RenameCpp20.cpp`, line 361](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L361) | [R958.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R958.txt) +R959 | Pass | [`RenameCpp20.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L364) | [R959.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R959.txt) +R960 | Pass | [`RenameCpp20.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L380) | [R960.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R960.txt) +R961 | Pass | [`RenameCpp20.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L381) | [R961.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R961.txt) +R962 | Pass | [`RenameCpp20.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L384) | [R962.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R962.txt) +R963 | Pass | [`RenameCpp20.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L385) | [R963.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R963.txt) +R964 | Pass | [`RenameCpp20.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L389) | [R964.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R964.txt) +R965 | Pass | [`RenameCpp20.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L390) | [R965.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R965.txt) +R966 | Pass | [`RenameCpp20.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L396) | [R966.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R966.txt) +R967 | Pass | [`RenameCpp20.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L397) | [R967.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R967.txt) +R968 | Pass | [`RenameCpp20.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L403) | [R968.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R968.txt) +R969 | Pass | [`RenameCpp20.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L404) | [R969.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R969.txt) +R970 | Pass | [`RenameCpp20.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L405) | [R970.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R970.txt) +R971 | Pass | [`RenameCpp20.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L408) | [R971.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R971.txt) +R972 | Pass | [`RenameCpp20.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L409) | [R972.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R972.txt) +R973 | Pass | [`RenameCpp20.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L416) | [R973.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R973.txt) +R974 | Pass | [`RenameCpp20.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L418) | [R974.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R974.txt) +R975 | Pass | [`RenameCpp20.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L422) | [R975.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R975.txt) +R976 | Pass | [`RenameCpp20.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L423) | [R976.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R976.txt) +R977 | Pass | [`RenameCpp20.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L429) | [R977.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R977.txt) +R978 | Pass | [`RenameCpp20.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L430) | [R978.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R978.txt) +R979 | Pass | [`RenameCpp20.cpp`, line 436](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L436) | [R979.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R979.txt) +R980 | Pass | [`RenameCpp20.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L437) | [R980.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R980.txt) +R981 | Pass | [`RenameCpp20.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L443) | [R981.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R981.txt) +R982 | Pass | [`RenameCpp20.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L444) | [R982.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R982.txt) +R983 | Pass | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L449) | [R983.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R983.txt) +R984 | Pass | [`RenameCpp20.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L451) | [R984.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R984.txt) +R985 | Pass | [`RenameCpp20.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L452) | [R985.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R985.txt) +R986 | Pass | [`RenameCpp20.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L454) | [R986.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R986.txt) +R987 | | [`RenameCpp20Constraints.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L48) | [R987.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R987.txt) +R988 | | [`RenameCpp20Constraints.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L50) | [R988.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R988.txt) +R989 | | [`RenameCpp20Constraints.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L51) | [R989.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R989.txt) +R990 | | [`RenameCpp20Constraints.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L52) | [R990.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R990.txt) +R991 | | [`RenameCpp20Constraints.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L55) | [R991.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R991.txt) +R992 | | [`RenameCpp20Constraints.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L56) | [R992.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R992.txt) +R993 | | [`RenameCpp20Constraints.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L61) | [R993.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R993.txt) +R994 | | [`RenameCpp20Constraints.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L62) | [R994.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R994.txt) +R995 | | [`RenameCpp20Constraints.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L64) | [R995.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R995.txt) +R996 | | [`RenameCpp20Constraints.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L65) | [R996.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R996.txt) +R997 | | [`RenameCpp20Constraints.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L66) | [R997.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R997.txt) +R998 | | [`RenameCpp20Constraints.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L67) | [R998.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R998.txt) +R999 | | [`RenameCpp20Constraints.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L68) | [R999.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R999.txt) +R1000 | | [`RenameCpp20Constraints.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L71) | [R1000.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1000.txt) +R1001 | | [`RenameCpp20Constraints.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L72) | [R1001.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1001.txt) +R1002 | | [`RenameCpp20Constraints.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L78) | [R1002.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1002.txt) +R1003 | | [`RenameCpp20Constraints.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L80) | [R1003.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1003.txt) +R1004 | | [`RenameCpp20Constraints.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L81) | [R1004.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1004.txt) +R1005 | | [`RenameCpp20Constraints.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L83) | [R1005.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1005.txt) +R1006 | | [`RenameCpp20Constraints.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L84) | [R1006.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1006.txt) +R1007 | | [`RenameCpp20Constraints.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L85) | [R1007.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1007.txt) +R1008 | | [`RenameCpp20Constraints.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L86) | [R1008.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1008.txt) +R1009 | | [`RenameCpp20Constraints.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L89) | [R1009.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1009.txt) +R1010 | | [`RenameCpp20Constraints.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L90) | [R1010.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1010.txt) +R1011 | | [`RenameCpp20Constraints.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L95) | [R1011.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1011.txt) +R1012 | | [`RenameCpp20Constraints.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L97) | [R1012.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1012.txt) +R1013 | | [`RenameCpp20Constraints.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L98) | [R1013.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1013.txt) +R1014 | | [`RenameCpp20Constraints.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L99) | [R1014.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1014.txt) +R1015 | | [`RenameCpp20Constraints.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L100) | [R1015.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1015.txt) +R1016 | | [`RenameCpp20Constraints.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L102) | [R1016.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1016.txt) +R1017 | | [`RenameCpp20Constraints.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L103) | [R1017.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1017.txt) +R1018 | | [`RenameCpp20Constraints.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L106) | [R1018.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1018.txt) +R1019 | | [`RenameCpp20Constraints.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L107) | [R1019.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1019.txt) +R1020 | | [`RenameCpp20Constraints.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L112) | [R1020.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1020.txt) +R1021 | | [`RenameCpp20Constraints.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L114) | [R1021.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1021.txt) +R1022 | | [`RenameCpp20Constraints.cpp`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L115) | [R1022.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1022.txt) +R1023 | | [`RenameCpp20Constraints.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L116) | [R1023.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1023.txt) +R1024 | | [`RenameCpp20Constraints.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L118) | [R1024.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1024.txt) +R1025 | | [`RenameCpp20Constraints.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L119) | [R1025.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1025.txt) +R1026 | | [`RenameCpp20Constraints.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L120) | [R1026.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1026.txt) +R1027 | | [`RenameCpp20Constraints.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L121) | [R1027.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1027.txt) +R1028 | | [`RenameCpp20Constraints.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L124) | [R1028.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1028.txt) +R1029 | | [`RenameCpp20Constraints.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L125) | [R1029.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1029.txt) +R1030 | | [`RenameCpp20Constraints.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L130) | [R1030.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1030.txt) +R1031 | | [`RenameCpp20Constraints.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L132) | [R1031.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1031.txt) +R1032 | | [`RenameCpp20Constraints.cpp`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L133) | [R1032.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1032.txt) +R1033 | | [`RenameCpp20Constraints.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L134) | [R1033.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1033.txt) +R1034 | | [`RenameCpp20Constraints.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L136) | [R1034.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1034.txt) +R1035 | | [`RenameCpp20Constraints.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L137) | [R1035.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1035.txt) +R1036 | | [`RenameCpp20Constraints.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L138) | [R1036.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1036.txt) +R1037 | | [`RenameCpp20Constraints.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L139) | [R1037.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1037.txt) +R1038 | | [`RenameCpp20Constraints.cpp`, line 142](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L142) | [R1038.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1038.txt) +R1039 | | [`RenameCpp20Constraints.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L143) | [R1039.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1039.txt) +R1040 | | [`RenameCpp20Constraints.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L148) | [R1040.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1040.txt) +R1041 | | [`RenameCpp20Constraints.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L150) | [R1041.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1041.txt) +R1042 | | [`RenameCpp20Constraints.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L151) | [R1042.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1042.txt) +R1043 | | [`RenameCpp20Constraints.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L152) | [R1043.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1043.txt) +R1044 | | [`RenameCpp20Constraints.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L153) | [R1044.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1044.txt) +R1045 | | [`RenameCpp20Constraints.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L155) | [R1045.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1045.txt) +R1046 | | [`RenameCpp20Constraints.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L156) | [R1046.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1046.txt) +R1047 | | [`RenameCpp20Constraints.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L157) | [R1047.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1047.txt) +R1048 | | [`RenameCpp20Constraints.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L160) | [R1048.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1048.txt) +R1049 | | [`RenameCpp20Constraints.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L161) | [R1049.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1049.txt) +R1050 | | [`RenameCpp20Constraints.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L166) | [R1050.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1050.txt) +R1051 | | [`RenameCpp20Constraints.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L168) | [R1051.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1051.txt) +R1052 | | [`RenameCpp20Constraints.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L169) | [R1052.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1052.txt) +R1053 | | [`RenameCpp20Constraints.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L170) | [R1053.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1053.txt) +R1054 | | [`RenameCpp20Constraints.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L171) | [R1054.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1054.txt) +R1055 | | [`RenameCpp20Constraints.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L173) | [R1055.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1055.txt) +R1056 | | [`RenameCpp20Constraints.cpp`, line 174](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L174) | [R1056.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1056.txt) +R1057 | | [`RenameCpp20Constraints.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L175) | [R1057.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1057.txt) +R1058 | | [`RenameCpp20Constraints.cpp`, line 178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L178) | [R1058.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1058.txt) +R1059 | | [`RenameCpp20Constraints.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L179) | [R1059.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1059.txt) +R1060 | | [`RenameCpp20Constraints.cpp`, line 184](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L184) | [R1060.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1060.txt) +R1061 | | [`RenameCpp20Constraints.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L186) | [R1061.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1061.txt) +R1062 | | [`RenameCpp20Constraints.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L187) | [R1062.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1062.txt) +R1063 | | [`RenameCpp20Constraints.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L188) | [R1063.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1063.txt) +R1064 | | [`RenameCpp20Constraints.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L189) | [R1064.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1064.txt) +R1065 | | [`RenameCpp20Constraints.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L191) | [R1065.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1065.txt) +R1066 | | [`RenameCpp20Constraints.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L192) | [R1066.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1066.txt) +R1067 | | [`RenameCpp20Constraints.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L193) | [R1067.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1067.txt) +R1068 | | [`RenameCpp20Constraints.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L194) | [R1068.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1068.txt) +R1069 | | [`RenameCpp20Constraints.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L197) | [R1069.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1069.txt) +R1070 | | [`RenameCpp20Constraints.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L198) | [R1070.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1070.txt) +R1071 | | [`RenameCpp20Constraints.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L203) | [R1071.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1071.txt) +R1072 | | [`RenameCpp20Constraints.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L205) | [R1072.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1072.txt) +R1073 | | [`RenameCpp20Constraints.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L206) | [R1073.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1073.txt) +R1074 | | [`RenameCpp20Constraints.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L207) | [R1074.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1074.txt) +R1075 | | [`RenameCpp20Constraints.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L208) | [R1075.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1075.txt) +R1076 | | [`RenameCpp20Constraints.cpp`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L210) | [R1076.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1076.txt) +R1077 | | [`RenameCpp20Constraints.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L211) | [R1077.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1077.txt) +R1078 | | [`RenameCpp20Constraints.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L212) | [R1078.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1078.txt) +R1079 | | [`RenameCpp20Constraints.cpp`, line 213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L213) | [R1079.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1079.txt) +R1080 | | [`RenameCpp20Constraints.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L216) | [R1080.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1080.txt) +R1081 | | [`RenameCpp20Constraints.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L217) | [R1081.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1081.txt) +R1082 | | [`RenameCpp20Constraints.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L222) | [R1082.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1082.txt) +R1083 | | [`RenameCpp20Constraints.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L223) | [R1083.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1083.txt) +R1084 | | [`RenameCpp20Constraints.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L224) | [R1084.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1084.txt) +R1085 | | [`RenameCpp20Constraints.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L226) | [R1085.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1085.txt) +R1086 | | [`RenameCpp20Constraints.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L227) | [R1086.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1086.txt) +R1087 | | [`RenameCpp20Constraints.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L228) | [R1087.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1087.txt) +R1088 | | [`RenameCpp20Constraints.cpp`, line 230](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L230) | [R1088.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1088.txt) +R1089 | | [`RenameCpp20Constraints.cpp`, line 231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L231) | [R1089.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1089.txt) +R1090 | | [`RenameCpp20Constraints.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L232) | [R1090.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1090.txt) +R1091 | | [`RenameCpp20Constraints.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L233) | [R1091.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1091.txt) +R1092 | | [`RenameCpp20Constraints.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L234) | [R1092.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1092.txt) +R1093 | | [`RenameCpp20Constraints.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L235) | [R1093.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1093.txt) +R1094 | | [`RenameCpp20Constraints.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L236) | [R1094.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1094.txt) +R1095 | | [`RenameCpp20Constraints.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L239) | [R1095.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1095.txt) +R1096 | | [`RenameCpp20Constraints.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L240) | [R1096.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1096.txt) +R1097 | | [`RenameCpp20Constraints.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L245) | [R1097.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1097.txt) +R1098 | | [`RenameCpp20Constraints.cpp`, line 246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L246) | [R1098.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1098.txt) +R1099 | | [`RenameCpp20Constraints.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L247) | [R1099.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1099.txt) +R1100 | | [`RenameCpp20Constraints.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L249) | [R1100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1100.txt) +R1101 | | [`RenameCpp20Constraints.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L250) | [R1101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1101.txt) +R1102 | | [`RenameCpp20Constraints.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L251) | [R1102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1102.txt) +R1103 | | [`RenameCpp20Constraints.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L252) | [R1103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1103.txt) +R1104 | | [`RenameCpp20Constraints.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L253) | [R1104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1104.txt) +R1105 | | [`RenameCpp20Constraints.cpp`, line 254](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L254) | [R1105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1105.txt) +R1106 | | [`RenameCpp20Constraints.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L255) | [R1106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1106.txt) +R1107 | | [`RenameCpp20Constraints.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L257) | [R1107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1107.txt) +R1108 | | [`RenameCpp20Constraints.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L258) | [R1108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1108.txt) +R1109 | | [`RenameCpp20Constraints.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L259) | [R1109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1109.txt) +R1110 | | [`RenameCpp20Constraints.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L262) | [R1110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1110.txt) +R1111 | | [`RenameCpp20Constraints.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L263) | [R1111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1111.txt) +R1112 | | [`RenameCpp20Constraints.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L268) | [R1112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1112.txt) +R1113 | | [`RenameCpp20Constraints.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L269) | [R1113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1113.txt) +R1114 | | [`RenameCpp20Constraints.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L270) | [R1114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1114.txt) +R1115 | | [`RenameCpp20Constraints.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L272) | [R1115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1115.txt) +R1116 | | [`RenameCpp20Constraints.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L273) | [R1116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1116.txt) +R1117 | | [`RenameCpp20Constraints.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L274) | [R1117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1117.txt) +R1118 | | [`RenameCpp20Constraints.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L275) | [R1118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1118.txt) +R1119 | | [`RenameCpp20Constraints.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L277) | [R1119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1119.txt) +R1120 | | [`RenameCpp20Constraints.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L278) | [R1120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1120.txt) +R1121 | | [`RenameCpp20Constraints.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L279) | [R1121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1121.txt) +R1122 | | [`RenameCpp20Constraints.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L280) | [R1122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1122.txt) +R1123 | | [`RenameCpp20Constraints.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L281) | [R1123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1123.txt) +R1124 | | [`RenameCpp20Constraints.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L282) | [R1124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1124.txt) +R1125 | | [`RenameCpp20Constraints.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L283) | [R1125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1125.txt) +R1126 | | [`RenameCpp20Constraints.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L286) | [R1126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1126.txt) +R1127 | | [`RenameCpp20Constraints.cpp`, line 287](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L287) | [R1127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1127.txt) +R1128 | | [`RenameCpp20Constraints.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L292) | [R1128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1128.txt) +R1129 | | [`RenameCpp20Constraints.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L293) | [R1129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1129.txt) +R1130 | | [`RenameCpp20Constraints.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L294) | [R1130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1130.txt) +R1131 | | [`RenameCpp20Constraints.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L296) | [R1131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1131.txt) +R1132 | | [`RenameCpp20Constraints.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L297) | [R1132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1132.txt) +R1133 | | [`RenameCpp20Constraints.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L298) | [R1133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1133.txt) +R1134 | | [`RenameCpp20Constraints.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L299) | [R1134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1134.txt) +R1135 | | [`RenameCpp20Constraints.cpp`, line 300](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L300) | [R1135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1135.txt) +R1136 | | [`RenameCpp20Constraints.cpp`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L301) | [R1136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1136.txt) +R1137 | | [`RenameCpp20Constraints.cpp`, line 302](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L302) | [R1137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1137.txt) +R1138 | | [`RenameCpp20Constraints.cpp`, line 304](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L304) | [R1138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1138.txt) +R1139 | | [`RenameCpp20Constraints.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L305) | [R1139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1139.txt) +R1140 | | [`RenameCpp20Constraints.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L306) | [R1140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1140.txt) +R1141 | | [`RenameCpp20Constraints.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L307) | [R1141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1141.txt) +R1142 | | [`RenameCpp20Constraints.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L310) | [R1142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1142.txt) +R1143 | | [`RenameCpp20Constraints.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L311) | [R1143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1143.txt) +R1144 | | [`RenameCpp20Constraints.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L316) | [R1144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1144.txt) +R1145 | | [`RenameCpp20Constraints.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L317) | [R1145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1145.txt) +R1146 | | [`RenameCpp20Constraints.cpp`, line 318](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L318) | [R1146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1146.txt) +R1147 | | [`RenameCpp20Constraints.cpp`, line 320](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L320) | [R1147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1147.txt) +R1148 | | [`RenameCpp20Constraints.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L321) | [R1148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1148.txt) +R1149 | | [`RenameCpp20Constraints.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L322) | [R1149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1149.txt) +R1150 | | [`RenameCpp20Constraints.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L323) | [R1150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1150.txt) +R1151 | | [`RenameCpp20Constraints.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L325) | [R1151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1151.txt) +R1152 | | [`RenameCpp20Constraints.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L326) | [R1152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1152.txt) +R1153 | | [`RenameCpp20Constraints.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L327) | [R1153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1153.txt) +R1154 | | [`RenameCpp20Constraints.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L328) | [R1154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1154.txt) +R1155 | | [`RenameCpp20Constraints.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L329) | [R1155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1155.txt) +R1156 | | [`RenameCpp20Constraints.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L330) | [R1156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1156.txt) +R1157 | | [`RenameCpp20Constraints.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L331) | [R1157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1157.txt) +R1158 | | [`RenameCpp20Constraints.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L334) | [R1158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1158.txt) +R1159 | | [`RenameCpp20Constraints.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L335) | [R1159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1159.txt) +R1160 | | [`RenameCpp20Constraints.cpp`, line 340](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L340) | [R1160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1160.txt) +R1161 | | [`RenameCpp20Constraints.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L341) | [R1161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1161.txt) +R1162 | | [`RenameCpp20Constraints.cpp`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L342) | [R1162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1162.txt) +R1163 | | [`RenameCpp20Constraints.cpp`, line 344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L344) | [R1163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1163.txt) +R1164 | | [`RenameCpp20Constraints.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L345) | [R1164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1164.txt) +R1165 | | [`RenameCpp20Constraints.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L346) | [R1165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1165.txt) +R1166 | | [`RenameCpp20Constraints.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L347) | [R1166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1166.txt) +R1167 | | [`RenameCpp20Constraints.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L348) | [R1167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1167.txt) +R1168 | | [`RenameCpp20Constraints.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L349) | [R1168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1168.txt) +R1169 | | [`RenameCpp20Constraints.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L350) | [R1169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1169.txt) +R1170 | | [`RenameCpp20Constraints.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L352) | [R1170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1170.txt) +R1171 | | [`RenameCpp20Constraints.cpp`, line 353](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L353) | [R1171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1171.txt) +R1172 | | [`RenameCpp20Constraints.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L354) | [R1172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1172.txt) +R1173 | | [`RenameCpp20Constraints.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L355) | [R1173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1173.txt) +R1174 | | [`RenameCpp20Constraints.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L358) | [R1174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1174.txt) +R1175 | | [`RenameCpp20Constraints.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L359) | [R1175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1175.txt) +R1176 | | [`RenameCpp20Constraints.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L364) | [R1176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1176.txt) +R1177 | | [`RenameCpp20Constraints.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L365) | [R1177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1177.txt) +R1178 | | [`RenameCpp20Constraints.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L366) | [R1178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1178.txt) +R1179 | | [`RenameCpp20Constraints.cpp`, line 368](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L368) | [R1179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1179.txt) +R1180 | | [`RenameCpp20Constraints.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L369) | [R1180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1180.txt) +R1181 | | [`RenameCpp20Constraints.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L370) | [R1181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1181.txt) +R1182 | | [`RenameCpp20Constraints.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L371) | [R1182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1182.txt) +R1183 | | [`RenameCpp20Constraints.cpp`, line 372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L372) | [R1183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1183.txt) +R1184 | | [`RenameCpp20Constraints.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L374) | [R1184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1184.txt) +R1185 | | [`RenameCpp20Constraints.cpp`, line 375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L375) | [R1185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1185.txt) +R1186 | | [`RenameCpp20Constraints.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L376) | [R1186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1186.txt) +R1187 | | [`RenameCpp20Constraints.cpp`, line 377](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L377) | [R1187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1187.txt) +R1188 | | [`RenameCpp20Constraints.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L378) | [R1188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1188.txt) +R1189 | | [`RenameCpp20Constraints.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L379) | [R1189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1189.txt) +R1190 | | [`RenameCpp20Constraints.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L380) | [R1190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1190.txt) +R1191 | | [`RenameCpp20Constraints.cpp`, line 383](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L383) | [R1191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1191.txt) +R1192 | | [`RenameCpp20Constraints.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L384) | [R1192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1192.txt) +R1193 | | [`RenameCpp20Constraints.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L389) | [R1193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1193.txt) +R1194 | | [`RenameCpp20Constraints.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L390) | [R1194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1194.txt) +R1195 | | [`RenameCpp20Constraints.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L391) | [R1195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1195.txt) +R1196 | | [`RenameCpp20Constraints.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L393) | [R1196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1196.txt) +R1197 | | [`RenameCpp20Constraints.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L394) | [R1197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1197.txt) +R1198 | | [`RenameCpp20Constraints.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L395) | [R1198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1198.txt) +R1199 | | [`RenameCpp20Constraints.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L396) | [R1199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1199.txt) +R1200 | | [`RenameCpp20Constraints.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L397) | [R1200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1200.txt) +R1201 | | [`RenameCpp20Constraints.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L398) | [R1201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1201.txt) +R1202 | | [`RenameCpp20Constraints.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L399) | [R1202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1202.txt) +R1203 | | [`RenameCpp20Constraints.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L401) | [R1203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1203.txt) +R1204 | | [`RenameCpp20Constraints.cpp`, line 402](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L402) | [R1204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1204.txt) +R1205 | | [`RenameCpp20Constraints.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L403) | [R1205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1205.txt) +R1206 | | [`RenameCpp20Constraints.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L404) | [R1206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1206.txt) +R1207 | | [`RenameCpp20Constraints.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L405) | [R1207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1207.txt) +R1208 | | [`RenameCpp20Constraints.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L408) | [R1208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1208.txt) +R1209 | | [`RenameCpp20Constraints.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L409) | [R1209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1209.txt) +R1210 | | [`RenameCpp20Constraints.cpp`, line 441](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L441) | [R1210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1210.txt) +R1211 | | [`RenameCpp20Constraints.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L443) | [R1211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1211.txt) +R1212 | | [`RenameCpp20Constraints.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L446) | [R1212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1212.txt) +R1213 | | [`RenameCpp20Constraints.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L452) | [R1213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1213.txt) +R1214 | | [`RenameCpp20Constraints.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L454) | [R1214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1214.txt) +R1215 | | [`RenameCpp20Constraints.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L457) | [R1215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1215.txt) +R1216 | | [`RenameCpp20Constraints.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L463) | [R1216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1216.txt) +R1217 | | [`RenameCpp20Constraints.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L465) | [R1217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1217.txt) +R1218 | | [`RenameCpp20Constraints.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L468) | [R1218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1218.txt) +R1219 | | [`RenameCpp20Constraints.cpp`, line 474](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L474) | [R1219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1219.txt) +R1220 | | [`RenameCpp20Constraints.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L476) | [R1220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1220.txt) +R1221 | | [`RenameCpp20Constraints.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L483) | [R1221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1221.txt) +R1222 | | [`RenameCpp20Constraints.cpp`, line 485](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L485) | [R1222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1222.txt) +R1223 | | [`RenameCpp20Constraints.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L488) | [R1223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1223.txt) +R1224 | | [`RenameCpp20Constraints.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L494) | [R1224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1224.txt) +R1225 | | [`RenameCpp20Constraints.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L496) | [R1225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1225.txt) +R1226 | | [`RenameCpp20Constraints.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L503) | [R1226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1226.txt) +R1227 | | [`RenameCpp20Constraints.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L505) | [R1227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1227.txt) +R1228 | | [`RenameCpp20Constraints.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L512) | [R1228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1228.txt) +R1229 | | [`RenameCpp20Constraints.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L514) | [R1229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1229.txt) +R1230 | | [`RenameCpp20Constraints.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L522) | [R1230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1230.txt) +R1231 | | [`RenameCpp20Constraints.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L524) | [R1231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1231.txt) +R1232 | | [`RenameCpp20Constraints.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L527) | [R1232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1232.txt) +R1233 | | [`RenameCpp20Constraints.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L533) | [R1233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1233.txt) +R1234 | | [`RenameCpp20Constraints.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L535) | [R1234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1234.txt) +R1235 | | [`RenameCpp20Constraints.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L538) | [R1235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1235.txt) +R1236 | | [`RenameCpp20Constraints.cpp`, line 544](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L544) | [R1236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1236.txt) +R1237 | | [`RenameCpp20Constraints.cpp`, line 546](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L546) | [R1237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1237.txt) +R1238 | | [`RenameCpp20Constraints.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L549) | [R1238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1238.txt) +R1239 | | [`RenameCpp20Constraints.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L555) | [R1239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1239.txt) +R1240 | | [`RenameCpp20Constraints.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L557) | [R1240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1240.txt) +R1241 | | [`RenameCpp20Constraints.cpp`, line 565](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L565) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1242 | | [`RenameCpp20Constraints.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L567) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1243 | | [`RenameCpp20Constraints.cpp`, line 574](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L574) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1244 | | [`RenameCpp20Constraints.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L576) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1245 | | [`RenameCpp20Constraints.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L583) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L585) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L588) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 594](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L594) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 596](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L596) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 599](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L599) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L606) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L608) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L609) | [R1253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1253.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 611](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L611) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 615](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L615) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 616](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L616) | [R1256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1256.txt) +R1257 | | [`RenameCpp20Constraints.cpp`, line 623](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L623) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1258 | | [`RenameCpp20Constraints.cpp`, line 625](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L625) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L626) | [R1259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1259.txt) +R1260 | | [`RenameCpp20Constraints.cpp`, line 628](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L628) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1261 | | [`RenameCpp20Constraints.cpp`, line 631](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L631) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 632](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L632) | [R1262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1262.txt) +R1263 | | [`RenameCpp20Constraints.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L639) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1264 | | [`RenameCpp20Constraints.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L641) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L642) | [R1265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1265.txt) +R1266 | | [`RenameCpp20Constraints.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L644) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1267 | | [`RenameCpp20Constraints.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L647) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L648) | [R1268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1268.txt) +R1269 | | [`RenameCpp20Constraints.cpp`, line 656](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L656) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1270 | | [`RenameCpp20Constraints.cpp`, line 658](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L658) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 659](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L659) | [R1271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1271.txt) +R1272 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1273 | | [`RenameCpp20Constraints.cpp`, line 665](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L665) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L666) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1275 | | [`RenameCpp20Constraints.cpp`, line 673](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L673) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1276 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L676) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L682) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 689](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L689) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L691) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L697) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 706](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L706) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L708) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L709) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 711](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L711) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 715](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L715) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 723](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L723) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 725](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L725) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 726](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L726) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 739](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L739) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 741](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L741) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L742) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L744) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L756) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L758) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L759) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L761) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 773](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L773) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L776) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 778](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L778) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L781) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L791) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 794](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L794) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 797](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L797) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 798](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L798) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 806](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L806) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L809) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 816](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L816) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 817](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L817) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 818](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L818) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 840](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L840) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 841](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L841) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 842](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L842) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 843](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L843) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 847](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L847) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 853](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L853) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 864](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L864) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 865](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L865) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L866) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L867) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 871](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L871) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 877](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L877) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 888](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L888) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L889) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L890) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 891](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L891) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L892) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 896](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L896) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L902) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 903](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L903) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L912) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L915) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 916](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L916) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 917](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L917) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 927](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L927) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L929) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 936](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L936) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 937](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L937) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L940) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 941](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L941) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L952) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L954) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 962](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L962) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L965) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 966](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L966) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 967](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L967) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 979](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L979) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 980](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L980) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L981) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L988) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 989](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L989) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 994](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L994) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 995](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L995) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 1004](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1004) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1005) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 1006](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1006) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 1013](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1013) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 1014](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1014) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1018) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1019](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1019) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1029](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1029) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1030) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1031](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1031) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1038](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1038) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1039](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1039) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1042) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1045](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1045) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1046) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1056](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1056) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1057) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1058](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1058) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1066](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1066) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1067) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1070](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1070) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1071](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1071) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1077](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1077) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1083](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1083) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1092](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1092) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1096) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1119) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1122) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1126) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1132) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1135) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1139) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1145) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1148) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1152) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1163) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1167) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1176) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1180) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1186) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1189) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1193) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1204) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1221) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1224) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1233) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1243) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1253) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1256) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) + +## Reorder Parameters +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RP1 | (deprecated) | [`ReorderParameters.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L12) | [RP1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP1.txt) +RP2 | Failure (error occured while applying changes; Value does not fall within expected range) | [`ReorderParameters.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L18) | [RP2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP2.txt) +RP3 | (deprecated) | [`ReorderParameters.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L53) | [RP3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP3.txt) +RP4 | (deprecated) | [`ReorderParameters.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L57) | [RP4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP4.txt) +RP5 | Failure (error occured while applying changes; textIndex out of range) | [`ReorderParameters.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L63) | [RP5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP5.txt) +RP6 | Failure (error occured while applying changes; Value does not fall within expected range) | [`ReorderParameters.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L78) | [RP6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP6.txt) +RP7 | Failure (error occured while applying changes; textIndex out of range) | [`ReorderParameters.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L95) | [RP7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP7.txt) +RP8 | Failure (error occured while applying changes; Value does not fall within expected range) | [`ReorderParameters.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L112) | [RP8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP8.txt) +RP9 | (deprecated) | [`ReorderParameters.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReorderParameters.cpp#L129) | [RP9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RP9.txt) + +## Replace String Literal With Raw String Literal +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RAW1 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L8) | [RAW1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW1.txt) +RAW2 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L11) | [RAW2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW2.txt) +RAW3 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L14) | [RAW3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW3.txt) +RAW4 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L17) | [RAW4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW4.txt) +RAW5 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L20) | [RAW5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW5.txt) +RAW6 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L23) | [RAW6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW6.txt) +RAW7 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L26) | [RAW7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW7.txt) +RAW8 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L29) | [RAW8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW8.txt) +RAW9 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L32) | [RAW9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW9.txt) +RAW10 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L35) | [RAW10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW10.txt) +RAW11 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L38) | [RAW11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW11.txt) +RAW12 | Pass | [`ReplaceStringLiteralWithRawStringLiteral.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ReplaceStringLiteralWithRawStringLiteral.cpp#L41) | [RAW12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RAW12.txt) diff --git a/results/preliminary/annotated/AppleXcodeResults.md b/results/preliminary/annotated/AppleXcodeResults.md new file mode 100644 index 0000000..d0e9987 --- /dev/null +++ b/results/preliminary/annotated/AppleXcodeResults.md @@ -0,0 +1,1537 @@ +# Apple Xcode + +Home: [Xcode](https://developer.apple.com/xcode/) + +Version: [9.2](https://developer.apple.com/library/content/releasenotes/DeveloperTools/RN-Xcode/Chapters/Introduction.html) + +Notes: + +* Only very few tests have been done at this time, but the page is created as a template + for others to move on and contribute test results +* To import the project, "mkdir build && cmake -G Xcode .." was executed, then importing the generated project. + +
+ +## Rename +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +R1 | | [`Rename.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L12) | [R1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1.txt) +R2 | | [`Rename.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L15) | [R2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R2.txt) +R3 | | [`Rename.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L16) | [R3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R3.txt) +R4 | | [`Rename.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L17) | [R4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R4.txt) +R5 | Pass (nice: it also offers renames inside comments but doesn't select these by default) | [`Rename.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L33) | [R5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R5.txt) +R6 | | [`Rename.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L37) | [R6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R6.txt) +R7 | | [`Rename.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L42) | [R7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R7.txt) +R8 | | [`Rename.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L47) | [R8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R8.txt) +R9 | | [`Rename.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L48) | [R9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R9.txt) +R10 | | [`Rename.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L51) | [R10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R10.txt) +R11 | | [`Rename.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L59) | [R11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R11.txt) +R12 | | [`Rename.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L62) | [R12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R12.txt) +R13 | | [`Rename.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L64) | [R13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R13.txt) +R14 | | [`Rename.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L67) | [R14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R14.txt) +R15 | | [`Rename.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L75) | [R15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R15.txt) +R16 | | [`Rename.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L85) | [R16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R16.txt) +R17 | | [`Rename.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L93) | [R17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R17.txt) +R18 | | [`Rename.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L96) | [R18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R18.txt) +R19 | | [`Rename.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L127) | [R19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R19.txt) +R20 | | [`Rename.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L152) | [R20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R20.txt) +R21 | | [`Rename.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L153) | [R21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R21.txt) +R22 | | [`Rename.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L154) | [R22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R22.txt) +R23 | | [`Rename.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L157) | [R23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R23.txt) +R24 | | [`Rename.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L158) | [R24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R24.txt) +R25 | | [`Rename.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L159) | [R25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R25.txt) +R26 | | [`Rename.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L161) | [R26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R26.txt) +R27 | | [`Rename.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L164) | [R27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R27.txt) +R28 | | [`Rename.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L165) | [R28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R28.txt) +R29 | | [`Rename.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L166) | [R29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R29.txt) +R30 | | [`Rename.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L169) | [R30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R30.txt) +R31 | | [`Rename.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L173) | [R31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R31.txt) +R32 | | [`Rename.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L176) | [R32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R32.txt) +R33 | | [`Rename.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L185) | [R33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R33.txt) +R34 | | [`Rename.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L195) | [R34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R34.txt) +R35 | | [`Rename.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L208) | [R35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R35.txt) +R36 | | [`Rename.cpp`, line 218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L218) | [R36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R36.txt) +R37 | | [`Rename.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L224) | [R37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R37.txt) +R38 | | [`Rename.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L226) | [R38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R38.txt) +R39 | | [`Rename.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L228) | [R39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R39.txt) +R40 | | [`Rename.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L233) | [R40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R40.txt) +R41 | | [`Rename.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L236) | [R41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R41.txt) +R42 | | [`Rename.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L238) | [R42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R42.txt) +R43 | | [`Rename.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L240) | [R43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R43.txt) +R44 | | [`Rename.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L245) | [R44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R44.txt) +R45 | | [`Rename.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L248) | [R45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R45.txt) +R46 | | [`Rename.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L253) | [R46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R46.txt) +R47 | | [`Rename.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L255) | [R47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R47.txt) +R48 | | [`Rename.cpp`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L256) | [R48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R48.txt) +R49 | | [`Rename.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L257) | [R49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R49.txt) +R50 | | [`Rename.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L258) | [R50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R50.txt) +R51 | | [`Rename.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L259) | [R51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R51.txt) +R52 | | [`Rename.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L260) | [R52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R52.txt) +R53 | | [`Rename.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L263) | [R53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R53.txt) +R54 | | [`Rename.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L264) | [R54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R54.txt) +R55 | | [`Rename.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L270) | [R55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R55.txt) +R56 | | [`Rename.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L272) | [R56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R56.txt) +R57 | | [`Rename.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L274) | [R57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R57.txt) +R58 | | [`Rename.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L276) | [R58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R58.txt) +R59 | | [`Rename.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L280) | [R59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R59.txt) +R60 | | [`Rename.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L283) | [R60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R60.txt) +R61 | | [`Rename.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L286) | [R61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R61.txt) +R62 | | [`Rename.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L297) | [R62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R62.txt) +R63 | | [`Rename.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L298) | [R63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R63.txt) +R64 | | [`Rename.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L299) | [R64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R64.txt) +R65 | | [`Rename.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L305) | [R65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R65.txt) +R66 | | [`Rename.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L307) | [R66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R66.txt) +R67 | | [`Rename.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L308) | [R67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R67.txt) +R68 | | [`Rename.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L314) | [R68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R68.txt) +R69 | | [`Rename.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L315) | [R69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R69.txt) +R70 | | [`Rename.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L317) | [R70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R70.txt) +R71 | | [`Rename.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L323) | [R71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R71.txt) +R72 | | [`Rename.cpp`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L324) | [R72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R72.txt) +R73 | | [`Rename.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L326) | [R73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R73.txt) +R74 | | [`Rename.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L327) | [R74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R74.txt) +R75 | | [`Rename.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L328) | [R75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R75.txt) +R76 | | [`Rename.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L334) | [R76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R76.txt) +R77 | | [`Rename.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L335) | [R77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R77.txt) +R78 | | [`Rename.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L336) | [R78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R78.txt) +R79 | | [`Rename.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L338) | [R79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R79.txt) +R80 | | [`Rename.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L339) | [R80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R80.txt) +R81 | | [`Rename.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L345) | [R81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R81.txt) +R82 | | [`Rename.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L346) | [R82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R82.txt) +R83 | | [`Rename.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L347) | [R83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R83.txt) +R84 | | [`Rename.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L349) | [R84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R84.txt) +R85 | | [`Rename.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L351) | [R85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R85.txt) +R86 | | [`Rename.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L365) | [R86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R86.txt) +R87 | | [`Rename.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L369) | [R87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R87.txt) +R88 | | [`Rename.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L370) | [R88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R88.txt) +R89 | | [`Rename.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L374) | [R89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R89.txt) +R90 | | [`Rename.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L378) | [R90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R90.txt) +R91 | | [`Rename.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L381) | [R91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R91.txt) +R92 | | [`Rename.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L382) | [R92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R92.txt) +R93 | | [`Rename.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L384) | [R93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R93.txt) +R94 | | [`Rename.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L385) | [R94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R94.txt) +R95 | | [`Rename.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L386) | [R95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R95.txt) +R96 | | [`Rename.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L389) | [R96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R96.txt) +R97 | | [`Rename.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L390) | [R97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R97.txt) +R98 | | [`Rename.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L391) | [R98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R98.txt) +R99 | | [`Rename.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L393) | [R99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R99.txt) +R100 | | [`Rename.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L395) | [R100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R100.txt) +R101 | | [`Rename.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L397) | [R101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R101.txt) +R102 | | [`Rename.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L398) | [R102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R102.txt) +R103 | | [`Rename.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L399) | [R103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R103.txt) +R104 | | [`Rename.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L401) | [R104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R104.txt) +R105 | | [`Rename.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L403) | [R105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R105.txt) +R106 | | [`Rename.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L404) | [R106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R106.txt) +R107 | | [`Rename.cpp`, line 410](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L410) | [R107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R107.txt) +R108 | | [`Rename.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L411) | [R108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R108.txt) +R109 | | [`Rename.cpp`, line 412](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L412) | [R109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R109.txt) +R110 | | [`Rename.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L416) | [R110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R110.txt) +R111 | | [`Rename.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L418) | [R111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R111.txt) +R112 | | [`Rename.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L422) | [R112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R112.txt) +R113 | | [`Rename.cpp`, line 426](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L426) | [R113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R113.txt) +R114 | | [`Rename.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L428) | [R114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R114.txt) +R115 | | [`Rename.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L433) | [R115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R115.txt) +R116 | | [`Rename.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L437) | [R116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R116.txt) +R117 | | [`Rename.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L439) | [R117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R117.txt) +R118 | | [`Rename.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L445) | [R118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R118.txt) +R119 | | [`Rename.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L446) | [R119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R119.txt) +R120 | | [`Rename.cpp`, line 448](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L448) | [R120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R120.txt) +R121 | | [`Rename.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L449) | [R121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R121.txt) +R122 | | [`Rename.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L451) | [R122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R122.txt) +R123 | | [`Rename.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L452) | [R123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R123.txt) +R124 | | [`Rename.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L454) | [R124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R124.txt) +R125 | | [`Rename.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L455) | [R125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R125.txt) +R126 | | [`Rename.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L459) | [R126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R126.txt) +R127 | | [`Rename.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L461) | [R127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R127.txt) +R128 | | [`Rename.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L465) | [R128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R128.txt) +R129 | | [`Rename.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L466) | [R129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R129.txt) +R130 | | [`Rename.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L468) | [R130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R130.txt) +R131 | | [`Rename.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L469) | [R131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R131.txt) +R132 | | [`Rename.cpp`, line 470](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L470) | [R132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R132.txt) +R133 | | [`Rename.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L475) | [R133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R133.txt) +R134 | | [`Rename.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L479) | [R134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R134.txt) +R135 | | [`Rename.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L481) | [R135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R135.txt) +R136 | | [`Rename.cpp`, line 487](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L487) | [R136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R136.txt) +R137 | | [`Rename.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L488) | [R137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R137.txt) +R138 | | [`Rename.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L490) | [R138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R138.txt) +R139 | | [`Rename.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L491) | [R139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R139.txt) +R140 | | [`Rename.cpp`, line 493](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L493) | [R140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R140.txt) +R141 | | [`Rename.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L494) | [R141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R141.txt) +R142 | | [`Rename.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L496) | [R142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R142.txt) +R143 | | [`Rename.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L497) | [R143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R143.txt) +R144 | | [`Rename.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L503) | [R144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R144.txt) +R145 | | [`Rename.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L504) | [R145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R145.txt) +R146 | (deprecated) | [`Rename.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L506) | [R146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R146.txt) +R147 | | [`Rename.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L507) | [R147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R147.txt) +R148 | | [`Rename.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L508) | [R148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R148.txt) +R149 | | [`Rename.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L509) | [R149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R149.txt) +R150 | | [`Rename.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L510) | [R150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R150.txt) +R151 | | [`Rename.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L511) | [R151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R151.txt) +R152 | | [`Rename.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L512) | [R152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R152.txt) +R153 | | [`Rename.cpp`, line 513](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L513) | [R153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R153.txt) +R154 | | [`Rename.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L516) | [R154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R154.txt) +R155 | | [`Rename.cpp`, line 518](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L518) | [R155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R155.txt) +R156 | | [`Rename.cpp`, line 519](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L519) | [R156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R156.txt) +R157 | | [`Rename.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L523) | [R157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R157.txt) +R158 | | [`Rename.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L524) | [R158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R158.txt) +R159 | | [`Rename.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L526) | [R159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R159.txt) +R160 | | [`Rename.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L527) | [R160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R160.txt) +R161 | | [`Rename.cpp`, line 528](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L528) | [R161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R161.txt) +R162 | | [`Rename.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L529) | [R162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R162.txt) +R163 | | [`Rename.cpp`, line 530](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L530) | [R163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R163.txt) +R164 | | [`Rename.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L531) | [R164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R164.txt) +R165 | | [`Rename.cpp`, line 532](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L532) | [R165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R165.txt) +R166 | | [`Rename.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L535) | [R166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R166.txt) +R167 | | [`Rename.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L537) | [R167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R167.txt) +R168 | | [`Rename.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L538) | [R168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R168.txt) +R169 | | [`Rename.cpp`, line 542](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L542) | [R169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R169.txt) +R170 | | [`Rename.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L549) | [R170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R170.txt) +R171 | | [`Rename.cpp`, line 551](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L551) | [R171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R171.txt) +R172 | | [`Rename.cpp`, line 553](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L553) | [R172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R172.txt) +R173 | | [`Rename.cpp`, line 556](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L556) | [R173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R173.txt) +R174 | | [`Rename.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L558) | [R174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R174.txt) +R175 | | [`Rename.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L560) | [R175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R175.txt) +R176 | | [`Rename.cpp`, line 564](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L564) | [R176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R176.txt) +R177 | | [`Rename.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L567) | [R177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R177.txt) +R178 | | [`Rename.cpp`, line 571](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L571) | [R178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R178.txt) +R179 | | [`Rename.cpp`, line 572](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L572) | [R179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R179.txt) +R180 | | [`Rename.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L575) | [R180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R180.txt) +R181 | | [`Rename.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L576) | [R181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R181.txt) +R182 | | [`Rename.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L583) | [R182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R182.txt) +R183 | | [`Rename.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L584) | [R183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R183.txt) +R184 | | [`Rename.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L585) | [R184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R184.txt) +R185 | | [`Rename.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L587) | [R185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R185.txt) +R186 | | [`Rename.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L588) | [R186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R186.txt) +R187 | | [`Rename.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L589) | [R187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R187.txt) +R188 | | [`Rename.cpp`, line 591](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L591) | [R188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R188.txt) +R189 | | [`Rename.cpp`, line 593](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L593) | [R189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R189.txt) +R190 | | [`Rename.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L609) | [R190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R190.txt) +R191 | | [`Rename.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L617) | [R191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R191.txt) +R192 | | [`Rename.cpp`, line 618](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L618) | [R192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R192.txt) +R193 | | [`Rename.cpp`, line 622](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L622) | [R193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R193.txt) +R194 | | [`Rename.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L624) | [R194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R194.txt) +R195 | | [`Rename.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L626) | [R195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R195.txt) +R196 | | [`Rename.cpp`, line 635](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L635) | [R196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R196.txt) +R197 | | [`Rename.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L636) | [R197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R197.txt) +R198 | | [`Rename.cpp`, line 637](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L637) | [R198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R198.txt) +R199 | | [`Rename.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L639) | [R199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R199.txt) +R200 | | [`Rename.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L640) | [R200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R200.txt) +R201 | | [`Rename.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L641) | [R201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R201.txt) +R202 | | [`Rename.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L642) | [R202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R202.txt) +R203 | | [`Rename.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L643) | [R203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R203.txt) +R204 | | [`Rename.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L644) | [R204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R204.txt) +R205 | | [`Rename.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L645) | [R205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R205.txt) +R206 | | [`Rename.cpp`, line 652](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L652) | [R206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R206.txt) +R207 | | [`Rename.cpp`, line 653](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L653) | [R207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R207.txt) +R208 | | [`Rename.cpp`, line 655](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L655) | [R208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R208.txt) +R209 | | [`Rename.cpp`, line 662](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L662) | [R209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R209.txt) +R210 | | [`Rename.cpp`, line 674](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L674) | [R210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R210.txt) +R211 | | [`Rename.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L681) | [R211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R211.txt) +R212 | | [`Rename.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L682) | [R212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R212.txt) +R213 | | [`Rename.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L683) | [R213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R213.txt) +R214 | | [`Rename.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L685) | [R214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R214.txt) +R215 | | [`Rename.cpp`, line 686](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L686) | [R215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R215.txt) +R216 | | [`Rename.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L687) | [R216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R216.txt) +R217 | | [`Rename.cpp`, line 690](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L690) | [R217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R217.txt) +R218 | | [`Rename.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L691) | [R218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R218.txt) +R219 | | [`Rename.cpp`, line 693](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L693) | [R219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R219.txt) +R220 | | [`Rename.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L694) | [R220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R220.txt) +R221 | | [`Rename.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L697) | [R221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R221.txt) +R222 | | [`Rename.cpp`, line 699](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L699) | [R222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R222.txt) +R223 | | [`Rename.cpp`, line 700](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L700) | [R223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R223.txt) +R224 | | [`Rename.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L702) | [R224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R224.txt) +R225 | | [`Rename.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L705) | [R225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R225.txt) +R226 | | [`Rename.cpp`, line 707](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L707) | [R226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R226.txt) +R227 | | [`Rename.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L708) | [R227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R227.txt) +R228 | | [`Rename.cpp`, line 717](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L717) | [R228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R228.txt) +R229 | | [`Rename.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L722) | [R229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R229.txt) +R230 | | [`Rename.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L728) | [R230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R230.txt) +R231 | | [`Rename.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L730) | [R231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R231.txt) +R232 | | [`Rename.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L732) | [R232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R232.txt) +R233 | | [`Rename.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L734) | [R233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R233.txt) +R234 | | [`Rename.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L736) | [R234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R234.txt) +R235 | | [`Rename.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L738) | [R235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R235.txt) +R236 | | [`Rename.cpp`, line 740](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L740) | [R236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R236.txt) +R237 | (deprecated) | [`Rename.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L742) | [R237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R237.txt) +R238 | (deprecated) | [`Rename.cpp`, line 743](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L743) | [R238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R238.txt) +R239 | | [`Rename.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L744) | [R239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R239.txt) +R240 | | [`Rename.cpp`, line 746](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L746) | [R240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R240.txt) +R241 | | [`Rename.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L748) | [R241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R241.txt) +R242 | | [`Rename.cpp`, line 750](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L750) | [R242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R242.txt) +R243 | | [`Rename.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L752) | [R243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R243.txt) +R244 | | [`RenameCpp11.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L7) | [R244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R244.txt) +R245 | | [`RenameCpp11.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L9) | [R245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R245.txt) +R246 | | [`RenameCpp11.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L12) | [R246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R246.txt) +R247 | | [`RenameCpp11.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L16) | [R247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R247.txt) +R248 | | [`RenameCpp11.h`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L23) | [R248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R248.txt) +R249 | | [`RenameCpp11.h`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L25) | [R249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R249.txt) +R250 | | [`RenameCpp11.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L14) | [R250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R250.txt) +R251 | | [`RenameCpp11.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L16) | [R251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R251.txt) +R252 | | [`RenameCpp11.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L18) | [R252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R252.txt) +R253 | | [`RenameCpp11.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L20) | [R253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R253.txt) +R254 | | [`RenameCpp11.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L23) | [R254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R254.txt) +R255 | | [`RenameCpp11.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L25) | [R255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R255.txt) +R256 | | [`RenameCpp11.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L28) | [R256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R256.txt) +R257 | | [`RenameCpp11.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L33) | [R257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R257.txt) +R258 | | [`RenameCpp11.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L38) | [R258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R258.txt) +R259 | | [`RenameCpp11.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L40) | [R259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R259.txt) +R260 | | [`RenameCpp11.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L43) | [R260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R260.txt) +R261 | | [`RenameCpp11.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L49) | [R261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R261.txt) +R262 | | [`RenameCpp11.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L51) | [R262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R262.txt) +R263 | | [`RenameCpp11.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L55) | [R263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R263.txt) +R264 | | [`RenameCpp11.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L57) | [R264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R264.txt) +R265 | | [`RenameCpp11.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L63) | [R265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R265.txt) +R266 | | [`RenameCpp11.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L69) | [R266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R266.txt) +R267 | | [`RenameCpp11.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L75) | [R267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R267.txt) +R268 | | [`RenameCpp11.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L81) | [R268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R268.txt) +R269 | | [`RenameCpp11.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L87) | [R269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R269.txt) +R270 | | [`RenameCpp11.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L89) | [R270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R270.txt) +R271 | | [`RenameCpp11.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L95) | [R271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R271.txt) +R272 | | [`RenameCpp11.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L98) | [R272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R272.txt) +R273 | | [`RenameCpp11.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L100) | [R273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R273.txt) +R274 | | [`RenameCpp11.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L101) | [R274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R274.txt) +R275 | | [`RenameCpp11.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L103) | [R275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R275.txt) +R276 | | [`RenameCpp11.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L104) | [R276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R276.txt) +R277 | | [`RenameCpp11.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L106) | [R277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R277.txt) +R278 | | [`RenameCpp11.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L108) | [R278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R278.txt) +R279 | | [`RenameCpp11.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L109) | [R279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R279.txt) +R280 | | [`RenameCpp11.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L111) | [R280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R280.txt) +R281 | | [`RenameCpp11.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L112) | [R281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R281.txt) +R282 | | [`RenameCpp11.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L143) | [R282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R282.txt) +R283 | | [`RenameCpp11.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L146) | [R283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R283.txt) +R284 | | [`RenameCpp11.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L148) | [R284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R284.txt) +R285 | | [`RenameCpp11.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L149) | [R285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R285.txt) +R286 | | [`RenameCpp11.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L151) | [R286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R286.txt) +R287 | | [`RenameCpp11.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L152) | [R287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R287.txt) +R288 | | [`RenameCpp11.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L154) | [R288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R288.txt) +R289 | | [`RenameCpp11.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L156) | [R289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R289.txt) +R290 | | [`RenameCpp11.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L157) | [R290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R290.txt) +R291 | | [`RenameCpp11.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L159) | [R291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R291.txt) +R292 | | [`RenameCpp11.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L160) | [R292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R292.txt) +R293 | | [`RenameCpp11.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L167) | [R293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R293.txt) +R294 | | [`RenameCpp11.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L173) | [R294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R294.txt) +R295 | | [`RenameCpp11.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L175) | [R295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R295.txt) +R296 | | [`RenameCpp11.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L185) | [R296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R296.txt) +R297 | | [`RenameCpp11.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L186) | [R297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R297.txt) +R298 | | [`RenameCpp11.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L188) | [R298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R298.txt) +R299 | | [`RenameCpp11.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L189) | [R299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R299.txt) +R300 | | [`RenameCpp11.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L190) | [R300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R300.txt) +R301 | | [`RenameCpp11.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L191) | [R301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R301.txt) +R302 | | [`RenameCpp11.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L194) | [R302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R302.txt) +R303 | | [`RenameCpp11.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L196) | [R303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R303.txt) +R304 | | [`RenameCpp11.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L197) | [R304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R304.txt) +R305 | | [`RenameCpp11.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L200) | [R305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R305.txt) +R306 | | [`RenameCpp11.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L215) | [R306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R306.txt) +R307 | | [`RenameCpp11.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L217) | [R307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R307.txt) +R308 | | [`RenameCpp11.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L221) | [R308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R308.txt) +R309 | | [`RenameCpp11.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L222) | [R309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R309.txt) +R310 | | [`RenameCpp11.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L223) | [R310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R310.txt) +R311 | | [`RenameCpp11.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L227) | [R311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R311.txt) +R312 | | [`RenameCpp11.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L243) | [R312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R312.txt) +R313 | | [`RenameCpp11.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L251) | [R313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R313.txt) +R314 | | [`RenameCpp11.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L253) | [R314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R314.txt) +R315 | | [`RenameCpp11.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L264) | [R315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R315.txt) +R316 | | [`RenameCpp11.cpp`, line 266](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L266) | [R316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R316.txt) +R317 | | [`RenameCpp11.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L270) | [R317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R317.txt) +R318 | | [`RenameCpp11.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L280) | [R318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R318.txt) +R319 | | [`RenameCpp11.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L281) | [R319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R319.txt) +R320 | | [`RenameCpp11.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L294) | [R320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R320.txt) +R321 | | [`RenameCpp11.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L295) | [R321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R321.txt) +R322 | | [`RenameCpp11.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L346) | [R322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R322.txt) +R323 | | [`RenameCpp11.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L347) | [R323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R323.txt) +R324 | | [`RenameCpp11.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L350) | [R324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R324.txt) +R325 | | [`RenameCpp11.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L354) | [R325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R325.txt) +R326 | | [`RenameCpp11.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L355) | [R326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R326.txt) +R327 | | [`RenameCpp11.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L358) | [R327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R327.txt) +R328 | | [`RenameCpp11.cpp`, line 362](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L362) | [R328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R328.txt) +R329 | | [`RenameCpp11.cpp`, line 363](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L363) | [R329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R329.txt) +R330 | | [`RenameCpp11.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L366) | [R330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R330.txt) +R331 | | [`RenameCpp11.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L370) | [R331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R331.txt) +R332 | | [`RenameCpp11.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L371) | [R332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R332.txt) +R333 | | [`RenameCpp11.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L374) | [R333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R333.txt) +R334 | | [`RenameCpp11.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L378) | [R334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R334.txt) +R335 | | [`RenameCpp11.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L379) | [R335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R335.txt) +R336 | | [`RenameCpp11.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L382) | [R336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R336.txt) +R337 | | [`RenameCpp11.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L386) | [R337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R337.txt) +R338 | | [`RenameCpp11.cpp`, line 387](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L387) | [R338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R338.txt) +R339 | | [`RenameCpp11.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L390) | [R339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R339.txt) +R340 | | [`RenameCpp11.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L394) | [R340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R340.txt) +R341 | | [`RenameCpp11.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L395) | [R341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R341.txt) +R342 | | [`RenameCpp11.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L396) | [R342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R342.txt) +R343 | | [`RenameCpp11.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L399) | [R343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R343.txt) +R344 | | [`RenameCpp11.cpp`, line 400](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L400) | [R344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R344.txt) +R345 | | [`RenameCpp11.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L413) | [R345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R345.txt) +R346 | | [`RenameCpp11.cpp`, line 414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L414) | [R346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R346.txt) +R347 | | [`RenameCpp11.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L415) | [R347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R347.txt) +R348 | | [`RenameCpp11.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L418) | [R348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R348.txt) +R349 | | [`RenameCpp11.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L419) | [R349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R349.txt) +R350 | | [`RenameCpp11.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L423) | [R350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R350.txt) +R351 | | [`RenameCpp11.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L424) | [R351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R351.txt) +R352 | | [`RenameCpp11.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L425) | [R352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R352.txt) +R353 | | [`RenameCpp11.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L428) | [R353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R353.txt) +R354 | | [`RenameCpp11.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L429) | [R354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R354.txt) +R355 | | [`RenameCpp11.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L433) | [R355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R355.txt) +R356 | | [`RenameCpp11.cpp`, line 434](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L434) | [R356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R356.txt) +R357 | | [`RenameCpp11.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L435) | [R357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R357.txt) +R358 | | [`RenameCpp11.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L438) | [R358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R358.txt) +R359 | | [`RenameCpp11.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L439) | [R359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R359.txt) +R360 | | [`RenameCpp11.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L445) | [R360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R360.txt) +R361 | | [`RenameCpp11.cpp`, line 447](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L447) | [R361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R361.txt) +R362 | | [`RenameCpp11.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L449) | [R362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R362.txt) +R363 | | [`RenameCpp11.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L451) | [R363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R363.txt) +R364 | | [`RenameCpp11.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L453) | [R364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R364.txt) +R365 | | [`RenameCpp11.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L455) | [R365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R365.txt) +R366 | | [`RenameCpp11.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L457) | [R366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R366.txt) +R367 | | [`RenameCpp11.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L459) | [R367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R367.txt) +R368 | | [`RenameCpp11.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L461) | [R368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R368.txt) +R369 | | [`RenameCpp11.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L463) | [R369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R369.txt) +R370 | | [`RenameCpp11.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L465) | [R370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R370.txt) +R371 | | [`RenameCpp11.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L467) | [R371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R371.txt) +R372 | | [`RenameCpp11.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L469) | [R372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R372.txt) +R373 | | [`RenameCpp11.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L473) | [R373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R373.txt) +R374 | | [`RenameCpp11.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L475) | [R374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R374.txt) +R375 | | [`RenameCpp11.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L476) | [R375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R375.txt) +R376 | | [`RenameCpp11.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L481) | [R376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R376.txt) +R377 | | [`RenameCpp11.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L483) | [R377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R377.txt) +R378 | | [`RenameCpp11.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L489) | [R378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R378.txt) +R379 | | [`RenameCpp11.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L492) | [R379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R379.txt) +R380 | | [`RenameCpp11.cpp`, line 499](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L499) | [R380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R380.txt) +R381 | | [`RenameCpp11.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L504) | [R381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R381.txt) +R382 | | [`RenameCpp11.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L505) | [R382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R382.txt) +R383 | | [`RenameCpp11.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L506) | [R383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R383.txt) +R384 | | [`RenameCpp11.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L507) | [R384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R384.txt) +R385 | | [`RenameCpp11.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L509) | [R385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R385.txt) +R386 | | [`RenameCpp11.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L516) | [R386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R386.txt) +R387 | | [`RenameCpp11.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L520) | [R387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R387.txt) +R388 | | [`RenameCpp11.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L522) | [R388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R388.txt) +R389 | | [`RenameCpp11.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L523) | [R389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R389.txt) +R390 | | [`RenameCpp11.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L527) | [R390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R390.txt) +R391 | | [`RenameCpp11.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L529) | [R391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R391.txt) +R392 | | [`RenameCpp11.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L533) | [R392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R392.txt) +R393 | | [`RenameCpp11.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L537) | [R393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R393.txt) +R394 | | [`RenameCpp11.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L538) | [R394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R394.txt) +R395 | | [`RenameCpp11.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L539) | [R395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R395.txt) +R396 | | [`RenameCpp11.cpp`, line 543](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L543) | [R396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R396.txt) +R397 | | [`RenameCpp11.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L555) | [R397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R397.txt) +R398 | | [`RenameCpp11.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L557) | [R398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R398.txt) +R399 | | [`RenameCpp11.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L558) | [R399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R399.txt) +R400 | | [`RenameCpp11.cpp`, line 561](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L561) | [R400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R400.txt) +R401 | | [`RenameCpp11.cpp`, line 562](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L562) | [R401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R401.txt) +R402 | | [`RenameCpp11.cpp`, line 573](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L573) | [R402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R402.txt) +R403 | | [`RenameCpp11.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L577) | [R403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R403.txt) +R404 | | [`RenameCpp11.cpp`, line 581](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L581) | [R404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R404.txt) +R405 | | [`RenameCpp11.cpp`, line 582](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L582) | [R405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R405.txt) +R406 | | [`RenameCpp11.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L587) | [R406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R406.txt) +R407 | | [`RenameCpp11.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L600) | [R407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R407.txt) +R408 | | [`RenameCpp11.cpp`, line 602](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L602) | [R408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R408.txt) +R409 | | [`RenameCpp11.cpp`, line 605](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L605) | [R409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R409.txt) +R410 | | [`RenameCpp11.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L606) | [R410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R410.txt) +R411 | | [`RenameCpp11.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L607) | [R411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R411.txt) +R412 | | [`RenameCpp11.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L608) | [R412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R412.txt) +R413 | | [`RenameCpp11.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L636) | [R413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R413.txt) +R414 | | [`RenameCpp11.cpp`, line 638](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L638) | [R414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R414.txt) +R415 | | [`RenameCpp11.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L639) | [R415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R415.txt) +R416 | | [`RenameCpp11.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L640) | [R416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R416.txt) +R417 | | [`RenameCpp11.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L643) | [R417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R417.txt) +R418 | | [`RenameCpp11.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L644) | [R418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R418.txt) +R419 | | [`RenameCpp11.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L647) | [R419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R419.txt) +R420 | | [`RenameCpp11.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L648) | [R420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R420.txt) +R421 | | [`RenameCpp11.cpp`, line 650](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L650) | [R421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R421.txt) +R422 | | [`RenameCpp11.cpp`, line 664](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L664) | [R422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R422.txt) +R423 | | [`RenameCpp11.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L666) | [R423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R423.txt) +R424 | | [`RenameCpp11.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L676) | [R424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R424.txt) +R425 | | [`RenameCpp11.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L678) | [R425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R425.txt) +R426 | | [`RenameCpp11.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L681) | [R426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R426.txt) +R427 | | [`RenameCpp11.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L682) | [R427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R427.txt) +R428 | | [`RenameCpp11.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L683) | [R428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R428.txt) +R429 | | [`RenameCpp11.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L687) | [R429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R429.txt) +R430 | | [`RenameCpp11.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L701) | [R430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R430.txt) +R431 | | [`RenameCpp11.cpp`, line 704](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L704) | [R431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R431.txt) +R432 | | [`RenameCpp11.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L705) | [R432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R432.txt) +R433 | | [`RenameCpp11.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L709) | [R433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R433.txt) +R434 | | [`RenameCpp11.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L710) | [R434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R434.txt) +R435 | | [`RenameCpp11.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L714) | [R435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R435.txt) +R436 | | [`RenameCpp11.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L722) | [R436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R436.txt) +R437 | | [`RenameCpp11.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L728) | [R437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R437.txt) +R438 | | [`RenameCpp11.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L730) | [R438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R438.txt) +R439 | | [`RenameCpp11.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L731) | [R439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R439.txt) +R440 | | [`RenameCpp11.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L732) | [R440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R440.txt) +R441 | | [`RenameCpp11.cpp`, line 735](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L735) | [R441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R441.txt) +R442 | | [`RenameCpp11.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L736) | [R442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R442.txt) +R443 | | [`RenameCpp11.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L749) | [R443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R443.txt) +R444 | | [`RenameCpp11.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L751) | [R444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R444.txt) +R445 | | [`RenameCpp11.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L752) | [R445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R445.txt) +R446 | | [`RenameCpp11.cpp`, line 753](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L753) | [R446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R446.txt) +R447 | | [`RenameCpp11.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L756) | [R447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R447.txt) +R448 | | [`RenameCpp11.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L758) | [R448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R448.txt) +R449 | | [`RenameCpp11.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L759) | [R449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R449.txt) +R450 | | [`RenameCpp11.cpp`, line 760](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L760) | [R450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R450.txt) +R451 | | [`RenameCpp11.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L761) | [R451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R451.txt) +R452 | | [`RenameCpp11.cpp`, line 762](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L762) | [R452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R452.txt) +R453 | | [`RenameCpp11.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L765) | [R453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R453.txt) +R454 | | [`RenameCpp11.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L766) | [R454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R454.txt) +R455 | | [`RenameCpp11.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L767) | [R455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R455.txt) +R456 | | [`RenameCpp11.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L768) | [R456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R456.txt) +R457 | | [`RenameCpp11.cpp`, line 771](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L771) | [R457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R457.txt) +R458 | | [`RenameCpp11.cpp`, line 772](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L772) | [R458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R458.txt) +R459 | | [`RenameCpp11.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L776) | [R459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R459.txt) +R460 | | [`RenameCpp11.cpp`, line 780](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L780) | [R460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R460.txt) +R461 | | [`RenameCpp11.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L781) | [R461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R461.txt) +R462 | | [`RenameCpp11.cpp`, line 783](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L783) | [R462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R462.txt) +R463 | | [`RenameCpp11.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L787) | [R463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R463.txt) +R464 | | [`RenameCpp11.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L789) | [R464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R464.txt) +R465 | | [`RenameCpp11.cpp`, line 790](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L790) | [R465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R465.txt) +R466 | | [`RenameCpp11.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L791) | [R466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R466.txt) +R467 | | [`RenameCpp11.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L792) | [R467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R467.txt) +R468 | | [`RenameCpp11.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L793) | [R468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R468.txt) +R469 | | [`RenameCpp11.cpp`, line 801](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L801) | [R469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R469.txt) +R470 | | [`RenameCpp11.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L805) | [R470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R470.txt) +R471 | | [`RenameCpp11.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L809) | [R471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R471.txt) +R472 | | [`RenameCpp11.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L810) | [R472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R472.txt) +R473 | | [`RenameCpp11.cpp`, line 812](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L812) | [R473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R473.txt) +R474 | | [`RenameCpp11.cpp`, line 813](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L813) | [R474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R474.txt) +R475 | | [`RenameCpp11.cpp`, line 814](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L814) | [R475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R475.txt) +R476 | | [`RenameCpp11.cpp`, line 815](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L815) | [R476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R476.txt) +R477 | | [`RenameCpp11.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L821) | [R477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R477.txt) +R478 | | [`RenameCpp11.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L824) | [R478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R478.txt) +R479 | | [`RenameCpp11.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L825) | [R479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R479.txt) +R480 | | [`RenameCpp11.cpp`, line 828](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L828) | [R480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R480.txt) +R481 | | [`RenameCpp11.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L833) | [R481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R481.txt) +R482 | | [`RenameCpp11.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L834) | [R482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R482.txt) +R483 | | [`RenameCpp11.cpp`, line 837](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L837) | [R483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R483.txt) +R484 | | [`RenameCpp11.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L845) | [R484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R484.txt) +R485 | | [`RenameCpp11.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L846) | [R485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R485.txt) +R486 | | [`RenameCpp11.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L849) | [R486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R486.txt) +R487 | | [`RenameCpp11.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L854) | [R487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R487.txt) +R488 | | [`RenameCpp11.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L855) | [R488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R488.txt) +R489 | | [`RenameCpp11.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L858) | [R489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R489.txt) +R490 | | [`RenameCpp11.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L866) | [R490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R490.txt) +R491 | | [`RenameCpp11.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L867) | [R491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R491.txt) +R492 | | [`RenameCpp11.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L870) | [R492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R492.txt) +R493 | | [`RenameCpp11.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L878) | [R493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R493.txt) +R494 | | [`RenameCpp11.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L880) | [R494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R494.txt) +R495 | | [`RenameCpp11.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L882) | [R495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R495.txt) +R496 | | [`RenameCpp11.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L883) | [R496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R496.txt) +R497 | | [`RenameCpp11.cpp`, line 885](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L885) | [R497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R497.txt) +R498 | | [`RenameCpp11.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L887) | [R498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R498.txt) +R499 | | [`RenameCpp11.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L889) | [R499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R499.txt) +R500 | | [`RenameCpp11.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L890) | [R500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R500.txt) +R501 | | [`RenameCpp11.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L892) | [R501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R501.txt) +R502 | | [`RenameCpp11.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L898) | [R502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R502.txt) +R503 | | [`RenameCpp11.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L900) | [R503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R503.txt) +R504 | | [`RenameCpp11.cpp`, line 901](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L901) | [R504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R504.txt) +R505 | | [`RenameCpp11.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L902) | [R505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R505.txt) +R506 | | [`RenameCpp11.cpp`, line 904](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L904) | [R506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R506.txt) +R507 | | [`RenameCpp11.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L906) | [R507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R507.txt) +R508 | | [`RenameCpp11.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L907) | [R508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R508.txt) +R509 | | [`RenameCpp11.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L909) | [R509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R509.txt) +R510 | | [`RenameCpp11.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L910) | [R510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R510.txt) +R511 | | [`RenameCpp11.cpp`, line 911](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L911) | [R511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R511.txt) +R512 | | [`RenameCpp11.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L912) | [R512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R512.txt) +R513 | | [`RenameCpp11.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L913) | [R513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R513.txt) +R514 | | [`RenameCpp11.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L915) | [R514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R514.txt) +R515 | | [`RenameCpp11.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L921) | [R515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R515.txt) +R516 | | [`RenameCpp11.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L923) | [R516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R516.txt) +R517 | | [`RenameCpp11.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L925) | [R517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R517.txt) +R518 | | [`RenameCpp11.cpp`, line 928](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L928) | [R518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R518.txt) +R519 | | [`RenameCpp11.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L929) | [R519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R519.txt) +R520 | | [`RenameCpp11.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L930) | [R520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R520.txt) +R521 | | [`RenameCpp11.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L940) | [R521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R521.txt) +R522 | | [`RenameCpp11.cpp`, line 942](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L942) | [R522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R522.txt) +R523 | | [`RenameCpp11.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L945) | [R523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R523.txt) +R524 | | [`RenameCpp11.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L952) | [R524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R524.txt) +R525 | | [`RenameCpp11.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L954) | [R525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R525.txt) +R526 | | [`RenameCpp11.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L957) | [R526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R526.txt) +R527 | | [`RenameCpp11.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L958) | [R527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R527.txt) +R528 | | [`RenameCpp11.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L960) | [R528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R528.txt) +R529 | | [`RenameCpp11.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L965) | [R529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R529.txt) +R530 | | [`RenameCpp11.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L970) | [R530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R530.txt) +R531 | | [`RenameCpp11.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L972) | [R531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R531.txt) +R532 | | [`RenameCpp11.cpp`, line 973](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L973) | [R532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R532.txt) +R533 | | [`RenameCpp11.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L975) | [R533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R533.txt) +R534 | | [`RenameCpp11.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L977) | [R534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R534.txt) +R535 | | [`RenameCpp11.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L981) | [R535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R535.txt) +R536 | | [`RenameCpp11.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L982) | [R536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R536.txt) +R537 | | [`RenameCpp11.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L988) | [R537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R537.txt) +R538 | | [`RenameCpp11.cpp`, line 993](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L993) | [R538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R538.txt) +R539 | | [`RenameCpp11.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L997) | [R539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R539.txt) +R540 | | [`RenameCpp11.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1005) | [R540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R540.txt) +R541 | | [`RenameCpp11.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1011) | [R541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R541.txt) +R542 | | [`RenameCpp11.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1018) | [R542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R542.txt) +R543 | | [`RenameCpp11.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1021) | [R543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R543.txt) +R544 | | [`RenameCpp11.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1028) | [R544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R544.txt) +R545 | | [`RenameCpp11.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1030) | [R545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R545.txt) +R546 | | [`RenameCpp11.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1032) | [R546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R546.txt) +R547 | | [`RenameCpp11.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1042) | [R547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R547.txt) +R548 | | [`RenameCpp11.cpp`, line 1044](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1044) | [R548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R548.txt) +R549 | | [`RenameCpp11.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1046) | [R549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R549.txt) +R550 | | [`RenameCpp11.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1052) | [R550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R550.txt) +R551 | | [`RenameCpp11.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1054) | [R551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R551.txt) +R552 | | [`RenameCpp11.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1057) | [R552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R552.txt) +R553 | | [`RenameCpp11.cpp`, line 1059](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1059) | [R553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R553.txt) +R554 | | [`RenameCpp11.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1062) | [R554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R554.txt) +R555 | | [`RenameCpp11.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1064) | [R555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R555.txt) +R556 | | [`RenameCpp11.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1067) | [R556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R556.txt) +R557 | | [`RenameCpp11.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1069) | [R557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R557.txt) +R558 | | [`RenameCpp11.cpp`, line 1073](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1073) | [R558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R558.txt) +R559 | | [`RenameCpp11.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1074) | [R559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R559.txt) +R560 | | [`RenameCpp11.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1075) | [R560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R560.txt) +R561 | | [`RenameCpp11.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1076) | [R561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R561.txt) +R562 | | [`RenameCpp11.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1082) | [R562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R562.txt) +R563 | | [`RenameCpp11.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1087) | [R563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R563.txt) +R564 | | [`RenameCpp11.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1090) | [R564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R564.txt) +R565 | | [`RenameCpp11.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1096) | [R565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R565.txt) +R566 | | [`RenameCpp11.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1101) | [R566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R566.txt) +R567 | | [`RenameCpp11.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1104) | [R567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R567.txt) +R568 | | [`RenameCpp11.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1107) | [R568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R568.txt) +R569 | | [`RenameCpp11.cpp`, line 1111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1111) | [R569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R569.txt) +R570 | | [`RenameCpp11.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1112) | [R570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R570.txt) +R571 | | [`RenameCpp11.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1117) | [R571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R571.txt) +R572 | | [`RenameCpp11.cpp`, line 1118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1118) | [R572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R572.txt) +R573 | | [`RenameCpp11.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1122) | [R573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R573.txt) +R574 | | [`RenameCpp11.cpp`, line 1127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1127) | [R574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R574.txt) +R575 | | [`RenameCpp11.cpp`, line 1131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1131) | [R575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R575.txt) +R576 | | [`RenameCpp11.cpp`, line 1134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1134) | [R576.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R576.txt) +R577 | | [`RenameCpp11.cpp`, line 1143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1143) | [R577.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R577.txt) +R578 | | [`RenameCpp11.cpp`, line 1149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1149) | [R578.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R578.txt) +R579 | | [`RenameCpp11.cpp`, line 1158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1158) | [R579.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R579.txt) +R580 | | [`RenameCpp11.cpp`, line 1165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1165) | [R580.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R580.txt) +R581 | | [`RenameCpp11.cpp`, line 1172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1172) | [R581.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R581.txt) +R582 | | [`RenameCpp11.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1173) | [R582.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R582.txt) +R583 | | [`RenameCpp11.cpp`, line 1178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1178) | [R583.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R583.txt) +R584 | | [`RenameCpp11.cpp`, line 1183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1183) | [R584.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R584.txt) +R585 | | [`RenameCpp11.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1189) | [R585.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R585.txt) +R586 | | [`RenameCpp11.cpp`, line 1194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1194) | [R586.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R586.txt) +R587 | | [`RenameCpp11.cpp`, line 1195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1195) | [R587.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R587.txt) +R588 | | [`RenameCpp11.cpp`, line 1196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1196) | [R588.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R588.txt) +R589 | | [`RenameCpp11.cpp`, line 1206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1206) | [R589.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R589.txt) +R590 | | [`RenameCpp11.cpp`, line 1213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1213) | [R590.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R590.txt) +R591 | | [`RenameCpp11.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1218) | [R591.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R591.txt) +R592 | | [`RenameCpp11.cpp`, line 1222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1222) | [R592.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R592.txt) +R593 | | [`RenameCpp11.cpp`, line 1225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1225) | [R593.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R593.txt) +R594 | | [`RenameCpp11.cpp`, line 1227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1227) | [R594.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R594.txt) +R595 | | [`RenameCpp11.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1229) | [R595.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R595.txt) +R596 | | [`RenameCpp11.cpp`, line 1231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1231) | [R596.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R596.txt) +R597 | | [`RenameCpp11.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1236) | [R597.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R597.txt) +R598 | | [`RenameCpp11.cpp`, line 1237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1237) | [R598.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R598.txt) +R599 | | [`RenameCpp11.cpp`, line 1240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1240) | [R599.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R599.txt) +R600 | | [`RenameCpp11.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1246) | [R600.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R600.txt) +R601 | | [`RenameCpp11.cpp`, line 1247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1247) | [R601.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R601.txt) +R602 | | [`RenameCpp11.cpp`, line 1250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1250) | [R602.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R602.txt) +R603 | | [`RenameCpp11.cpp`, line 1251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1251) | [R603.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R603.txt) +R604 | | [`RenameCpp11.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1290) | [R604.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R604.txt) +R605 | | [`RenameCpp11.cpp`, line 1292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1292) | [R605.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R605.txt) +R606 | | [`RenameCpp14.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L6) | [R606.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R606.txt) +R607 | | [`RenameCpp14.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L8) | [R607.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R607.txt) +R608 | | [`RenameCpp14.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L9) | [R608.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R608.txt) +R609 | | [`RenameCpp14.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L10) | [R609.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R609.txt) +R610 | | [`RenameCpp14.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L11) | [R610.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R610.txt) +R611 | | [`RenameCpp14.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L14) | [R611.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R611.txt) +R612 | | [`RenameCpp14.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L16) | [R612.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R612.txt) +R613 | | [`RenameCpp14.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L17) | [R613.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R613.txt) +R614 | | [`RenameCpp14.h`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L20) | [R614.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R614.txt) +R615 | | [`RenameCpp14.h`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L21) | [R615.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R615.txt) +R616 | | [`RenameCpp14.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L20) | [R616.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R616.txt) +R617 | | [`RenameCpp14.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L22) | [R617.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R617.txt) +R618 | | [`RenameCpp14.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L23) | [R618.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R618.txt) +R619 | | [`RenameCpp14.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L24) | [R619.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R619.txt) +R620 | | [`RenameCpp14.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L27) | [R620.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R620.txt) +R621 | | [`RenameCpp14.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L29) | [R621.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R621.txt) +R622 | | [`RenameCpp14.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L30) | [R622.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R622.txt) +R623 | | [`RenameCpp14.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L33) | [R623.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R623.txt) +R624 | | [`RenameCpp14.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L34) | [R624.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R624.txt) +R625 | | [`RenameCpp14.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L48) | [R625.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R625.txt) +R626 | | [`RenameCpp14.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L52) | [R626.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R626.txt) +R627 | | [`RenameCpp14.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L60) | [R627.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R627.txt) +R628 | | [`RenameCpp14.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L64) | [R628.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R628.txt) +R629 | | [`RenameCpp14.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L70) | [R629.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R629.txt) +R630 | | [`RenameCpp14.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L71) | [R630.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R630.txt) +R631 | | [`RenameCpp14.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L72) | [R631.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R631.txt) +R632 | | [`RenameCpp14.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L73) | [R632.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R632.txt) +R633 | | [`RenameCpp14.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L81) | [R633.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R633.txt) +R634 | | [`RenameCpp14.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L83) | [R634.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R634.txt) +R635 | | [`RenameCpp14.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L84) | [R635.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R635.txt) +R636 | | [`RenameCpp14.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L85) | [R636.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R636.txt) +R637 | | [`RenameCpp14.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L86) | [R637.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R637.txt) +R638 | | [`RenameCpp14.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L87) | [R638.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R638.txt) +R639 | | [`RenameCpp14.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L88) | [R639.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R639.txt) +R640 | | [`RenameCpp14.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L90) | [R640.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R640.txt) +R641 | | [`RenameCpp14.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L92) | [R641.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R641.txt) +R642 | | [`RenameCpp14.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L93) | [R642.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R642.txt) +R643 | | [`RenameCpp14.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L94) | [R643.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R643.txt) +R644 | | [`RenameCpp14.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L95) | [R644.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R644.txt) +R645 | | [`RenameCpp14.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L96) | [R645.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R645.txt) +R646 | | [`RenameCpp14.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L97) | [R646.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R646.txt) +R647 | | [`RenameCpp14.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L99) | [R647.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R647.txt) +R648 | | [`RenameCpp17.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L6) | [R648.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R648.txt) +R649 | | [`RenameCpp17.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L7) | [R649.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R649.txt) +R650 | | [`RenameCpp17.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L8) | [R650.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R650.txt) +R651 | | [`RenameCpp17.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L11) | [R651.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R651.txt) +R652 | | [`RenameCpp17.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L18) | [R652.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R652.txt) +R653 | | [`RenameCpp17.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L26) | [R653.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R653.txt) +R654 | | [`RenameCpp17.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L27) | [R654.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R654.txt) +R655 | | [`RenameCpp17.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L28) | [R655.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R655.txt) +R656 | | [`RenameCpp17.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L32) | [R656.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R656.txt) +R657 | | [`RenameCpp17.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L48) | [R657.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R657.txt) +R658 | | [`RenameCpp17.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L49) | [R658.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R658.txt) +R659 | | [`RenameCpp17.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L50) | [R659.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R659.txt) +R660 | | [`RenameCpp17.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L51) | [R660.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R660.txt) +R661 | | [`RenameCpp17.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L53) | [R661.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R661.txt) +R662 | | [`RenameCpp17.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L55) | [R662.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R662.txt) +R663 | | [`RenameCpp17.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L56) | [R663.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R663.txt) +R664 | | [`RenameCpp17.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L58) | [R664.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R664.txt) +R665 | | [`RenameCpp17.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L68) | [R665.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R665.txt) +R666 | | [`RenameCpp17.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L72) | [R666.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R666.txt) +R667 | | [`RenameCpp17.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L73) | [R667.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R667.txt) +R668 | | [`RenameCpp17.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L75) | [R668.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R668.txt) +R669 | | [`RenameCpp17.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L78) | [R669.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R669.txt) +R670 | | [`RenameCpp17.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L79) | [R670.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R670.txt) +R671 | | [`RenameCpp17.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L99) | [R671.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R671.txt) +R672 | | [`RenameCpp17.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L105) | [R672.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R672.txt) +R673 | | [`RenameCpp17.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L107) | [R673.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R673.txt) +R674 | | [`RenameCpp17.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L109) | [R674.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R674.txt) +R675 | | [`RenameCpp17.cpp`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L110) | [R675.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R675.txt) +R676 | | [`RenameCpp17.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L111) | [R676.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R676.txt) +R677 | | [`RenameCpp17.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L112) | [R677.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R677.txt) +R678 | | [`RenameCpp17.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L113) | [R678.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R678.txt) +R679 | | [`RenameCpp17.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L118) | [R679.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R679.txt) +R680 | | [`RenameCpp17.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L121) | [R680.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R680.txt) +R681 | | [`RenameCpp17.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L130) | [R681.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R681.txt) +R682 | | [`RenameCpp17.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L137) | [R682.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R682.txt) +R683 | | [`RenameCpp17.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L139) | [R683.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R683.txt) +R684 | | [`RenameCpp17.cpp`, line 147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L147) | [R684.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R684.txt) +R685 | | [`RenameCpp17.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L149) | [R685.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R685.txt) +R686 | | [`RenameCpp17.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L150) | [R686.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R686.txt) +R687 | | [`RenameCpp17.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L151) | [R687.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R687.txt) +R688 | | [`RenameCpp17.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L153) | [R688.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R688.txt) +R689 | | [`RenameCpp17.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L155) | [R689.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R689.txt) +R690 | | [`RenameCpp17.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L157) | [R690.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R690.txt) +R691 | | [`RenameCpp17.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L158) | [R691.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R691.txt) +R692 | | [`RenameCpp17.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L159) | [R692.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R692.txt) +R693 | | [`RenameCpp17.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L161) | [R693.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R693.txt) +R694 | | [`RenameCpp17.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L163) | [R694.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R694.txt) +R695 | | [`RenameCpp17.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L165) | [R695.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R695.txt) +R696 | | [`RenameCpp17.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L166) | [R696.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R696.txt) +R697 | | [`RenameCpp17.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L167) | [R697.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R697.txt) +R698 | | [`RenameCpp17.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L169) | [R698.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R698.txt) +R699 | | [`RenameCpp17.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L171) | [R699.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R699.txt) +R700 | | [`RenameCpp17.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L175) | [R700.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R700.txt) +R701 | | [`RenameCpp17.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L176) | [R701.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R701.txt) +R702 | | [`RenameCpp17.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L177) | [R702.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R702.txt) +R703 | | [`RenameCpp17.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L179) | [R703.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R703.txt) +R704 | | [`RenameCpp17.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L181) | [R704.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R704.txt) +R705 | | [`RenameCpp17.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L189) | [R705.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R705.txt) +R706 | | [`RenameCpp17.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L190) | [R706.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R706.txt) +R707 | | [`RenameCpp17.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L191) | [R707.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R707.txt) +R708 | | [`RenameCpp17.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L193) | [R708.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R708.txt) +R709 | | [`RenameCpp17.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L195) | [R709.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R709.txt) +R710 | | [`RenameCpp17.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L197) | [R710.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R710.txt) +R711 | | [`RenameCpp17.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L198) | [R711.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R711.txt) +R712 | | [`RenameCpp17.cpp`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L199) | [R712.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R712.txt) +R713 | | [`RenameCpp17.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L201) | [R713.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R713.txt) +R714 | | [`RenameCpp17.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L203) | [R714.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R714.txt) +R715 | | [`RenameCpp17.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L205) | [R715.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R715.txt) +R716 | | [`RenameCpp17.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L206) | [R716.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R716.txt) +R717 | | [`RenameCpp17.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L207) | [R717.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R717.txt) +R718 | | [`RenameCpp17.cpp`, line 209](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L209) | [R718.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R718.txt) +R719 | | [`RenameCpp17.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L211) | [R719.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R719.txt) +R720 | | [`RenameCpp17.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L215) | [R720.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R720.txt) +R721 | | [`RenameCpp17.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L216) | [R721.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R721.txt) +R722 | | [`RenameCpp17.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L217) | [R722.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R722.txt) +R723 | | [`RenameCpp17.cpp`, line 219](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L219) | [R723.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R723.txt) +R724 | | [`RenameCpp17.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L221) | [R724.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R724.txt) +R725 | | [`RenameCpp17.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L233) | [R725.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R725.txt) +R726 | | [`RenameCpp17.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L234) | [R726.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R726.txt) +R727 | | [`RenameCpp17.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L235) | [R727.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R727.txt) +R728 | | [`RenameCpp17.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L237) | [R728.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R728.txt) +R729 | | [`RenameCpp17.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L239) | [R729.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R729.txt) +R730 | | [`RenameCpp17.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L241) | [R730.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R730.txt) +R731 | | [`RenameCpp17.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L242) | [R731.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R731.txt) +R732 | | [`RenameCpp17.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L243) | [R732.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R732.txt) +R733 | | [`RenameCpp17.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L245) | [R733.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R733.txt) +R734 | | [`RenameCpp17.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L247) | [R734.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R734.txt) +R735 | | [`RenameCpp17.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L249) | [R735.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R735.txt) +R736 | | [`RenameCpp17.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L250) | [R736.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R736.txt) +R737 | | [`RenameCpp17.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L251) | [R737.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R737.txt) +R738 | | [`RenameCpp17.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L253) | [R738.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R738.txt) +R739 | | [`RenameCpp17.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L255) | [R739.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R739.txt) +R740 | | [`RenameCpp17.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L259) | [R740.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R740.txt) +R741 | | [`RenameCpp17.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L260) | [R741.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R741.txt) +R742 | | [`RenameCpp17.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L261) | [R742.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R742.txt) +R743 | | [`RenameCpp17.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L263) | [R743.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R743.txt) +R744 | | [`RenameCpp17.cpp`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L265) | [R744.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R744.txt) +R745 | | [`RenameCpp17.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L273) | [R745.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R745.txt) +R746 | | [`RenameCpp17.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L274) | [R746.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R746.txt) +R747 | | [`RenameCpp17.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L275) | [R747.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R747.txt) +R748 | | [`RenameCpp17.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L278) | [R748.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R748.txt) +R749 | | [`RenameCpp17.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L280) | [R749.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R749.txt) +R750 | | [`RenameCpp17.cpp`, line 285](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L285) | [R750.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R750.txt) +R751 | | [`RenameCpp17.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L286) | [R751.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R751.txt) +R752 | | [`RenameCpp17.cpp`, line 290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L290) | [R752.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R752.txt) +R753 | | [`RenameCpp17.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L292) | [R753.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R753.txt) +R754 | | [`RenameCpp17.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L296) | [R754.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R754.txt) +R755 | | [`RenameCpp17.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L298) | [R755.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R755.txt) +R756 | | [`RenameCpp17.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L308) | [R756.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R756.txt) +R757 | | [`RenameCpp17.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L310) | [R757.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R757.txt) +R758 | | [`RenameCpp17.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L311) | [R758.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R758.txt) +R759 | | [`RenameCpp17.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L312) | [R759.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R759.txt) +R760 | | [`RenameCpp17.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L315) | [R760.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R760.txt) +R761 | | [`RenameCpp17.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L319) | [R761.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R761.txt) +R762 | | [`RenameCpp17.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L321) | [R762.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R762.txt) +R763 | | [`RenameCpp17.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L322) | [R763.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R763.txt) +R764 | | [`RenameCpp17.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L323) | [R764.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R764.txt) +R765 | | [`RenameCpp17.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L326) | [R765.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R765.txt) +R766 | | [`RenameCpp17.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L330) | [R766.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R766.txt) +R767 | | [`RenameCpp17.cpp`, line 332](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L332) | [R767.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R767.txt) +R768 | | [`RenameCpp17.cpp`, line 333](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L333) | [R768.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R768.txt) +R769 | | [`RenameCpp17.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L334) | [R769.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R769.txt) +R770 | | [`RenameCpp17.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L335) | [R770.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R770.txt) +R771 | | [`RenameCpp17.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L338) | [R771.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R771.txt) +R772 | | [`RenameCpp17.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L339) | [R772.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R772.txt) +R773 | | [`RenameCpp17.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L343) | [R773.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R773.txt) +R774 | | [`RenameCpp17.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L345) | [R774.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R774.txt) +R775 | | [`RenameCpp17.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L346) | [R775.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R775.txt) +R776 | | [`RenameCpp17.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L347) | [R776.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R776.txt) +R777 | | [`RenameCpp17.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L348) | [R777.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R777.txt) +R778 | | [`RenameCpp17.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L351) | [R778.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R778.txt) +R779 | | [`RenameCpp17.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L352) | [R779.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R779.txt) +R780 | | [`RenameCpp17.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L384) | [R780.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R780.txt) +R781 | | [`RenameCpp17.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L385) | [R781.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R781.txt) +R782 | | [`RenameCpp17.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L386) | [R782.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R782.txt) +R783 | | [`RenameCpp17.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L388) | [R783.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R783.txt) +R784 | | [`RenameCpp17.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L390) | [R784.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R784.txt) +R785 | | [`RenameCpp17.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L392) | [R785.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R785.txt) +R786 | | [`RenameCpp17.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L393) | [R786.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R786.txt) +R787 | | [`RenameCpp17.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L394) | [R787.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R787.txt) +R788 | | [`RenameCpp17.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L396) | [R788.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R788.txt) +R789 | | [`RenameCpp17.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L398) | [R789.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R789.txt) +R790 | | [`RenameCpp17.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L403) | [R790.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R790.txt) +R791 | | [`RenameCpp17.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L404) | [R791.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R791.txt) +R792 | | [`RenameCpp17.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L405) | [R792.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R792.txt) +R793 | | [`RenameCpp17.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L407) | [R793.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R793.txt) +R794 | | [`RenameCpp17.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L409) | [R794.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R794.txt) +R795 | | [`RenameCpp17.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L411) | [R795.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R795.txt) +R796 | | [`RenameCpp17.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L413) | [R796.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R796.txt) +R797 | | [`RenameCpp17.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L415) | [R797.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R797.txt) +R798 | | [`RenameCpp17.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L416) | [R798.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R798.txt) +R799 | | [`RenameCpp17.cpp`, line 417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L417) | [R799.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R799.txt) +R800 | | [`RenameCpp17.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L419) | [R800.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R800.txt) +R801 | | [`RenameCpp17.cpp`, line 421](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L421) | [R801.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R801.txt) +R802 | | [`RenameCpp17.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L422) | [R802.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R802.txt) +R803 | | [`RenameCpp17.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L424) | [R803.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R803.txt) +R804 | | [`RenameCpp17.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L430) | [R804.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R804.txt) +R805 | | [`RenameCpp17.cpp`, line 432](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L432) | [R805.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R805.txt) +R806 | | [`RenameCpp17.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L438) | [R806.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R806.txt) +R807 | | [`RenameCpp17.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L440) | [R807.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R807.txt) +R808 | | [`RenameCpp17.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L443) | [R808.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R808.txt) +R809 | | [`RenameCpp17.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L444) | [R809.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R809.txt) +R810 | | [`RenameCpp17.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L449) | [R810.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R810.txt) +R811 | | [`RenameCpp17.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L451) | [R811.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R811.txt) +R812 | | [`RenameCpp17.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L452) | [R812.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R812.txt) +R813 | | [`RenameCpp17.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L453) | [R813.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R813.txt) +R814 | | [`RenameCpp17.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L461) | [R814.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R814.txt) +R815 | | [`RenameCpp17.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L463) | [R815.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R815.txt) +R816 | | [`RenameCpp17.cpp`, line 464](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L464) | [R816.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R816.txt) +R817 | | [`RenameCpp17.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L465) | [R817.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R817.txt) +R818 | | [`RenameCpp17.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L466) | [R818.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R818.txt) +R819 | | [`RenameCpp17.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L467) | [R819.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R819.txt) +R820 | | [`RenameCpp17.cpp`, line 472](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L472) | [R820.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R820.txt) +R821 | | [`RenameCpp17.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L473) | [R821.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R821.txt) +R822 | | [`RenameCpp17.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L475) | [R822.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R822.txt) +R823 | | [`RenameCpp17.cpp`, line 478](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L478) | [R823.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R823.txt) +R824 | | [`RenameCpp17.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L479) | [R824.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R824.txt) +R825 | | [`RenameCpp17.cpp`, line 480](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L480) | [R825.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R825.txt) +R826 | | [`RenameCpp17.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L481) | [R826.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R826.txt) +R827 | | [`RenameCpp17.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L483) | [R827.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R827.txt) +R828 | | [`RenameCpp17.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L489) | [R828.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R828.txt) +R829 | | [`RenameCpp17.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L490) | [R829.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R829.txt) +R830 | | [`RenameCpp17.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L491) | [R830.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R830.txt) +R831 | | [`RenameCpp17.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L492) | [R831.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R831.txt) +R832 | | [`RenameCpp17.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L496) | [R832.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R832.txt) +R833 | | [`RenameCpp17.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L497) | [R833.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R833.txt) +R834 | | [`RenameCpp17.cpp`, line 498](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L498) | [R834.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R834.txt) +R835 | | [`RenameCpp17.cpp`, line 500](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L500) | [R835.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R835.txt) +R836 | | [`RenameCpp17.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L508) | [R836.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R836.txt) +R837 | | [`RenameCpp17.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L509) | [R837.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R837.txt) +R838 | | [`RenameCpp17.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L510) | [R838.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R838.txt) +R839 | | [`RenameCpp17.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L511) | [R839.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R839.txt) +R840 | | [`RenameCpp17.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L512) | [R840.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R840.txt) +R841 | | [`RenameCpp17.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L514) | [R841.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R841.txt) +R842 | | [`RenameCpp17.cpp`, line 515](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L515) | [R842.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R842.txt) +R843 | | [`RenameCpp17.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L520) | [R843.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R843.txt) +R844 | | [`RenameCpp17.cpp`, line 521](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L521) | [R844.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R844.txt) +R845 | | [`RenameCpp17.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L522) | [R845.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R845.txt) +R846 | | [`RenameCpp17.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L523) | [R846.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R846.txt) +R847 | | [`RenameCpp17.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L524) | [R847.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R847.txt) +R848 | | [`RenameCpp17.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L526) | [R848.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R848.txt) +R849 | | [`RenameCpp17.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L527) | [R849.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R849.txt) +R850 | | [`RenameCpp17.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L531) | [R850.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R850.txt) +R851 | | [`RenameCpp17.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L533) | [R851.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R851.txt) +R852 | | [`RenameCpp17.cpp`, line 534](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L534) | [R852.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R852.txt) +R853 | | [`RenameCpp17.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L535) | [R853.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R853.txt) +R854 | | [`RenameCpp17.cpp`, line 536](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L536) | [R854.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R854.txt) +R855 | | [`RenameCpp17.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L538) | [R855.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R855.txt) +R856 | | [`RenameCpp17.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L539) | [R856.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R856.txt) +R857 | | [`RenameCpp20.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L10) | [R857.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R857.txt) +R858 | | [`RenameCpp20.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L13) | [R858.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R858.txt) +R859 | | [`RenameCpp20.h`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L15) | [R859.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R859.txt) +R860 | | [`RenameCpp20.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L17) | [R860.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R860.txt) +R861 | | [`RenameCpp20.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L67) | [R861.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R861.txt) +R862 | | [`RenameCpp20.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L69) | [R862.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R862.txt) +R863 | | [`RenameCpp20.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L71) | [R863.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R863.txt) +R864 | | [`RenameCpp20.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L72) | [R864.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R864.txt) +R865 | | [`RenameCpp20.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L74) | [R865.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R865.txt) +R866 | | [`RenameCpp20.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L75) | [R866.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R866.txt) +R867 | | [`RenameCpp20.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L77) | [R867.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R867.txt) +R868 | | [`RenameCpp20.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L78) | [R868.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R868.txt) +R869 | | [`RenameCpp20.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L83) | [R869.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R869.txt) +R870 | | [`RenameCpp20.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L85) | [R870.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R870.txt) +R871 | | [`RenameCpp20.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L87) | [R871.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R871.txt) +R872 | | [`RenameCpp20.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L88) | [R872.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R872.txt) +R873 | | [`RenameCpp20.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L90) | [R873.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R873.txt) +R874 | | [`RenameCpp20.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L91) | [R874.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R874.txt) +R875 | | [`RenameCpp20.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L93) | [R875.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R875.txt) +R876 | | [`RenameCpp20.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L94) | [R876.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R876.txt) +R877 | | [`RenameCpp20.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L102) | [R877.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R877.txt) +R878 | | [`RenameCpp20.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L105) | [R878.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R878.txt) +R879 | | [`RenameCpp20.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L106) | [R879.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R879.txt) +R880 | | [`RenameCpp20.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L107) | [R880.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R880.txt) +R881 | | [`RenameCpp20.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L109) | [R881.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R881.txt) +R882 | | [`RenameCpp20.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L111) | [R882.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R882.txt) +R883 | | [`RenameCpp20.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L113) | [R883.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R883.txt) +R884 | | [`RenameCpp20.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L117) | [R884.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R884.txt) +R885 | | [`RenameCpp20.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L118) | [R885.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R885.txt) +R886 | | [`RenameCpp20.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L119) | [R886.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R886.txt) +R887 | | [`RenameCpp20.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L121) | [R887.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R887.txt) +R888 | | [`RenameCpp20.cpp`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L123) | [R888.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R888.txt) +R889 | | [`RenameCpp20.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L125) | [R889.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R889.txt) +R890 | | [`RenameCpp20.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L129) | [R890.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R890.txt) +R891 | | [`RenameCpp20.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L130) | [R891.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R891.txt) +R892 | | [`RenameCpp20.cpp`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L131) | [R892.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R892.txt) +R893 | | [`RenameCpp20.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L132) | [R893.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R893.txt) +R894 | | [`RenameCpp20.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L134) | [R894.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R894.txt) +R895 | | [`RenameCpp20.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L136) | [R895.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R895.txt) +R896 | | [`RenameCpp20.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L138) | [R896.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R896.txt) +R897 | | [`RenameCpp20.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L143) | [R897.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R897.txt) +R898 | | [`RenameCpp20.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L149) | [R898.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R898.txt) +R899 | | [`RenameCpp20.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L163) | [R899.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R899.txt) +R900 | | [`RenameCpp20.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L164) | [R900.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R900.txt) +R901 | | [`RenameCpp20.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L165) | [R901.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R901.txt) +R902 | | [`RenameCpp20.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L168) | [R902.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R902.txt) +R903 | | [`RenameCpp20.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L175) | [R903.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R903.txt) +R904 | | [`RenameCpp20.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L176) | [R904.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R904.txt) +R905 | | [`RenameCpp20.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L177) | [R905.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R905.txt) +R906 | | [`RenameCpp20.cpp`, line 180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L180) | [R906.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R906.txt) +R907 | | [`RenameCpp20.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L190) | [R907.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R907.txt) +R908 | | [`RenameCpp20.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L191) | [R908.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R908.txt) +R909 | | [`RenameCpp20.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L192) | [R909.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R909.txt) +R910 | | [`RenameCpp20.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L193) | [R910.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R910.txt) +R911 | | [`RenameCpp20.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L194) | [R911.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R911.txt) +R912 | | [`RenameCpp20.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L196) | [R912.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R912.txt) +R913 | | [`RenameCpp20.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L198) | [R913.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R913.txt) +R914 | | [`RenameCpp20.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L200) | [R914.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R914.txt) +R915 | | [`RenameCpp20.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L201) | [R915.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R915.txt) +R916 | | [`RenameCpp20.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L202) | [R916.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R916.txt) +R917 | | [`RenameCpp20.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L211) | [R917.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R917.txt) +R918 | | [`RenameCpp20.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L212) | [R918.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R918.txt) +R919 | | [`RenameCpp20.cpp`, line 214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L214) | [R919.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R919.txt) +R920 | | [`RenameCpp20.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L215) | [R920.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R920.txt) +R921 | | [`RenameCpp20.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L216) | [R921.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R921.txt) +R922 | | [`RenameCpp20.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L217) | [R922.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R922.txt) +R923 | | [`RenameCpp20.cpp`, line 220](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L220) | [R923.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R923.txt) +R924 | | [`RenameCpp20.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L221) | [R924.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R924.txt) +R925 | | [`RenameCpp20.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L222) | [R925.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R925.txt) +R926 | | [`RenameCpp20.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L223) | [R926.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R926.txt) +R927 | | [`RenameCpp20.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L224) | [R927.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R927.txt) +R928 | | [`RenameCpp20.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L226) | [R928.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R928.txt) +R929 | | [`RenameCpp20.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L236) | [R929.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R929.txt) +R930 | | [`RenameCpp20.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L237) | [R930.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R930.txt) +R931 | | [`RenameCpp20.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L240) | [R931.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R931.txt) +R932 | | [`RenameCpp20.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L241) | [R932.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R932.txt) +R933 | | [`RenameCpp20.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L248) | [R933.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R933.txt) +R934 | | [`RenameCpp20.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L262) | [R934.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R934.txt) +R935 | | [`RenameCpp20.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L263) | [R935.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R935.txt) +R936 | | [`RenameCpp20.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L269) | [R936.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R936.txt) +R937 | | [`RenameCpp20.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L279) | [R937.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R937.txt) +R938 | | [`RenameCpp20.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L280) | [R938.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R938.txt) +R939 | | [`RenameCpp20.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L282) | [R939.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R939.txt) +R940 | | [`RenameCpp20.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L288) | [R940.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R940.txt) +R941 | | [`RenameCpp20.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L295) | [R941.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R941.txt) +R942 | | [`RenameCpp20.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L296) | [R942.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R942.txt) +R943 | | [`RenameCpp20.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L297) | [R943.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R943.txt) +R944 | | [`RenameCpp20.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L299) | [R944.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R944.txt) +R945 | | [`RenameCpp20.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L305) | [R945.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R945.txt) +R946 | | [`RenameCpp20.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L312) | [R946.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R946.txt) +R947 | | [`RenameCpp20.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L313) | [R947.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R947.txt) +R948 | | [`RenameCpp20.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L314) | [R948.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R948.txt) +R949 | | [`RenameCpp20.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L316) | [R949.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R949.txt) +R950 | | [`RenameCpp20.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L321) | [R950.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R950.txt) +R951 | | [`RenameCpp20.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L322) | [R951.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R951.txt) +R952 | | [`RenameCpp20.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L329) | [R952.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R952.txt) +R953 | | [`RenameCpp20.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L336) | [R953.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R953.txt) +R954 | | [`RenameCpp20.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L345) | [R954.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R954.txt) +R955 | | [`RenameCpp20.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L346) | [R955.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R955.txt) +R956 | | [`RenameCpp20.cpp`, line 357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L357) | [R956.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R956.txt) +R957 | | [`RenameCpp20.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L358) | [R957.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R957.txt) +R958 | | [`RenameCpp20.cpp`, line 361](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L361) | [R958.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R958.txt) +R959 | | [`RenameCpp20.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L364) | [R959.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R959.txt) +R960 | | [`RenameCpp20.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L380) | [R960.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R960.txt) +R961 | | [`RenameCpp20.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L381) | [R961.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R961.txt) +R962 | | [`RenameCpp20.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L384) | [R962.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R962.txt) +R963 | | [`RenameCpp20.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L385) | [R963.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R963.txt) +R964 | | [`RenameCpp20.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L389) | [R964.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R964.txt) +R965 | | [`RenameCpp20.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L390) | [R965.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R965.txt) +R966 | | [`RenameCpp20.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L396) | [R966.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R966.txt) +R967 | | [`RenameCpp20.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L397) | [R967.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R967.txt) +R968 | | [`RenameCpp20.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L403) | [R968.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R968.txt) +R969 | | [`RenameCpp20.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L404) | [R969.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R969.txt) +R970 | | [`RenameCpp20.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L405) | [R970.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R970.txt) +R971 | | [`RenameCpp20.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L408) | [R971.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R971.txt) +R972 | | [`RenameCpp20.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L409) | [R972.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R972.txt) +R973 | | [`RenameCpp20.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L416) | [R973.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R973.txt) +R974 | | [`RenameCpp20.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L418) | [R974.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R974.txt) +R975 | | [`RenameCpp20.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L422) | [R975.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R975.txt) +R976 | | [`RenameCpp20.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L423) | [R976.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R976.txt) +R977 | | [`RenameCpp20.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L429) | [R977.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R977.txt) +R978 | | [`RenameCpp20.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L430) | [R978.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R978.txt) +R979 | | [`RenameCpp20.cpp`, line 436](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L436) | [R979.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R979.txt) +R980 | | [`RenameCpp20.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L437) | [R980.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R980.txt) +R981 | | [`RenameCpp20.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L443) | [R981.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R981.txt) +R982 | | [`RenameCpp20.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L444) | [R982.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R982.txt) +R983 | | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L449) | [R983.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R983.txt) +R984 | | [`RenameCpp20.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L451) | [R984.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R984.txt) +R985 | | [`RenameCpp20.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L452) | [R985.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R985.txt) +R986 | | [`RenameCpp20.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L454) | [R986.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R986.txt) +R987 | | [`RenameCpp20Constraints.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L48) | [R987.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R987.txt) +R988 | | [`RenameCpp20Constraints.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L50) | [R988.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R988.txt) +R989 | | [`RenameCpp20Constraints.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L51) | [R989.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R989.txt) +R990 | | [`RenameCpp20Constraints.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L52) | [R990.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R990.txt) +R991 | | [`RenameCpp20Constraints.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L55) | [R991.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R991.txt) +R992 | | [`RenameCpp20Constraints.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L56) | [R992.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R992.txt) +R993 | | [`RenameCpp20Constraints.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L61) | [R993.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R993.txt) +R994 | | [`RenameCpp20Constraints.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L62) | [R994.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R994.txt) +R995 | | [`RenameCpp20Constraints.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L64) | [R995.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R995.txt) +R996 | | [`RenameCpp20Constraints.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L65) | [R996.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R996.txt) +R997 | | [`RenameCpp20Constraints.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L66) | [R997.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R997.txt) +R998 | | [`RenameCpp20Constraints.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L67) | [R998.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R998.txt) +R999 | | [`RenameCpp20Constraints.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L68) | [R999.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R999.txt) +R1000 | | [`RenameCpp20Constraints.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L71) | [R1000.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1000.txt) +R1001 | | [`RenameCpp20Constraints.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L72) | [R1001.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1001.txt) +R1002 | | [`RenameCpp20Constraints.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L78) | [R1002.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1002.txt) +R1003 | | [`RenameCpp20Constraints.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L80) | [R1003.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1003.txt) +R1004 | | [`RenameCpp20Constraints.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L81) | [R1004.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1004.txt) +R1005 | | [`RenameCpp20Constraints.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L83) | [R1005.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1005.txt) +R1006 | | [`RenameCpp20Constraints.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L84) | [R1006.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1006.txt) +R1007 | | [`RenameCpp20Constraints.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L85) | [R1007.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1007.txt) +R1008 | | [`RenameCpp20Constraints.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L86) | [R1008.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1008.txt) +R1009 | | [`RenameCpp20Constraints.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L89) | [R1009.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1009.txt) +R1010 | | [`RenameCpp20Constraints.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L90) | [R1010.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1010.txt) +R1011 | | [`RenameCpp20Constraints.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L95) | [R1011.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1011.txt) +R1012 | | [`RenameCpp20Constraints.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L97) | [R1012.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1012.txt) +R1013 | | [`RenameCpp20Constraints.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L98) | [R1013.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1013.txt) +R1014 | | [`RenameCpp20Constraints.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L99) | [R1014.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1014.txt) +R1015 | | [`RenameCpp20Constraints.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L100) | [R1015.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1015.txt) +R1016 | | [`RenameCpp20Constraints.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L102) | [R1016.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1016.txt) +R1017 | | [`RenameCpp20Constraints.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L103) | [R1017.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1017.txt) +R1018 | | [`RenameCpp20Constraints.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L106) | [R1018.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1018.txt) +R1019 | | [`RenameCpp20Constraints.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L107) | [R1019.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1019.txt) +R1020 | | [`RenameCpp20Constraints.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L112) | [R1020.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1020.txt) +R1021 | | [`RenameCpp20Constraints.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L114) | [R1021.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1021.txt) +R1022 | | [`RenameCpp20Constraints.cpp`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L115) | [R1022.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1022.txt) +R1023 | | [`RenameCpp20Constraints.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L116) | [R1023.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1023.txt) +R1024 | | [`RenameCpp20Constraints.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L118) | [R1024.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1024.txt) +R1025 | | [`RenameCpp20Constraints.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L119) | [R1025.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1025.txt) +R1026 | | [`RenameCpp20Constraints.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L120) | [R1026.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1026.txt) +R1027 | | [`RenameCpp20Constraints.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L121) | [R1027.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1027.txt) +R1028 | | [`RenameCpp20Constraints.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L124) | [R1028.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1028.txt) +R1029 | | [`RenameCpp20Constraints.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L125) | [R1029.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1029.txt) +R1030 | | [`RenameCpp20Constraints.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L130) | [R1030.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1030.txt) +R1031 | | [`RenameCpp20Constraints.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L132) | [R1031.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1031.txt) +R1032 | | [`RenameCpp20Constraints.cpp`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L133) | [R1032.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1032.txt) +R1033 | | [`RenameCpp20Constraints.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L134) | [R1033.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1033.txt) +R1034 | | [`RenameCpp20Constraints.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L136) | [R1034.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1034.txt) +R1035 | | [`RenameCpp20Constraints.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L137) | [R1035.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1035.txt) +R1036 | | [`RenameCpp20Constraints.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L138) | [R1036.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1036.txt) +R1037 | | [`RenameCpp20Constraints.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L139) | [R1037.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1037.txt) +R1038 | | [`RenameCpp20Constraints.cpp`, line 142](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L142) | [R1038.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1038.txt) +R1039 | | [`RenameCpp20Constraints.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L143) | [R1039.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1039.txt) +R1040 | | [`RenameCpp20Constraints.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L148) | [R1040.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1040.txt) +R1041 | | [`RenameCpp20Constraints.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L150) | [R1041.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1041.txt) +R1042 | | [`RenameCpp20Constraints.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L151) | [R1042.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1042.txt) +R1043 | | [`RenameCpp20Constraints.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L152) | [R1043.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1043.txt) +R1044 | | [`RenameCpp20Constraints.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L153) | [R1044.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1044.txt) +R1045 | | [`RenameCpp20Constraints.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L155) | [R1045.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1045.txt) +R1046 | | [`RenameCpp20Constraints.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L156) | [R1046.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1046.txt) +R1047 | | [`RenameCpp20Constraints.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L157) | [R1047.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1047.txt) +R1048 | | [`RenameCpp20Constraints.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L160) | [R1048.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1048.txt) +R1049 | | [`RenameCpp20Constraints.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L161) | [R1049.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1049.txt) +R1050 | | [`RenameCpp20Constraints.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L166) | [R1050.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1050.txt) +R1051 | | [`RenameCpp20Constraints.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L168) | [R1051.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1051.txt) +R1052 | | [`RenameCpp20Constraints.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L169) | [R1052.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1052.txt) +R1053 | | [`RenameCpp20Constraints.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L170) | [R1053.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1053.txt) +R1054 | | [`RenameCpp20Constraints.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L171) | [R1054.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1054.txt) +R1055 | | [`RenameCpp20Constraints.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L173) | [R1055.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1055.txt) +R1056 | | [`RenameCpp20Constraints.cpp`, line 174](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L174) | [R1056.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1056.txt) +R1057 | | [`RenameCpp20Constraints.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L175) | [R1057.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1057.txt) +R1058 | | [`RenameCpp20Constraints.cpp`, line 178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L178) | [R1058.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1058.txt) +R1059 | | [`RenameCpp20Constraints.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L179) | [R1059.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1059.txt) +R1060 | | [`RenameCpp20Constraints.cpp`, line 184](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L184) | [R1060.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1060.txt) +R1061 | | [`RenameCpp20Constraints.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L186) | [R1061.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1061.txt) +R1062 | | [`RenameCpp20Constraints.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L187) | [R1062.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1062.txt) +R1063 | | [`RenameCpp20Constraints.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L188) | [R1063.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1063.txt) +R1064 | | [`RenameCpp20Constraints.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L189) | [R1064.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1064.txt) +R1065 | | [`RenameCpp20Constraints.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L191) | [R1065.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1065.txt) +R1066 | | [`RenameCpp20Constraints.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L192) | [R1066.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1066.txt) +R1067 | | [`RenameCpp20Constraints.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L193) | [R1067.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1067.txt) +R1068 | | [`RenameCpp20Constraints.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L194) | [R1068.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1068.txt) +R1069 | | [`RenameCpp20Constraints.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L197) | [R1069.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1069.txt) +R1070 | | [`RenameCpp20Constraints.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L198) | [R1070.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1070.txt) +R1071 | | [`RenameCpp20Constraints.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L203) | [R1071.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1071.txt) +R1072 | | [`RenameCpp20Constraints.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L205) | [R1072.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1072.txt) +R1073 | | [`RenameCpp20Constraints.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L206) | [R1073.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1073.txt) +R1074 | | [`RenameCpp20Constraints.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L207) | [R1074.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1074.txt) +R1075 | | [`RenameCpp20Constraints.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L208) | [R1075.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1075.txt) +R1076 | | [`RenameCpp20Constraints.cpp`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L210) | [R1076.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1076.txt) +R1077 | | [`RenameCpp20Constraints.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L211) | [R1077.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1077.txt) +R1078 | | [`RenameCpp20Constraints.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L212) | [R1078.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1078.txt) +R1079 | | [`RenameCpp20Constraints.cpp`, line 213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L213) | [R1079.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1079.txt) +R1080 | | [`RenameCpp20Constraints.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L216) | [R1080.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1080.txt) +R1081 | | [`RenameCpp20Constraints.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L217) | [R1081.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1081.txt) +R1082 | | [`RenameCpp20Constraints.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L222) | [R1082.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1082.txt) +R1083 | | [`RenameCpp20Constraints.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L223) | [R1083.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1083.txt) +R1084 | | [`RenameCpp20Constraints.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L224) | [R1084.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1084.txt) +R1085 | | [`RenameCpp20Constraints.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L226) | [R1085.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1085.txt) +R1086 | | [`RenameCpp20Constraints.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L227) | [R1086.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1086.txt) +R1087 | | [`RenameCpp20Constraints.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L228) | [R1087.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1087.txt) +R1088 | | [`RenameCpp20Constraints.cpp`, line 230](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L230) | [R1088.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1088.txt) +R1089 | | [`RenameCpp20Constraints.cpp`, line 231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L231) | [R1089.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1089.txt) +R1090 | | [`RenameCpp20Constraints.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L232) | [R1090.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1090.txt) +R1091 | | [`RenameCpp20Constraints.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L233) | [R1091.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1091.txt) +R1092 | | [`RenameCpp20Constraints.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L234) | [R1092.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1092.txt) +R1093 | | [`RenameCpp20Constraints.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L235) | [R1093.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1093.txt) +R1094 | | [`RenameCpp20Constraints.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L236) | [R1094.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1094.txt) +R1095 | | [`RenameCpp20Constraints.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L239) | [R1095.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1095.txt) +R1096 | | [`RenameCpp20Constraints.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L240) | [R1096.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1096.txt) +R1097 | | [`RenameCpp20Constraints.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L245) | [R1097.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1097.txt) +R1098 | | [`RenameCpp20Constraints.cpp`, line 246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L246) | [R1098.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1098.txt) +R1099 | | [`RenameCpp20Constraints.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L247) | [R1099.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1099.txt) +R1100 | | [`RenameCpp20Constraints.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L249) | [R1100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1100.txt) +R1101 | | [`RenameCpp20Constraints.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L250) | [R1101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1101.txt) +R1102 | | [`RenameCpp20Constraints.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L251) | [R1102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1102.txt) +R1103 | | [`RenameCpp20Constraints.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L252) | [R1103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1103.txt) +R1104 | | [`RenameCpp20Constraints.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L253) | [R1104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1104.txt) +R1105 | | [`RenameCpp20Constraints.cpp`, line 254](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L254) | [R1105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1105.txt) +R1106 | | [`RenameCpp20Constraints.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L255) | [R1106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1106.txt) +R1107 | | [`RenameCpp20Constraints.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L257) | [R1107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1107.txt) +R1108 | | [`RenameCpp20Constraints.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L258) | [R1108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1108.txt) +R1109 | | [`RenameCpp20Constraints.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L259) | [R1109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1109.txt) +R1110 | | [`RenameCpp20Constraints.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L262) | [R1110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1110.txt) +R1111 | | [`RenameCpp20Constraints.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L263) | [R1111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1111.txt) +R1112 | | [`RenameCpp20Constraints.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L268) | [R1112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1112.txt) +R1113 | | [`RenameCpp20Constraints.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L269) | [R1113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1113.txt) +R1114 | | [`RenameCpp20Constraints.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L270) | [R1114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1114.txt) +R1115 | | [`RenameCpp20Constraints.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L272) | [R1115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1115.txt) +R1116 | | [`RenameCpp20Constraints.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L273) | [R1116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1116.txt) +R1117 | | [`RenameCpp20Constraints.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L274) | [R1117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1117.txt) +R1118 | | [`RenameCpp20Constraints.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L275) | [R1118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1118.txt) +R1119 | | [`RenameCpp20Constraints.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L277) | [R1119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1119.txt) +R1120 | | [`RenameCpp20Constraints.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L278) | [R1120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1120.txt) +R1121 | | [`RenameCpp20Constraints.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L279) | [R1121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1121.txt) +R1122 | | [`RenameCpp20Constraints.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L280) | [R1122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1122.txt) +R1123 | | [`RenameCpp20Constraints.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L281) | [R1123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1123.txt) +R1124 | | [`RenameCpp20Constraints.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L282) | [R1124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1124.txt) +R1125 | | [`RenameCpp20Constraints.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L283) | [R1125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1125.txt) +R1126 | | [`RenameCpp20Constraints.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L286) | [R1126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1126.txt) +R1127 | | [`RenameCpp20Constraints.cpp`, line 287](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L287) | [R1127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1127.txt) +R1128 | | [`RenameCpp20Constraints.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L292) | [R1128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1128.txt) +R1129 | | [`RenameCpp20Constraints.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L293) | [R1129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1129.txt) +R1130 | | [`RenameCpp20Constraints.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L294) | [R1130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1130.txt) +R1131 | | [`RenameCpp20Constraints.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L296) | [R1131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1131.txt) +R1132 | | [`RenameCpp20Constraints.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L297) | [R1132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1132.txt) +R1133 | | [`RenameCpp20Constraints.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L298) | [R1133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1133.txt) +R1134 | | [`RenameCpp20Constraints.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L299) | [R1134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1134.txt) +R1135 | | [`RenameCpp20Constraints.cpp`, line 300](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L300) | [R1135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1135.txt) +R1136 | | [`RenameCpp20Constraints.cpp`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L301) | [R1136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1136.txt) +R1137 | | [`RenameCpp20Constraints.cpp`, line 302](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L302) | [R1137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1137.txt) +R1138 | | [`RenameCpp20Constraints.cpp`, line 304](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L304) | [R1138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1138.txt) +R1139 | | [`RenameCpp20Constraints.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L305) | [R1139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1139.txt) +R1140 | | [`RenameCpp20Constraints.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L306) | [R1140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1140.txt) +R1141 | | [`RenameCpp20Constraints.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L307) | [R1141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1141.txt) +R1142 | | [`RenameCpp20Constraints.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L310) | [R1142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1142.txt) +R1143 | | [`RenameCpp20Constraints.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L311) | [R1143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1143.txt) +R1144 | | [`RenameCpp20Constraints.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L316) | [R1144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1144.txt) +R1145 | | [`RenameCpp20Constraints.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L317) | [R1145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1145.txt) +R1146 | | [`RenameCpp20Constraints.cpp`, line 318](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L318) | [R1146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1146.txt) +R1147 | | [`RenameCpp20Constraints.cpp`, line 320](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L320) | [R1147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1147.txt) +R1148 | | [`RenameCpp20Constraints.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L321) | [R1148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1148.txt) +R1149 | | [`RenameCpp20Constraints.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L322) | [R1149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1149.txt) +R1150 | | [`RenameCpp20Constraints.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L323) | [R1150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1150.txt) +R1151 | | [`RenameCpp20Constraints.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L325) | [R1151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1151.txt) +R1152 | | [`RenameCpp20Constraints.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L326) | [R1152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1152.txt) +R1153 | | [`RenameCpp20Constraints.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L327) | [R1153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1153.txt) +R1154 | | [`RenameCpp20Constraints.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L328) | [R1154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1154.txt) +R1155 | | [`RenameCpp20Constraints.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L329) | [R1155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1155.txt) +R1156 | | [`RenameCpp20Constraints.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L330) | [R1156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1156.txt) +R1157 | | [`RenameCpp20Constraints.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L331) | [R1157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1157.txt) +R1158 | | [`RenameCpp20Constraints.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L334) | [R1158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1158.txt) +R1159 | | [`RenameCpp20Constraints.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L335) | [R1159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1159.txt) +R1160 | | [`RenameCpp20Constraints.cpp`, line 340](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L340) | [R1160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1160.txt) +R1161 | | [`RenameCpp20Constraints.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L341) | [R1161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1161.txt) +R1162 | | [`RenameCpp20Constraints.cpp`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L342) | [R1162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1162.txt) +R1163 | | [`RenameCpp20Constraints.cpp`, line 344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L344) | [R1163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1163.txt) +R1164 | | [`RenameCpp20Constraints.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L345) | [R1164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1164.txt) +R1165 | | [`RenameCpp20Constraints.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L346) | [R1165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1165.txt) +R1166 | | [`RenameCpp20Constraints.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L347) | [R1166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1166.txt) +R1167 | | [`RenameCpp20Constraints.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L348) | [R1167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1167.txt) +R1168 | | [`RenameCpp20Constraints.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L349) | [R1168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1168.txt) +R1169 | | [`RenameCpp20Constraints.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L350) | [R1169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1169.txt) +R1170 | | [`RenameCpp20Constraints.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L352) | [R1170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1170.txt) +R1171 | | [`RenameCpp20Constraints.cpp`, line 353](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L353) | [R1171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1171.txt) +R1172 | | [`RenameCpp20Constraints.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L354) | [R1172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1172.txt) +R1173 | | [`RenameCpp20Constraints.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L355) | [R1173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1173.txt) +R1174 | | [`RenameCpp20Constraints.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L358) | [R1174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1174.txt) +R1175 | | [`RenameCpp20Constraints.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L359) | [R1175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1175.txt) +R1176 | | [`RenameCpp20Constraints.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L364) | [R1176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1176.txt) +R1177 | | [`RenameCpp20Constraints.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L365) | [R1177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1177.txt) +R1178 | | [`RenameCpp20Constraints.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L366) | [R1178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1178.txt) +R1179 | | [`RenameCpp20Constraints.cpp`, line 368](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L368) | [R1179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1179.txt) +R1180 | | [`RenameCpp20Constraints.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L369) | [R1180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1180.txt) +R1181 | | [`RenameCpp20Constraints.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L370) | [R1181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1181.txt) +R1182 | | [`RenameCpp20Constraints.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L371) | [R1182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1182.txt) +R1183 | | [`RenameCpp20Constraints.cpp`, line 372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L372) | [R1183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1183.txt) +R1184 | | [`RenameCpp20Constraints.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L374) | [R1184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1184.txt) +R1185 | | [`RenameCpp20Constraints.cpp`, line 375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L375) | [R1185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1185.txt) +R1186 | | [`RenameCpp20Constraints.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L376) | [R1186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1186.txt) +R1187 | | [`RenameCpp20Constraints.cpp`, line 377](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L377) | [R1187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1187.txt) +R1188 | | [`RenameCpp20Constraints.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L378) | [R1188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1188.txt) +R1189 | | [`RenameCpp20Constraints.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L379) | [R1189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1189.txt) +R1190 | | [`RenameCpp20Constraints.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L380) | [R1190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1190.txt) +R1191 | | [`RenameCpp20Constraints.cpp`, line 383](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L383) | [R1191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1191.txt) +R1192 | | [`RenameCpp20Constraints.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L384) | [R1192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1192.txt) +R1193 | | [`RenameCpp20Constraints.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L389) | [R1193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1193.txt) +R1194 | | [`RenameCpp20Constraints.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L390) | [R1194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1194.txt) +R1195 | | [`RenameCpp20Constraints.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L391) | [R1195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1195.txt) +R1196 | | [`RenameCpp20Constraints.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L393) | [R1196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1196.txt) +R1197 | | [`RenameCpp20Constraints.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L394) | [R1197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1197.txt) +R1198 | | [`RenameCpp20Constraints.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L395) | [R1198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1198.txt) +R1199 | | [`RenameCpp20Constraints.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L396) | [R1199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1199.txt) +R1200 | | [`RenameCpp20Constraints.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L397) | [R1200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1200.txt) +R1201 | | [`RenameCpp20Constraints.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L398) | [R1201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1201.txt) +R1202 | | [`RenameCpp20Constraints.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L399) | [R1202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1202.txt) +R1203 | | [`RenameCpp20Constraints.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L401) | [R1203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1203.txt) +R1204 | | [`RenameCpp20Constraints.cpp`, line 402](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L402) | [R1204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1204.txt) +R1205 | | [`RenameCpp20Constraints.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L403) | [R1205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1205.txt) +R1206 | | [`RenameCpp20Constraints.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L404) | [R1206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1206.txt) +R1207 | | [`RenameCpp20Constraints.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L405) | [R1207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1207.txt) +R1208 | | [`RenameCpp20Constraints.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L408) | [R1208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1208.txt) +R1209 | | [`RenameCpp20Constraints.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L409) | [R1209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1209.txt) +R1210 | | [`RenameCpp20Constraints.cpp`, line 441](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L441) | [R1210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1210.txt) +R1211 | | [`RenameCpp20Constraints.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L443) | [R1211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1211.txt) +R1212 | | [`RenameCpp20Constraints.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L446) | [R1212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1212.txt) +R1213 | | [`RenameCpp20Constraints.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L452) | [R1213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1213.txt) +R1214 | | [`RenameCpp20Constraints.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L454) | [R1214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1214.txt) +R1215 | | [`RenameCpp20Constraints.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L457) | [R1215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1215.txt) +R1216 | | [`RenameCpp20Constraints.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L463) | [R1216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1216.txt) +R1217 | | [`RenameCpp20Constraints.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L465) | [R1217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1217.txt) +R1218 | | [`RenameCpp20Constraints.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L468) | [R1218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1218.txt) +R1219 | | [`RenameCpp20Constraints.cpp`, line 474](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L474) | [R1219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1219.txt) +R1220 | | [`RenameCpp20Constraints.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L476) | [R1220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1220.txt) +R1221 | | [`RenameCpp20Constraints.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L483) | [R1221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1221.txt) +R1222 | | [`RenameCpp20Constraints.cpp`, line 485](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L485) | [R1222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1222.txt) +R1223 | | [`RenameCpp20Constraints.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L488) | [R1223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1223.txt) +R1224 | | [`RenameCpp20Constraints.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L494) | [R1224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1224.txt) +R1225 | | [`RenameCpp20Constraints.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L496) | [R1225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1225.txt) +R1226 | | [`RenameCpp20Constraints.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L503) | [R1226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1226.txt) +R1227 | | [`RenameCpp20Constraints.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L505) | [R1227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1227.txt) +R1228 | | [`RenameCpp20Constraints.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L512) | [R1228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1228.txt) +R1229 | | [`RenameCpp20Constraints.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L514) | [R1229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1229.txt) +R1230 | | [`RenameCpp20Constraints.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L522) | [R1230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1230.txt) +R1231 | | [`RenameCpp20Constraints.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L524) | [R1231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1231.txt) +R1232 | | [`RenameCpp20Constraints.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L527) | [R1232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1232.txt) +R1233 | | [`RenameCpp20Constraints.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L533) | [R1233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1233.txt) +R1234 | | [`RenameCpp20Constraints.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L535) | [R1234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1234.txt) +R1235 | | [`RenameCpp20Constraints.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L538) | [R1235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1235.txt) +R1236 | | [`RenameCpp20Constraints.cpp`, line 544](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L544) | [R1236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1236.txt) +R1237 | | [`RenameCpp20Constraints.cpp`, line 546](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L546) | [R1237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1237.txt) +R1238 | | [`RenameCpp20Constraints.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L549) | [R1238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1238.txt) +R1239 | | [`RenameCpp20Constraints.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L555) | [R1239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1239.txt) +R1240 | | [`RenameCpp20Constraints.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L557) | [R1240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1240.txt) +R1241 | | [`RenameCpp20Constraints.cpp`, line 565](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L565) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1242 | | [`RenameCpp20Constraints.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L567) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1243 | | [`RenameCpp20Constraints.cpp`, line 574](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L574) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1244 | | [`RenameCpp20Constraints.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L576) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1245 | | [`RenameCpp20Constraints.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L583) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L585) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L588) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 594](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L594) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 596](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L596) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 599](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L599) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L606) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L608) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L609) | [R1253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1253.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 611](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L611) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 615](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L615) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 616](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L616) | [R1256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1256.txt) +R1257 | | [`RenameCpp20Constraints.cpp`, line 623](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L623) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1258 | | [`RenameCpp20Constraints.cpp`, line 625](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L625) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L626) | [R1259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1259.txt) +R1260 | | [`RenameCpp20Constraints.cpp`, line 628](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L628) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1261 | | [`RenameCpp20Constraints.cpp`, line 631](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L631) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 632](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L632) | [R1262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1262.txt) +R1263 | | [`RenameCpp20Constraints.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L639) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1264 | | [`RenameCpp20Constraints.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L641) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L642) | [R1265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1265.txt) +R1266 | | [`RenameCpp20Constraints.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L644) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1267 | | [`RenameCpp20Constraints.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L647) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L648) | [R1268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1268.txt) +R1269 | | [`RenameCpp20Constraints.cpp`, line 656](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L656) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1270 | | [`RenameCpp20Constraints.cpp`, line 658](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L658) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 659](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L659) | [R1271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1271.txt) +R1272 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1273 | | [`RenameCpp20Constraints.cpp`, line 665](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L665) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L666) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1275 | | [`RenameCpp20Constraints.cpp`, line 673](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L673) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1276 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L676) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L682) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 689](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L689) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L691) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L697) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 706](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L706) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L708) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L709) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 711](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L711) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 715](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L715) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 723](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L723) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 725](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L725) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 726](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L726) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 739](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L739) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 741](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L741) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L742) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L744) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L756) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L758) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L759) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L761) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 773](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L773) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L776) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 778](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L778) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L781) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L791) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 794](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L794) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 797](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L797) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 798](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L798) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 806](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L806) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L809) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 816](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L816) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 817](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L817) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 818](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L818) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 840](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L840) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 841](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L841) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 842](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L842) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 843](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L843) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 847](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L847) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 853](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L853) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 864](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L864) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 865](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L865) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L866) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L867) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 871](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L871) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 877](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L877) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 888](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L888) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L889) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L890) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 891](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L891) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L892) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 896](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L896) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L902) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 903](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L903) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L912) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L915) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 916](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L916) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 917](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L917) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 927](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L927) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L929) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 936](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L936) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 937](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L937) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L940) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 941](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L941) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L952) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L954) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 962](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L962) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L965) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 966](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L966) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 967](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L967) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 979](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L979) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 980](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L980) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L981) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L988) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 989](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L989) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 994](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L994) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 995](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L995) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 1004](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1004) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1005) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 1006](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1006) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 1013](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1013) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 1014](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1014) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1018) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1019](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1019) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1029](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1029) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1030) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1031](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1031) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1038](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1038) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1039](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1039) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1042) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1045](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1045) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1046) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1056](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1056) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1057) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1058](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1058) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1066](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1066) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1067) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1070](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1070) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1071](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1071) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1077](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1077) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1083](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1083) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1092](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1092) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1096) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1119) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1122) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1126) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1132) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1135) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1139) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1145) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1148) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1152) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1163) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1167) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1176) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1180) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1186) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1189) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1193) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1204) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1221) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1224) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1233) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1243) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1253) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1256) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) diff --git a/results/preliminary/annotated/EclipseCDTResults.md b/results/preliminary/annotated/EclipseCDTResults.md new file mode 100644 index 0000000..997e2a5 --- /dev/null +++ b/results/preliminary/annotated/EclipseCDTResults.md @@ -0,0 +1,1834 @@ +# Eclipse CDT + +Home: [Eclipse CDT](https://eclipse.org/cdt/) + +Version: 9.4.2 == [Oxygen.3](https://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/oxygen3rc3) + +Notes: + +* Only very few tests have been done at this time, but the page is created as a template + for others to move on and contribute test results +* See this [Mailing list posting](https://dev.eclipse.org/mhonarc/lists/cdt-dev/msg32773.html) for available refactorings +* **Do not** import the project generated by the cmake -G'Eclipse CDT4' generator on a sibling directory, as it + generates duplicate resources which breaks some refactorings (Bug: [Eclipse:532417](https://bugs.eclipse.org/bugs/show_bug.cgi?id=532417)). +** Instead, use **File > New > Makefile Project with Existing Code** in Eclipse CDT. +** Or use the new experimental CMake Preview (has to be installed separately from the CDT Repository) + with File > New > C/C++ Project and "CMake Empty" type. + See [Eclipse:532419](https://bugs.eclipse.org/bugs/show_bug.cgi?id=532419) for current status. + + + +Not supported by CDT 9.4.2: + +* ABD - Add Block Delimiter (But "Source > Surround With... Configurable Template" is there) +* AO - Add Override (Could be automated by external clang-tidy / clang-modernize) +* AP - Add Parameter - ER [Eclipse:352803](https://bugs.eclipse.org/bugs/show_bug.cgi?id=352803) +* CS - Change Signature - ER [Eclipse:352803](https://bugs.eclipse.org/bugs/show_bug.cgi?id=352803) +* CMS - Create Method Stub +* CMVD - CreateMultiVariableDeclaration +* EP - Extract Parameter +* FC - Flatten Conditional +* IM - Inline Macro +* IV - Inline Variable +* MMS - Make Method Static - ER [Eclipse:352803](https://bugs.eclipse.org/bugs/show_bug.cgi?id=352803) +* Pull Members Up +* Push Members Down +* RAW - Replace String Literal with Raw String Literal +* RAWU - Replace auto_ptr with unique_ptr +* RBD - Remove Block Delimiter +* RC - Reverse Conditional +* RIRF - Replace Iterative For with Range For +* RIT - Replace If with Ternary +* RP - Reorder Parameters - ER [Eclipse:352803](https://bugs.eclipse.org/bugs/show_bug.cgi?id=352803) +* RTI - Replace Ternary with If +* RTWA - Replace Type with auto +* RUP - Remove Unused Parameters +* RZNP - Replace NULL/0 With nullptr (external clang-tidy?) +* SB - Simplify Boolean Expression +* SID - Split Initialization from Declaration +* SMVD - Split Multi-Variable Declaration + + +
+ +## Create Overload +* CDT: Source > Implement Method... +* The C++11 "override" keyword is not applied (could be done by separate clang-tidy / clang-modernize) + +Case | Result | Location +---- | ------ | -------- +CO1 | Pass | [`CreateOverload.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L12) +CO2 | | [`CreateOverload.h`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L15) +CO3 | | [`CreateOverload.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L16) +CO4 | | [`CreateOverload.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L19) +CO5 | | [`CreateOverload.h`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L22) +CO6 | | [`CreateOverload.h`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L23) +CO7 | | [`CreateOverload.h`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L32) +CO8 | | [`CreateOverload.h`, line 35](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L35) +CO9 | | [`CreateOverload.h`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L38) +CO10 | | [`CreateOverload.h`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L39) +CO11 | | [`CreateOverload.h`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L42) +CO12 | | [`CreateOverload.h`, line 45](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L45) +CO13 | | [`CreateOverload.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L46) +CO14 | | [`CreateOverload.h`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L49) +CO15 | | [`CreateOverload.h`, line 54](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L54) +CO16 | | [`CreateOverload.h`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L55) +CO17 | | [`CreateOverload.h`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L60) +CO18 | | [`CreateOverload.h`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L65) +CO19 | | [`CreateOverload.h`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L66) +CO20 | | [`CreateOverload.h`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L71) +CO21 | | [`CreateOverload.h`, line 82](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L82) +CO22 | | [`CreateOverload.h`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L85) +CO23 | | [`CreateOverload.h`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L86) +CO24 | | [`CreateOverload.h`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L89) +CO25 | | [`CreateOverload.h`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L92) +CO26 | | [`CreateOverload.h`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L93) +CO27 | | [`CreateOverload.h`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L101) +CO28 | | [`CreateOverload.h`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L104) +CO29 | | [`CreateOverload.h`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L107) +CO30 | | [`CreateOverload.h`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L108) +CO31 | | [`CreateOverload.h`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L111) +CO32 | | [`CreateOverload.h`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L114) +CO33 | | [`CreateOverload.h`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L115) +CO34 | | [`CreateOverload.h`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L118) +CO35 | | [`CreateOverload.h`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L123) +CO36 | | [`CreateOverload.h`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L124) +CO37 | | [`CreateOverload.h`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L129) +CO38 | | [`CreateOverload.h`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L134) +CO39 | | [`CreateOverload.h`, line 135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L135) +CO40 | | [`CreateOverload.h`, line 140](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L140) +CO41 | | [`CreateOverload.h`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L145) +CO42 | | [`CreateOverload.h`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L150) +CO43 | | [`CreateOverload.h`, line 162](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L162) +CO44 | | [`CreateOverload.h`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L165) +CO45 | | [`CreateOverload.h`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L166) +CO46 | | [`CreateOverload.h`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L169) +CO47 | | [`CreateOverload.h`, line 172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L172) +CO48 | | [`CreateOverload.h`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L173) +CO49 | | [`CreateOverload.h`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L176) +CO50 | | [`CreateOverload.h`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L181) +CO51 | | [`CreateOverload.h`, line 182](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L182) +CO52 | | [`CreateOverload.h`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L187) +CO53 | | [`CreateOverload.h`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L192) +CO54 | | [`CreateOverload.h`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L193) +CO55 | | [`CreateOverload.h`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L198) +CO56 | | [`CreateOverload.h`, line 204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateOverload.h#L204) + +## Create Setter Method +* CDT: Source > Generate Getters and Setters... +* Bug: when choosing "Definition separate from declaration", the enclosing namespace + is not considered and a template<> declaration is missing on the definition. + +Case | Result | Location +---- | ------ | -------- +CSM1 | | [`CreateSetterMethod.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L16) +CSM2 | | [`CreateSetterMethod.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L19) +CSM3 | Pass | [`CreateSetterMethod.h`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L44) +CSM4 | | [`CreateSetterMethod.h`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L47) +CSM5 | | [`CreateSetterMethod.h`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L50) +CSM6 | | [`CreateSetterMethod.h`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L53) +CSM7 | | [`CreateSetterMethod.h`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L56) +CSM8 | | [`CreateSetterMethod.h`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L59) +CSM9 | | [`CreateSetterMethod.h`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L62) +CSM10 | | [`CreateSetterMethod.h`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L65) +CSM11 | | [`CreateSetterMethod.h`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L68) +CSM12 | | [`CreateSetterMethod.h`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L71) +CSM13 | | [`CreateSetterMethod.h`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L101) +CSM14 | | [`CreateSetterMethod.h`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L104) +CSM15 | | [`CreateSetterMethod.h`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L107) +CSM16 | | [`CreateSetterMethod.h`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L110) +CSM17 | | [`CreateSetterMethod.h`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L113) +CSM18 | | [`CreateSetterMethod.h`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L116) +CSM19 | | [`CreateSetterMethod.h`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L123) +CSM20 | | [`CreateSetterMethod.h`, line 126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L126) +CSM21 | | [`CreateSetterMethod.h`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L129) +CSM22 | | [`CreateSetterMethod.h`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L132) +CSM23 | | [`CreateSetterMethod.h`, line 135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L135) +CSM24 | (deprecated) | [`CreateSetterMethod.h`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L138) +CSM25 | | [`CreateSetterMethod.h`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L143) +CSM26 | | [`CreateSetterMethod.h`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L146) +CSM27 | | [`CreateSetterMethod.h`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L152) +CSM28 | | [`CreateSetterMethod.h`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L156) +CSM29 | | [`CreateSetterMethod.h`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L159) +CSM30 | | [`CreateSetterMethod.h`, line 162](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L162) +CSM31 | | [`CreateSetterMethod.h`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/CreateSetterMethod.h#L165) + +## Extract Constant +Case | Result | Location +---- | ------ | -------- +EC1 | | [`ExtractConstant.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L17) +EC2 | | [`ExtractConstant.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L18) +EC3 | | [`ExtractConstant.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L19) +EC4 | | [`ExtractConstant.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L20) +EC5 | | [`ExtractConstant.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L33) +EC6 | | [`ExtractConstant.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L38) +EC7 | | [`ExtractConstant.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L39) +EC8 | | [`ExtractConstant.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L40) +EC9 | | [`ExtractConstant.cpp`, line 41](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L41) +EC10 | Pass | [`ExtractConstant.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L94) +EC11 | | [`ExtractConstant.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L97) +EC12 | | [`ExtractConstant.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L100) +EC13 | | [`ExtractConstant.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractConstant.cpp#L105) + +## Extract Method +* CDT: Refactor > Extract Function... + +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EM1 | Pass | [`ExtractMethod.cpp`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L19) | [EM1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM1.txt) +EM2 | | [`ExtractMethod.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L26) | [EM2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM2.txt) +EM3 | | [`ExtractMethod.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L38) | [EM3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM3.txt) +EM4 | | [`ExtractMethod.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L58) | [EM4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM4.txt) +EM5 | | [`ExtractMethod.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L74) | [EM5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM5.txt) +EM6 | | [`ExtractMethod.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L75) | [EM6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM6.txt) +EM7 | | [`ExtractMethod.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L90) | [EM7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM7.txt) +EM8 | | [`ExtractMethod.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L106) | [EM8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM8.txt) +EM9 | | [`ExtractMethod.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L124) | [EM9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM9.txt) +EM10 | | [`ExtractMethod.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L134) | [EM10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM10.txt) +EM11 | | [`ExtractMethod.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L155) | [EM11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM11.txt) +EM12 | | [`ExtractMethod.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L170) | [EM12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM12.txt) +EM13 | | [`ExtractMethod.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L185) | [EM13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM13.txt) +EM14 | | [`ExtractMethod.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L201) | [EM14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM14.txt) +EM15 | | [`ExtractMethod.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L232) | [EM15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM15.txt) +EM16 | | [`ExtractMethod.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L241) | [EM16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM16.txt) +EM17 | | [`ExtractMethod.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L261) | [EM17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM17.txt) +EM18 | | [`ExtractMethod.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L277) | [EM18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM18.txt) +EM19 | | [`ExtractMethod.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L292) | [EM19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM19.txt) +EM20 | | [`ExtractMethod.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L308) | [EM20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM20.txt) +EM21 | | [`ExtractMethod.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractMethod.cpp#L326) | [EM21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EM21.txt) + +## Extract Function +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EXF1 | Pass | [`ExtractFunction.cpp`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L11) | [EXF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF1.txt) +EXF2 | Pass | [`ExtractFunction.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L14) | [EXF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF2.txt) +EXF3 | | [`ExtractFunction.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L17) | [EXF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF3.txt) +EXF4 | | [`ExtractFunction.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L20) | [EXF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF4.txt) +EXF5 | | [`ExtractFunction.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L23) | [EXF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF5.txt) +EXF6 | | [`ExtractFunction.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L26) | [EXF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF6.txt) +EXF7 | | [`ExtractFunction.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L30) | [EXF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF7.txt) +EXF8 | | [`ExtractFunction.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L33) | [EXF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF8.txt) +EXF9 | | [`ExtractFunction.cpp`, line 36](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L36) | [EXF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF9.txt) +EXF10 | | [`ExtractFunction.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L39) | [EXF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF10.txt) +EXF11 | | [`ExtractFunction.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L42) | [EXF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF11.txt) +EXF12 | | [`ExtractFunction.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L60) | [EXF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF12.txt) +EXF13 | | [`ExtractFunction.cpp`, line 76](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L76) | [EXF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF13.txt) +EXF14 | | [`ExtractFunction.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L113) | [EXF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF14.txt) +EXF15 | | [`ExtractFunction.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L129) | [EXF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF15.txt) +EXF16 | | [`ExtractFunction.cpp`, line 144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L144) | [EXF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF16.txt) +EXF17 | | [`ExtractFunction.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L160) | [EXF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF17.txt) +EXF18 | | [`ExtractFunction.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction.cpp#L186) | [EXF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF18.txt) +EXF19 | | [`ExtractFunction2.c`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractFunction2.c#L9) | [EXF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXF19.txt) + +## Extract Variable +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +EXV1 | Pass | [`ExtractVariable.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L32) | [EXV1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV1.txt) +EXV2 | | [`ExtractVariable.cpp`, line 39](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L39) | [EXV2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV2.txt) +EXV3 | | [`ExtractVariable.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L50) | [EXV3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV3.txt) +EXV4 | | [`ExtractVariable.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L59) | [EXV4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV4.txt) +EXV5 | | [`ExtractVariable.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L68) | [EXV5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV5.txt) +EXV6 | | [`ExtractVariable.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/ExtractVariable.cpp#L86) | [EXV6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/EXV6.txt) + +## Move Implementation to Source File +* CDT: Refactor > Toggle Function + +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +MISF1 | Pass (Creates local namespace {} declaration in .cpp instead of qualified function name) | [`MoveImplementationToSourceFile.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L6) | [MISF1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF1.txt) +MISF2 | | [`MoveImplementationToSourceFile.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L14) | [MISF2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF2.txt) +MISF3 | | [`MoveImplementationToSourceFile.h`, line 19](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L19) | [MISF3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF3.txt) +MISF4 | | [`MoveImplementationToSourceFile.h`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L24) | [MISF4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF4.txt) +MISF5 | | [`MoveImplementationToSourceFile.h`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L30) | [MISF5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF5.txt) +MISF6 | | [`MoveImplementationToSourceFile.h`, line 46](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L46) | [MISF6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF6.txt) +MISF7 | | [`MoveImplementationToSourceFile.h`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L56) | [MISF7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF7.txt) +MISF8 | | [`MoveImplementationToSourceFile.h`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L61) | [MISF8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF8.txt) +MISF9 | | [`MoveImplementationToSourceFile.h`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L64) | [MISF9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF9.txt) +MISF10 | | [`MoveImplementationToSourceFile.h`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L69) | [MISF10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF10.txt) +MISF11 | | [`MoveImplementationToSourceFile.h`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L72) | [MISF11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF11.txt) +MISF12 | | [`MoveImplementationToSourceFile.h`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L79) | [MISF12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF12.txt) +MISF13 | | [`MoveImplementationToSourceFile.h`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L84) | [MISF13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF13.txt) +MISF14 | | [`MoveImplementationToSourceFile.h`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L89) | [MISF14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF14.txt) +MISF15 | | [`MoveImplementationToSourceFile.h`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L98) | [MISF15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF15.txt) +MISF16 | | [`MoveImplementationToSourceFile.h`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L104) | [MISF16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF16.txt) +MISF17 | | [`MoveImplementationToSourceFile.h`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L117) | [MISF17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF17.txt) +MISF18 | | [`MoveImplementationToSourceFile.h`, line 122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L122) | [MISF18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF18.txt) +MISF19 | | [`MoveImplementationToSourceFile.h`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L125) | [MISF19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF19.txt) +MISF20 | | [`MoveImplementationToSourceFile.h`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L130) | [MISF20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF20.txt) +MISF21 | | [`MoveImplementationToSourceFile.h`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L133) | [MISF21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF21.txt) +MISF22 | | [`MoveImplementationToSourceFile.h`, line 140](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L140) | [MISF22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF22.txt) +MISF23 | | [`MoveImplementationToSourceFile.h`, line 145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L145) | [MISF23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF23.txt) +MISF24 | | [`MoveImplementationToSourceFile.h`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L150) | [MISF24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF24.txt) +MISF25 | | [`MoveImplementationToSourceFile.h`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L159) | [MISF25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF25.txt) +MISF26 | | [`MoveImplementationToSourceFile.h`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveImplementationToSourceFile.h#L165) | [MISF26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/MISF26.txt) + +## Move Method +Case | Result | Location +---- | ------ | -------- +MM1 | Pass | [`MoveMethod.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L9) +MM2 | | [`MoveMethod.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L16) +MM3 | | [`MoveMethod.h`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L22) +MM4 | | [`MoveMethod.h`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L29) +MM5 | | [`MoveMethod.h`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L43) +MM6 | | [`MoveMethod.h`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L52) +MM7 | | [`MoveMethod.h`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L59) +MM8 | | [`MoveMethod.h`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L66) +MM9 | | [`MoveMethod.h`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L72) +MM10 | | [`MoveMethod.h`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L87) +MM11 | | [`MoveMethod.h`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L95) +MM12 | | [`MoveMethod.h`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L110) +MM13 | | [`MoveMethod.h`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L115) +MM14 | | [`MoveMethod.h`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L120) +MM15 | | [`MoveMethod.h`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L125) +MM16 | | [`MoveMethod.h`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L130) +MM17 | | [`MoveMethod.h`, line 141](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L141) +MM18 | | [`MoveMethod.h`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L146) +MM19 | | [`MoveMethod.h`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L151) +MM20 | | [`MoveMethod.h`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.h#L185) +MM21 | | [`MoveMethod.cpp`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L7) +MM22 | | [`MoveMethod.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L15) +MM23 | | [`MoveMethod.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L22) +MM24 | | [`MoveMethod.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L27) +MM25 | | [`MoveMethod.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L32) +MM26 | | [`MoveMethod.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L38) +MM27 | | [`MoveMethod.cpp`, line 44](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L44) +MM28 | | [`MoveMethod.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L52) +MM29 | | [`MoveMethod.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L57) +MM30 | | [`MoveMethod.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L62) +MM31 | | [`MoveMethod.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L67) +MM32 | | [`MoveMethod.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L72) +MM33 | | [`MoveMethod.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L77) +MM34 | | [`MoveMethod.cpp`, line 82](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L82) +MM35 | | [`MoveMethod.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L87) +MM36 | | [`MoveMethod.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/MoveMethod.cpp#L92) + +## Remove Unused Includes +* CDT: Source > Organize Includes + +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +RUI1 | Pass | [`RemoveUnusedIncludes.cpp`, line 1](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RemoveUnusedIncludes.cpp#L1) | [RUI1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/RUI1.txt) + +## Rename +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +R1 | | [`Rename.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L12) | [R1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1.txt) +R2 | | [`Rename.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L15) | [R2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R2.txt) +R3 | | [`Rename.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L16) | [R3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R3.txt) +R4 | | [`Rename.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L17) | [R4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R4.txt) +R5 | Pass | [`Rename.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L33) | [R5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R5.txt) +R6 | Failure (not available) [Eclipse:319506](https://bugs.eclipse.org/bugs/show_bug.cgi?id=319506) - patch provided, workaround exists | [`Rename.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L37) | [R6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R6.txt) +R7 | Failure (not available) [Eclipse:319506](https://bugs.eclipse.org/bugs/show_bug.cgi?id=319506) - patch provided, workaround exists | [`Rename.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L42) | [R7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R7.txt) +R8 | Pass | [`Rename.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L47) | [R8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R8.txt) +R9 | Pass | [`Rename.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L48) | [R9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R9.txt) +R10 | Pass | [`Rename.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L51) | [R10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R10.txt) +R11 | Pass | [`Rename.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L59) | [R11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R11.txt) +R12 | Pass | [`Rename.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L62) | [R12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R12.txt) +R13 | Pass | [`Rename.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L64) | [R13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R13.txt) +R14 | Pass | [`Rename.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L67) | [R14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R14.txt) +R15 | Pass | [`Rename.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L75) | [R15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R15.txt) +R16 | Pass | [`Rename.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L85) | [R16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R16.txt) +R17 | | [`Rename.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L93) | [R17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R17.txt) +R18 | | [`Rename.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L96) | [R18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R18.txt) +R19 | | [`Rename.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L127) | [R19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R19.txt) +R20 | | [`Rename.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L152) | [R20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R20.txt) +R21 | | [`Rename.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L153) | [R21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R21.txt) +R22 | | [`Rename.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L154) | [R22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R22.txt) +R23 | | [`Rename.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L157) | [R23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R23.txt) +R24 | | [`Rename.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L158) | [R24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R24.txt) +R25 | | [`Rename.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L159) | [R25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R25.txt) +R26 | | [`Rename.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L161) | [R26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R26.txt) +R27 | | [`Rename.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L164) | [R27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R27.txt) +R28 | | [`Rename.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L165) | [R28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R28.txt) +R29 | | [`Rename.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L166) | [R29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R29.txt) +R30 | | [`Rename.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L169) | [R30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R30.txt) +R31 | | [`Rename.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L173) | [R31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R31.txt) +R32 | | [`Rename.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L176) | [R32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R32.txt) +R33 | | [`Rename.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L185) | [R33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R33.txt) +R34 | | [`Rename.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L195) | [R34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R34.txt) +R35 | | [`Rename.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L208) | [R35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R35.txt) +R36 | | [`Rename.cpp`, line 218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L218) | [R36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R36.txt) +R37 | | [`Rename.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L224) | [R37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R37.txt) +R38 | | [`Rename.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L226) | [R38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R38.txt) +R39 | | [`Rename.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L228) | [R39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R39.txt) +R40 | | [`Rename.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L233) | [R40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R40.txt) +R41 | | [`Rename.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L236) | [R41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R41.txt) +R42 | | [`Rename.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L238) | [R42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R42.txt) +R43 | | [`Rename.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L240) | [R43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R43.txt) +R44 | | [`Rename.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L245) | [R44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R44.txt) +R45 | | [`Rename.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L248) | [R45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R45.txt) +R46 | | [`Rename.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L253) | [R46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R46.txt) +R47 | | [`Rename.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L255) | [R47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R47.txt) +R48 | | [`Rename.cpp`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L256) | [R48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R48.txt) +R49 | | [`Rename.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L257) | [R49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R49.txt) +R50 | | [`Rename.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L258) | [R50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R50.txt) +R51 | | [`Rename.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L259) | [R51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R51.txt) +R52 | | [`Rename.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L260) | [R52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R52.txt) +R53 | | [`Rename.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L263) | [R53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R53.txt) +R54 | | [`Rename.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L264) | [R54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R54.txt) +R55 | | [`Rename.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L270) | [R55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R55.txt) +R56 | | [`Rename.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L272) | [R56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R56.txt) +R57 | | [`Rename.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L274) | [R57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R57.txt) +R58 | | [`Rename.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L276) | [R58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R58.txt) +R59 | | [`Rename.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L280) | [R59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R59.txt) +R60 | | [`Rename.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L283) | [R60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R60.txt) +R61 | | [`Rename.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L286) | [R61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R61.txt) +R62 | | [`Rename.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L297) | [R62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R62.txt) +R63 | | [`Rename.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L298) | [R63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R63.txt) +R64 | | [`Rename.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L299) | [R64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R64.txt) +R65 | | [`Rename.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L305) | [R65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R65.txt) +R66 | | [`Rename.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L307) | [R66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R66.txt) +R67 | | [`Rename.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L308) | [R67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R67.txt) +R68 | | [`Rename.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L314) | [R68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R68.txt) +R69 | | [`Rename.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L315) | [R69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R69.txt) +R70 | | [`Rename.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L317) | [R70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R70.txt) +R71 | | [`Rename.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L323) | [R71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R71.txt) +R72 | | [`Rename.cpp`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L324) | [R72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R72.txt) +R73 | | [`Rename.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L326) | [R73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R73.txt) +R74 | | [`Rename.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L327) | [R74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R74.txt) +R75 | | [`Rename.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L328) | [R75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R75.txt) +R76 | | [`Rename.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L334) | [R76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R76.txt) +R77 | | [`Rename.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L335) | [R77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R77.txt) +R78 | | [`Rename.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L336) | [R78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R78.txt) +R79 | | [`Rename.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L338) | [R79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R79.txt) +R80 | | [`Rename.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L339) | [R80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R80.txt) +R81 | | [`Rename.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L345) | [R81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R81.txt) +R82 | | [`Rename.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L346) | [R82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R82.txt) +R83 | | [`Rename.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L347) | [R83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R83.txt) +R84 | | [`Rename.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L349) | [R84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R84.txt) +R85 | | [`Rename.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L351) | [R85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R85.txt) +R86 | | [`Rename.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L365) | [R86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R86.txt) +R87 | | [`Rename.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L369) | [R87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R87.txt) +R88 | | [`Rename.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L370) | [R88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R88.txt) +R89 | | [`Rename.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L374) | [R89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R89.txt) +R90 | | [`Rename.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L378) | [R90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R90.txt) +R91 | | [`Rename.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L381) | [R91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R91.txt) +R92 | | [`Rename.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L382) | [R92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R92.txt) +R93 | | [`Rename.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L384) | [R93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R93.txt) +R94 | | [`Rename.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L385) | [R94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R94.txt) +R95 | | [`Rename.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L386) | [R95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R95.txt) +R96 | | [`Rename.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L389) | [R96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R96.txt) +R97 | | [`Rename.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L390) | [R97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R97.txt) +R98 | | [`Rename.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L391) | [R98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R98.txt) +R99 | | [`Rename.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L393) | [R99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R99.txt) +R100 | | [`Rename.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L395) | [R100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R100.txt) +R101 | | [`Rename.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L397) | [R101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R101.txt) +R102 | | [`Rename.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L398) | [R102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R102.txt) +R103 | | [`Rename.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L399) | [R103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R103.txt) +R104 | | [`Rename.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L401) | [R104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R104.txt) +R105 | | [`Rename.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L403) | [R105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R105.txt) +R106 | | [`Rename.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L404) | [R106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R106.txt) +R107 | | [`Rename.cpp`, line 410](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L410) | [R107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R107.txt) +R108 | | [`Rename.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L411) | [R108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R108.txt) +R109 | | [`Rename.cpp`, line 412](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L412) | [R109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R109.txt) +R110 | | [`Rename.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L416) | [R110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R110.txt) +R111 | | [`Rename.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L418) | [R111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R111.txt) +R112 | | [`Rename.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L422) | [R112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R112.txt) +R113 | | [`Rename.cpp`, line 426](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L426) | [R113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R113.txt) +R114 | | [`Rename.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L428) | [R114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R114.txt) +R115 | | [`Rename.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L433) | [R115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R115.txt) +R116 | | [`Rename.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L437) | [R116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R116.txt) +R117 | | [`Rename.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L439) | [R117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R117.txt) +R118 | | [`Rename.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L445) | [R118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R118.txt) +R119 | | [`Rename.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L446) | [R119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R119.txt) +R120 | | [`Rename.cpp`, line 448](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L448) | [R120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R120.txt) +R121 | | [`Rename.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L449) | [R121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R121.txt) +R122 | | [`Rename.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L451) | [R122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R122.txt) +R123 | | [`Rename.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L452) | [R123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R123.txt) +R124 | | [`Rename.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L454) | [R124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R124.txt) +R125 | | [`Rename.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L455) | [R125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R125.txt) +R126 | | [`Rename.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L459) | [R126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R126.txt) +R127 | | [`Rename.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L461) | [R127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R127.txt) +R128 | | [`Rename.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L465) | [R128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R128.txt) +R129 | | [`Rename.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L466) | [R129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R129.txt) +R130 | | [`Rename.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L468) | [R130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R130.txt) +R131 | | [`Rename.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L469) | [R131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R131.txt) +R132 | | [`Rename.cpp`, line 470](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L470) | [R132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R132.txt) +R133 | | [`Rename.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L475) | [R133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R133.txt) +R134 | | [`Rename.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L479) | [R134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R134.txt) +R135 | | [`Rename.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L481) | [R135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R135.txt) +R136 | | [`Rename.cpp`, line 487](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L487) | [R136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R136.txt) +R137 | | [`Rename.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L488) | [R137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R137.txt) +R138 | | [`Rename.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L490) | [R138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R138.txt) +R139 | | [`Rename.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L491) | [R139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R139.txt) +R140 | | [`Rename.cpp`, line 493](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L493) | [R140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R140.txt) +R141 | | [`Rename.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L494) | [R141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R141.txt) +R142 | | [`Rename.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L496) | [R142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R142.txt) +R143 | | [`Rename.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L497) | [R143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R143.txt) +R144 | | [`Rename.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L503) | [R144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R144.txt) +R145 | | [`Rename.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L504) | [R145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R145.txt) +R146 | (deprecated) | [`Rename.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L506) | [R146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R146.txt) +R147 | | [`Rename.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L507) | [R147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R147.txt) +R148 | | [`Rename.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L508) | [R148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R148.txt) +R149 | | [`Rename.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L509) | [R149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R149.txt) +R150 | | [`Rename.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L510) | [R150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R150.txt) +R151 | | [`Rename.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L511) | [R151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R151.txt) +R152 | | [`Rename.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L512) | [R152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R152.txt) +R153 | | [`Rename.cpp`, line 513](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L513) | [R153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R153.txt) +R154 | | [`Rename.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L516) | [R154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R154.txt) +R155 | | [`Rename.cpp`, line 518](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L518) | [R155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R155.txt) +R156 | | [`Rename.cpp`, line 519](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L519) | [R156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R156.txt) +R157 | | [`Rename.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L523) | [R157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R157.txt) +R158 | | [`Rename.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L524) | [R158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R158.txt) +R159 | | [`Rename.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L526) | [R159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R159.txt) +R160 | | [`Rename.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L527) | [R160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R160.txt) +R161 | | [`Rename.cpp`, line 528](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L528) | [R161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R161.txt) +R162 | | [`Rename.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L529) | [R162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R162.txt) +R163 | | [`Rename.cpp`, line 530](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L530) | [R163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R163.txt) +R164 | | [`Rename.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L531) | [R164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R164.txt) +R165 | | [`Rename.cpp`, line 532](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L532) | [R165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R165.txt) +R166 | | [`Rename.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L535) | [R166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R166.txt) +R167 | | [`Rename.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L537) | [R167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R167.txt) +R168 | | [`Rename.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L538) | [R168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R168.txt) +R169 | | [`Rename.cpp`, line 542](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L542) | [R169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R169.txt) +R170 | | [`Rename.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L549) | [R170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R170.txt) +R171 | | [`Rename.cpp`, line 551](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L551) | [R171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R171.txt) +R172 | | [`Rename.cpp`, line 553](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L553) | [R172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R172.txt) +R173 | | [`Rename.cpp`, line 556](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L556) | [R173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R173.txt) +R174 | | [`Rename.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L558) | [R174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R174.txt) +R175 | | [`Rename.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L560) | [R175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R175.txt) +R176 | | [`Rename.cpp`, line 564](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L564) | [R176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R176.txt) +R177 | | [`Rename.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L567) | [R177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R177.txt) +R178 | | [`Rename.cpp`, line 571](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L571) | [R178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R178.txt) +R179 | | [`Rename.cpp`, line 572](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L572) | [R179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R179.txt) +R180 | | [`Rename.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L575) | [R180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R180.txt) +R181 | | [`Rename.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L576) | [R181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R181.txt) +R182 | | [`Rename.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L583) | [R182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R182.txt) +R183 | | [`Rename.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L584) | [R183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R183.txt) +R184 | | [`Rename.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L585) | [R184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R184.txt) +R185 | | [`Rename.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L587) | [R185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R185.txt) +R186 | | [`Rename.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L588) | [R186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R186.txt) +R187 | | [`Rename.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L589) | [R187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R187.txt) +R188 | | [`Rename.cpp`, line 591](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L591) | [R188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R188.txt) +R189 | | [`Rename.cpp`, line 593](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L593) | [R189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R189.txt) +R190 | | [`Rename.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L609) | [R190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R190.txt) +R191 | | [`Rename.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L617) | [R191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R191.txt) +R192 | | [`Rename.cpp`, line 618](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L618) | [R192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R192.txt) +R193 | | [`Rename.cpp`, line 622](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L622) | [R193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R193.txt) +R194 | | [`Rename.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L624) | [R194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R194.txt) +R195 | | [`Rename.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L626) | [R195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R195.txt) +R196 | | [`Rename.cpp`, line 635](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L635) | [R196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R196.txt) +R197 | | [`Rename.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L636) | [R197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R197.txt) +R198 | | [`Rename.cpp`, line 637](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L637) | [R198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R198.txt) +R199 | | [`Rename.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L639) | [R199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R199.txt) +R200 | | [`Rename.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L640) | [R200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R200.txt) +R201 | | [`Rename.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L641) | [R201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R201.txt) +R202 | | [`Rename.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L642) | [R202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R202.txt) +R203 | | [`Rename.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L643) | [R203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R203.txt) +R204 | | [`Rename.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L644) | [R204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R204.txt) +R205 | | [`Rename.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L645) | [R205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R205.txt) +R206 | | [`Rename.cpp`, line 652](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L652) | [R206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R206.txt) +R207 | | [`Rename.cpp`, line 653](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L653) | [R207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R207.txt) +R208 | | [`Rename.cpp`, line 655](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L655) | [R208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R208.txt) +R209 | | [`Rename.cpp`, line 662](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L662) | [R209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R209.txt) +R210 | | [`Rename.cpp`, line 674](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L674) | [R210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R210.txt) +R211 | | [`Rename.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L681) | [R211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R211.txt) +R212 | | [`Rename.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L682) | [R212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R212.txt) +R213 | | [`Rename.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L683) | [R213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R213.txt) +R214 | | [`Rename.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L685) | [R214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R214.txt) +R215 | | [`Rename.cpp`, line 686](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L686) | [R215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R215.txt) +R216 | | [`Rename.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L687) | [R216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R216.txt) +R217 | | [`Rename.cpp`, line 690](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L690) | [R217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R217.txt) +R218 | | [`Rename.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L691) | [R218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R218.txt) +R219 | | [`Rename.cpp`, line 693](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L693) | [R219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R219.txt) +R220 | | [`Rename.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L694) | [R220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R220.txt) +R221 | | [`Rename.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L697) | [R221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R221.txt) +R222 | | [`Rename.cpp`, line 699](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L699) | [R222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R222.txt) +R223 | | [`Rename.cpp`, line 700](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L700) | [R223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R223.txt) +R224 | | [`Rename.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L702) | [R224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R224.txt) +R225 | | [`Rename.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L705) | [R225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R225.txt) +R226 | | [`Rename.cpp`, line 707](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L707) | [R226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R226.txt) +R227 | | [`Rename.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L708) | [R227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R227.txt) +R228 | | [`Rename.cpp`, line 717](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L717) | [R228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R228.txt) +R229 | | [`Rename.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L722) | [R229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R229.txt) +R230 | | [`Rename.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L728) | [R230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R230.txt) +R231 | | [`Rename.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L730) | [R231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R231.txt) +R232 | | [`Rename.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L732) | [R232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R232.txt) +R233 | | [`Rename.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L734) | [R233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R233.txt) +R234 | | [`Rename.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L736) | [R234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R234.txt) +R235 | | [`Rename.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L738) | [R235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R235.txt) +R236 | | [`Rename.cpp`, line 740](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L740) | [R236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R236.txt) +R237 | (deprecated) | [`Rename.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L742) | [R237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R237.txt) +R238 | (deprecated) | [`Rename.cpp`, line 743](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L743) | [R238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R238.txt) +R239 | | [`Rename.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L744) | [R239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R239.txt) +R240 | | [`Rename.cpp`, line 746](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L746) | [R240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R240.txt) +R241 | | [`Rename.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L748) | [R241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R241.txt) +R242 | | [`Rename.cpp`, line 750](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L750) | [R242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R242.txt) +R243 | | [`Rename.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L752) | [R243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R243.txt) +R244 | | [`RenameCpp11.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L7) | [R244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R244.txt) +R245 | | [`RenameCpp11.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L9) | [R245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R245.txt) +R246 | | [`RenameCpp11.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L12) | [R246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R246.txt) +R247 | | [`RenameCpp11.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L16) | [R247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R247.txt) +R248 | | [`RenameCpp11.h`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L23) | [R248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R248.txt) +R249 | | [`RenameCpp11.h`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L25) | [R249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R249.txt) +R250 | | [`RenameCpp11.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L14) | [R250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R250.txt) +R251 | | [`RenameCpp11.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L16) | [R251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R251.txt) +R252 | | [`RenameCpp11.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L18) | [R252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R252.txt) +R253 | | [`RenameCpp11.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L20) | [R253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R253.txt) +R254 | | [`RenameCpp11.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L23) | [R254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R254.txt) +R255 | | [`RenameCpp11.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L25) | [R255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R255.txt) +R256 | | [`RenameCpp11.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L28) | [R256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R256.txt) +R257 | | [`RenameCpp11.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L33) | [R257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R257.txt) +R258 | | [`RenameCpp11.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L38) | [R258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R258.txt) +R259 | | [`RenameCpp11.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L40) | [R259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R259.txt) +R260 | | [`RenameCpp11.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L43) | [R260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R260.txt) +R261 | | [`RenameCpp11.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L49) | [R261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R261.txt) +R262 | | [`RenameCpp11.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L51) | [R262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R262.txt) +R263 | | [`RenameCpp11.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L55) | [R263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R263.txt) +R264 | | [`RenameCpp11.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L57) | [R264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R264.txt) +R265 | | [`RenameCpp11.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L63) | [R265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R265.txt) +R266 | | [`RenameCpp11.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L69) | [R266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R266.txt) +R267 | | [`RenameCpp11.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L75) | [R267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R267.txt) +R268 | | [`RenameCpp11.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L81) | [R268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R268.txt) +R269 | | [`RenameCpp11.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L87) | [R269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R269.txt) +R270 | | [`RenameCpp11.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L89) | [R270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R270.txt) +R271 | | [`RenameCpp11.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L95) | [R271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R271.txt) +R272 | | [`RenameCpp11.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L98) | [R272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R272.txt) +R273 | | [`RenameCpp11.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L100) | [R273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R273.txt) +R274 | | [`RenameCpp11.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L101) | [R274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R274.txt) +R275 | | [`RenameCpp11.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L103) | [R275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R275.txt) +R276 | | [`RenameCpp11.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L104) | [R276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R276.txt) +R277 | | [`RenameCpp11.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L106) | [R277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R277.txt) +R278 | | [`RenameCpp11.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L108) | [R278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R278.txt) +R279 | | [`RenameCpp11.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L109) | [R279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R279.txt) +R280 | | [`RenameCpp11.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L111) | [R280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R280.txt) +R281 | | [`RenameCpp11.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L112) | [R281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R281.txt) +R282 | | [`RenameCpp11.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L143) | [R282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R282.txt) +R283 | | [`RenameCpp11.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L146) | [R283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R283.txt) +R284 | | [`RenameCpp11.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L148) | [R284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R284.txt) +R285 | | [`RenameCpp11.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L149) | [R285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R285.txt) +R286 | | [`RenameCpp11.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L151) | [R286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R286.txt) +R287 | | [`RenameCpp11.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L152) | [R287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R287.txt) +R288 | | [`RenameCpp11.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L154) | [R288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R288.txt) +R289 | | [`RenameCpp11.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L156) | [R289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R289.txt) +R290 | | [`RenameCpp11.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L157) | [R290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R290.txt) +R291 | | [`RenameCpp11.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L159) | [R291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R291.txt) +R292 | | [`RenameCpp11.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L160) | [R292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R292.txt) +R293 | | [`RenameCpp11.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L167) | [R293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R293.txt) +R294 | | [`RenameCpp11.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L173) | [R294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R294.txt) +R295 | | [`RenameCpp11.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L175) | [R295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R295.txt) +R296 | | [`RenameCpp11.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L185) | [R296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R296.txt) +R297 | | [`RenameCpp11.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L186) | [R297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R297.txt) +R298 | | [`RenameCpp11.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L188) | [R298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R298.txt) +R299 | | [`RenameCpp11.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L189) | [R299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R299.txt) +R300 | | [`RenameCpp11.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L190) | [R300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R300.txt) +R301 | | [`RenameCpp11.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L191) | [R301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R301.txt) +R302 | | [`RenameCpp11.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L194) | [R302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R302.txt) +R303 | | [`RenameCpp11.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L196) | [R303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R303.txt) +R304 | | [`RenameCpp11.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L197) | [R304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R304.txt) +R305 | | [`RenameCpp11.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L200) | [R305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R305.txt) +R306 | | [`RenameCpp11.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L215) | [R306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R306.txt) +R307 | | [`RenameCpp11.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L217) | [R307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R307.txt) +R308 | | [`RenameCpp11.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L221) | [R308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R308.txt) +R309 | | [`RenameCpp11.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L222) | [R309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R309.txt) +R310 | | [`RenameCpp11.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L223) | [R310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R310.txt) +R311 | | [`RenameCpp11.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L227) | [R311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R311.txt) +R312 | | [`RenameCpp11.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L243) | [R312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R312.txt) +R313 | | [`RenameCpp11.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L251) | [R313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R313.txt) +R314 | | [`RenameCpp11.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L253) | [R314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R314.txt) +R315 | | [`RenameCpp11.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L264) | [R315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R315.txt) +R316 | | [`RenameCpp11.cpp`, line 266](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L266) | [R316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R316.txt) +R317 | | [`RenameCpp11.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L270) | [R317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R317.txt) +R318 | | [`RenameCpp11.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L280) | [R318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R318.txt) +R319 | | [`RenameCpp11.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L281) | [R319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R319.txt) +R320 | | [`RenameCpp11.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L294) | [R320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R320.txt) +R321 | | [`RenameCpp11.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L295) | [R321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R321.txt) +R322 | | [`RenameCpp11.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L346) | [R322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R322.txt) +R323 | | [`RenameCpp11.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L347) | [R323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R323.txt) +R324 | | [`RenameCpp11.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L350) | [R324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R324.txt) +R325 | | [`RenameCpp11.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L354) | [R325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R325.txt) +R326 | | [`RenameCpp11.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L355) | [R326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R326.txt) +R327 | | [`RenameCpp11.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L358) | [R327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R327.txt) +R328 | | [`RenameCpp11.cpp`, line 362](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L362) | [R328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R328.txt) +R329 | | [`RenameCpp11.cpp`, line 363](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L363) | [R329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R329.txt) +R330 | | [`RenameCpp11.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L366) | [R330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R330.txt) +R331 | | [`RenameCpp11.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L370) | [R331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R331.txt) +R332 | | [`RenameCpp11.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L371) | [R332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R332.txt) +R333 | | [`RenameCpp11.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L374) | [R333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R333.txt) +R334 | | [`RenameCpp11.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L378) | [R334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R334.txt) +R335 | | [`RenameCpp11.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L379) | [R335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R335.txt) +R336 | | [`RenameCpp11.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L382) | [R336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R336.txt) +R337 | | [`RenameCpp11.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L386) | [R337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R337.txt) +R338 | | [`RenameCpp11.cpp`, line 387](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L387) | [R338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R338.txt) +R339 | | [`RenameCpp11.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L390) | [R339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R339.txt) +R340 | | [`RenameCpp11.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L394) | [R340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R340.txt) +R341 | | [`RenameCpp11.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L395) | [R341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R341.txt) +R342 | | [`RenameCpp11.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L396) | [R342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R342.txt) +R343 | | [`RenameCpp11.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L399) | [R343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R343.txt) +R344 | | [`RenameCpp11.cpp`, line 400](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L400) | [R344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R344.txt) +R345 | | [`RenameCpp11.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L413) | [R345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R345.txt) +R346 | | [`RenameCpp11.cpp`, line 414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L414) | [R346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R346.txt) +R347 | | [`RenameCpp11.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L415) | [R347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R347.txt) +R348 | | [`RenameCpp11.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L418) | [R348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R348.txt) +R349 | | [`RenameCpp11.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L419) | [R349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R349.txt) +R350 | | [`RenameCpp11.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L423) | [R350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R350.txt) +R351 | | [`RenameCpp11.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L424) | [R351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R351.txt) +R352 | | [`RenameCpp11.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L425) | [R352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R352.txt) +R353 | | [`RenameCpp11.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L428) | [R353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R353.txt) +R354 | | [`RenameCpp11.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L429) | [R354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R354.txt) +R355 | | [`RenameCpp11.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L433) | [R355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R355.txt) +R356 | | [`RenameCpp11.cpp`, line 434](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L434) | [R356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R356.txt) +R357 | | [`RenameCpp11.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L435) | [R357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R357.txt) +R358 | | [`RenameCpp11.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L438) | [R358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R358.txt) +R359 | | [`RenameCpp11.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L439) | [R359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R359.txt) +R360 | | [`RenameCpp11.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L445) | [R360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R360.txt) +R361 | | [`RenameCpp11.cpp`, line 447](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L447) | [R361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R361.txt) +R362 | | [`RenameCpp11.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L449) | [R362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R362.txt) +R363 | | [`RenameCpp11.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L451) | [R363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R363.txt) +R364 | | [`RenameCpp11.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L453) | [R364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R364.txt) +R365 | | [`RenameCpp11.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L455) | [R365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R365.txt) +R366 | | [`RenameCpp11.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L457) | [R366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R366.txt) +R367 | | [`RenameCpp11.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L459) | [R367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R367.txt) +R368 | | [`RenameCpp11.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L461) | [R368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R368.txt) +R369 | | [`RenameCpp11.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L463) | [R369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R369.txt) +R370 | | [`RenameCpp11.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L465) | [R370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R370.txt) +R371 | | [`RenameCpp11.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L467) | [R371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R371.txt) +R372 | | [`RenameCpp11.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L469) | [R372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R372.txt) +R373 | | [`RenameCpp11.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L473) | [R373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R373.txt) +R374 | | [`RenameCpp11.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L475) | [R374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R374.txt) +R375 | | [`RenameCpp11.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L476) | [R375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R375.txt) +R376 | | [`RenameCpp11.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L481) | [R376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R376.txt) +R377 | | [`RenameCpp11.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L483) | [R377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R377.txt) +R378 | | [`RenameCpp11.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L489) | [R378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R378.txt) +R379 | | [`RenameCpp11.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L492) | [R379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R379.txt) +R380 | | [`RenameCpp11.cpp`, line 499](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L499) | [R380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R380.txt) +R381 | | [`RenameCpp11.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L504) | [R381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R381.txt) +R382 | | [`RenameCpp11.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L505) | [R382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R382.txt) +R383 | | [`RenameCpp11.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L506) | [R383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R383.txt) +R384 | | [`RenameCpp11.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L507) | [R384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R384.txt) +R385 | | [`RenameCpp11.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L509) | [R385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R385.txt) +R386 | | [`RenameCpp11.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L516) | [R386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R386.txt) +R387 | | [`RenameCpp11.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L520) | [R387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R387.txt) +R388 | | [`RenameCpp11.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L522) | [R388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R388.txt) +R389 | | [`RenameCpp11.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L523) | [R389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R389.txt) +R390 | | [`RenameCpp11.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L527) | [R390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R390.txt) +R391 | | [`RenameCpp11.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L529) | [R391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R391.txt) +R392 | | [`RenameCpp11.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L533) | [R392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R392.txt) +R393 | | [`RenameCpp11.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L537) | [R393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R393.txt) +R394 | | [`RenameCpp11.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L538) | [R394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R394.txt) +R395 | | [`RenameCpp11.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L539) | [R395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R395.txt) +R396 | | [`RenameCpp11.cpp`, line 543](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L543) | [R396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R396.txt) +R397 | | [`RenameCpp11.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L555) | [R397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R397.txt) +R398 | | [`RenameCpp11.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L557) | [R398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R398.txt) +R399 | | [`RenameCpp11.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L558) | [R399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R399.txt) +R400 | | [`RenameCpp11.cpp`, line 561](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L561) | [R400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R400.txt) +R401 | | [`RenameCpp11.cpp`, line 562](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L562) | [R401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R401.txt) +R402 | | [`RenameCpp11.cpp`, line 573](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L573) | [R402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R402.txt) +R403 | | [`RenameCpp11.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L577) | [R403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R403.txt) +R404 | | [`RenameCpp11.cpp`, line 581](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L581) | [R404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R404.txt) +R405 | | [`RenameCpp11.cpp`, line 582](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L582) | [R405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R405.txt) +R406 | | [`RenameCpp11.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L587) | [R406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R406.txt) +R407 | | [`RenameCpp11.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L600) | [R407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R407.txt) +R408 | | [`RenameCpp11.cpp`, line 602](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L602) | [R408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R408.txt) +R409 | | [`RenameCpp11.cpp`, line 605](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L605) | [R409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R409.txt) +R410 | | [`RenameCpp11.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L606) | [R410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R410.txt) +R411 | | [`RenameCpp11.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L607) | [R411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R411.txt) +R412 | | [`RenameCpp11.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L608) | [R412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R412.txt) +R413 | | [`RenameCpp11.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L636) | [R413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R413.txt) +R414 | | [`RenameCpp11.cpp`, line 638](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L638) | [R414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R414.txt) +R415 | | [`RenameCpp11.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L639) | [R415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R415.txt) +R416 | | [`RenameCpp11.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L640) | [R416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R416.txt) +R417 | | [`RenameCpp11.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L643) | [R417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R417.txt) +R418 | | [`RenameCpp11.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L644) | [R418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R418.txt) +R419 | | [`RenameCpp11.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L647) | [R419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R419.txt) +R420 | | [`RenameCpp11.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L648) | [R420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R420.txt) +R421 | | [`RenameCpp11.cpp`, line 650](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L650) | [R421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R421.txt) +R422 | | [`RenameCpp11.cpp`, line 664](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L664) | [R422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R422.txt) +R423 | | [`RenameCpp11.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L666) | [R423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R423.txt) +R424 | | [`RenameCpp11.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L676) | [R424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R424.txt) +R425 | | [`RenameCpp11.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L678) | [R425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R425.txt) +R426 | | [`RenameCpp11.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L681) | [R426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R426.txt) +R427 | | [`RenameCpp11.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L682) | [R427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R427.txt) +R428 | | [`RenameCpp11.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L683) | [R428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R428.txt) +R429 | | [`RenameCpp11.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L687) | [R429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R429.txt) +R430 | | [`RenameCpp11.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L701) | [R430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R430.txt) +R431 | | [`RenameCpp11.cpp`, line 704](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L704) | [R431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R431.txt) +R432 | | [`RenameCpp11.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L705) | [R432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R432.txt) +R433 | | [`RenameCpp11.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L709) | [R433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R433.txt) +R434 | | [`RenameCpp11.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L710) | [R434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R434.txt) +R435 | | [`RenameCpp11.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L714) | [R435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R435.txt) +R436 | | [`RenameCpp11.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L722) | [R436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R436.txt) +R437 | | [`RenameCpp11.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L728) | [R437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R437.txt) +R438 | | [`RenameCpp11.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L730) | [R438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R438.txt) +R439 | | [`RenameCpp11.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L731) | [R439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R439.txt) +R440 | | [`RenameCpp11.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L732) | [R440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R440.txt) +R441 | | [`RenameCpp11.cpp`, line 735](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L735) | [R441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R441.txt) +R442 | | [`RenameCpp11.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L736) | [R442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R442.txt) +R443 | | [`RenameCpp11.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L749) | [R443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R443.txt) +R444 | | [`RenameCpp11.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L751) | [R444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R444.txt) +R445 | | [`RenameCpp11.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L752) | [R445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R445.txt) +R446 | | [`RenameCpp11.cpp`, line 753](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L753) | [R446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R446.txt) +R447 | | [`RenameCpp11.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L756) | [R447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R447.txt) +R448 | | [`RenameCpp11.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L758) | [R448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R448.txt) +R449 | | [`RenameCpp11.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L759) | [R449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R449.txt) +R450 | | [`RenameCpp11.cpp`, line 760](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L760) | [R450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R450.txt) +R451 | | [`RenameCpp11.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L761) | [R451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R451.txt) +R452 | | [`RenameCpp11.cpp`, line 762](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L762) | [R452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R452.txt) +R453 | | [`RenameCpp11.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L765) | [R453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R453.txt) +R454 | | [`RenameCpp11.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L766) | [R454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R454.txt) +R455 | | [`RenameCpp11.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L767) | [R455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R455.txt) +R456 | | [`RenameCpp11.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L768) | [R456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R456.txt) +R457 | | [`RenameCpp11.cpp`, line 771](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L771) | [R457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R457.txt) +R458 | | [`RenameCpp11.cpp`, line 772](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L772) | [R458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R458.txt) +R459 | | [`RenameCpp11.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L776) | [R459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R459.txt) +R460 | | [`RenameCpp11.cpp`, line 780](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L780) | [R460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R460.txt) +R461 | | [`RenameCpp11.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L781) | [R461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R461.txt) +R462 | | [`RenameCpp11.cpp`, line 783](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L783) | [R462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R462.txt) +R463 | | [`RenameCpp11.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L787) | [R463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R463.txt) +R464 | | [`RenameCpp11.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L789) | [R464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R464.txt) +R465 | | [`RenameCpp11.cpp`, line 790](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L790) | [R465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R465.txt) +R466 | | [`RenameCpp11.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L791) | [R466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R466.txt) +R467 | | [`RenameCpp11.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L792) | [R467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R467.txt) +R468 | | [`RenameCpp11.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L793) | [R468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R468.txt) +R469 | | [`RenameCpp11.cpp`, line 801](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L801) | [R469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R469.txt) +R470 | | [`RenameCpp11.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L805) | [R470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R470.txt) +R471 | | [`RenameCpp11.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L809) | [R471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R471.txt) +R472 | | [`RenameCpp11.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L810) | [R472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R472.txt) +R473 | | [`RenameCpp11.cpp`, line 812](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L812) | [R473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R473.txt) +R474 | | [`RenameCpp11.cpp`, line 813](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L813) | [R474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R474.txt) +R475 | | [`RenameCpp11.cpp`, line 814](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L814) | [R475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R475.txt) +R476 | | [`RenameCpp11.cpp`, line 815](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L815) | [R476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R476.txt) +R477 | | [`RenameCpp11.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L821) | [R477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R477.txt) +R478 | | [`RenameCpp11.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L824) | [R478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R478.txt) +R479 | | [`RenameCpp11.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L825) | [R479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R479.txt) +R480 | | [`RenameCpp11.cpp`, line 828](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L828) | [R480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R480.txt) +R481 | | [`RenameCpp11.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L833) | [R481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R481.txt) +R482 | | [`RenameCpp11.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L834) | [R482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R482.txt) +R483 | | [`RenameCpp11.cpp`, line 837](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L837) | [R483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R483.txt) +R484 | | [`RenameCpp11.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L845) | [R484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R484.txt) +R485 | | [`RenameCpp11.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L846) | [R485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R485.txt) +R486 | | [`RenameCpp11.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L849) | [R486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R486.txt) +R487 | | [`RenameCpp11.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L854) | [R487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R487.txt) +R488 | | [`RenameCpp11.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L855) | [R488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R488.txt) +R489 | | [`RenameCpp11.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L858) | [R489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R489.txt) +R490 | | [`RenameCpp11.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L866) | [R490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R490.txt) +R491 | | [`RenameCpp11.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L867) | [R491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R491.txt) +R492 | | [`RenameCpp11.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L870) | [R492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R492.txt) +R493 | | [`RenameCpp11.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L878) | [R493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R493.txt) +R494 | | [`RenameCpp11.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L880) | [R494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R494.txt) +R495 | | [`RenameCpp11.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L882) | [R495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R495.txt) +R496 | | [`RenameCpp11.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L883) | [R496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R496.txt) +R497 | | [`RenameCpp11.cpp`, line 885](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L885) | [R497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R497.txt) +R498 | | [`RenameCpp11.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L887) | [R498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R498.txt) +R499 | | [`RenameCpp11.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L889) | [R499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R499.txt) +R500 | | [`RenameCpp11.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L890) | [R500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R500.txt) +R501 | | [`RenameCpp11.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L892) | [R501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R501.txt) +R502 | | [`RenameCpp11.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L898) | [R502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R502.txt) +R503 | | [`RenameCpp11.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L900) | [R503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R503.txt) +R504 | | [`RenameCpp11.cpp`, line 901](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L901) | [R504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R504.txt) +R505 | | [`RenameCpp11.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L902) | [R505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R505.txt) +R506 | | [`RenameCpp11.cpp`, line 904](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L904) | [R506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R506.txt) +R507 | | [`RenameCpp11.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L906) | [R507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R507.txt) +R508 | | [`RenameCpp11.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L907) | [R508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R508.txt) +R509 | | [`RenameCpp11.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L909) | [R509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R509.txt) +R510 | | [`RenameCpp11.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L910) | [R510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R510.txt) +R511 | | [`RenameCpp11.cpp`, line 911](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L911) | [R511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R511.txt) +R512 | | [`RenameCpp11.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L912) | [R512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R512.txt) +R513 | | [`RenameCpp11.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L913) | [R513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R513.txt) +R514 | | [`RenameCpp11.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L915) | [R514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R514.txt) +R515 | | [`RenameCpp11.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L921) | [R515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R515.txt) +R516 | | [`RenameCpp11.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L923) | [R516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R516.txt) +R517 | | [`RenameCpp11.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L925) | [R517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R517.txt) +R518 | | [`RenameCpp11.cpp`, line 928](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L928) | [R518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R518.txt) +R519 | | [`RenameCpp11.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L929) | [R519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R519.txt) +R520 | | [`RenameCpp11.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L930) | [R520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R520.txt) +R521 | | [`RenameCpp11.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L940) | [R521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R521.txt) +R522 | | [`RenameCpp11.cpp`, line 942](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L942) | [R522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R522.txt) +R523 | | [`RenameCpp11.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L945) | [R523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R523.txt) +R524 | | [`RenameCpp11.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L952) | [R524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R524.txt) +R525 | | [`RenameCpp11.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L954) | [R525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R525.txt) +R526 | | [`RenameCpp11.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L957) | [R526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R526.txt) +R527 | | [`RenameCpp11.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L958) | [R527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R527.txt) +R528 | | [`RenameCpp11.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L960) | [R528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R528.txt) +R529 | | [`RenameCpp11.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L965) | [R529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R529.txt) +R530 | | [`RenameCpp11.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L970) | [R530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R530.txt) +R531 | | [`RenameCpp11.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L972) | [R531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R531.txt) +R532 | | [`RenameCpp11.cpp`, line 973](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L973) | [R532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R532.txt) +R533 | | [`RenameCpp11.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L975) | [R533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R533.txt) +R534 | | [`RenameCpp11.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L977) | [R534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R534.txt) +R535 | | [`RenameCpp11.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L981) | [R535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R535.txt) +R536 | | [`RenameCpp11.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L982) | [R536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R536.txt) +R537 | | [`RenameCpp11.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L988) | [R537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R537.txt) +R538 | | [`RenameCpp11.cpp`, line 993](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L993) | [R538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R538.txt) +R539 | | [`RenameCpp11.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L997) | [R539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R539.txt) +R540 | | [`RenameCpp11.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1005) | [R540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R540.txt) +R541 | | [`RenameCpp11.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1011) | [R541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R541.txt) +R542 | | [`RenameCpp11.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1018) | [R542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R542.txt) +R543 | | [`RenameCpp11.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1021) | [R543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R543.txt) +R544 | | [`RenameCpp11.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1028) | [R544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R544.txt) +R545 | | [`RenameCpp11.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1030) | [R545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R545.txt) +R546 | | [`RenameCpp11.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1032) | [R546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R546.txt) +R547 | | [`RenameCpp11.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1042) | [R547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R547.txt) +R548 | | [`RenameCpp11.cpp`, line 1044](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1044) | [R548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R548.txt) +R549 | | [`RenameCpp11.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1046) | [R549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R549.txt) +R550 | | [`RenameCpp11.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1052) | [R550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R550.txt) +R551 | | [`RenameCpp11.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1054) | [R551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R551.txt) +R552 | | [`RenameCpp11.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1057) | [R552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R552.txt) +R553 | | [`RenameCpp11.cpp`, line 1059](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1059) | [R553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R553.txt) +R554 | | [`RenameCpp11.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1062) | [R554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R554.txt) +R555 | | [`RenameCpp11.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1064) | [R555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R555.txt) +R556 | | [`RenameCpp11.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1067) | [R556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R556.txt) +R557 | | [`RenameCpp11.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1069) | [R557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R557.txt) +R558 | | [`RenameCpp11.cpp`, line 1073](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1073) | [R558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R558.txt) +R559 | | [`RenameCpp11.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1074) | [R559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R559.txt) +R560 | | [`RenameCpp11.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1075) | [R560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R560.txt) +R561 | | [`RenameCpp11.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1076) | [R561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R561.txt) +R562 | | [`RenameCpp11.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1082) | [R562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R562.txt) +R563 | | [`RenameCpp11.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1087) | [R563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R563.txt) +R564 | | [`RenameCpp11.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1090) | [R564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R564.txt) +R565 | | [`RenameCpp11.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1096) | [R565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R565.txt) +R566 | | [`RenameCpp11.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1101) | [R566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R566.txt) +R567 | | [`RenameCpp11.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1104) | [R567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R567.txt) +R568 | | [`RenameCpp11.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1107) | [R568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R568.txt) +R569 | | [`RenameCpp11.cpp`, line 1111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1111) | [R569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R569.txt) +R570 | | [`RenameCpp11.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1112) | [R570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R570.txt) +R571 | | [`RenameCpp11.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1117) | [R571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R571.txt) +R572 | | [`RenameCpp11.cpp`, line 1118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1118) | [R572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R572.txt) +R573 | | [`RenameCpp11.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1122) | [R573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R573.txt) +R574 | | [`RenameCpp11.cpp`, line 1127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1127) | [R574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R574.txt) +R575 | | [`RenameCpp11.cpp`, line 1131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1131) | [R575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R575.txt) +R576 | | [`RenameCpp11.cpp`, line 1134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1134) | [R576.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R576.txt) +R577 | | [`RenameCpp11.cpp`, line 1143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1143) | [R577.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R577.txt) +R578 | | [`RenameCpp11.cpp`, line 1149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1149) | [R578.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R578.txt) +R579 | | [`RenameCpp11.cpp`, line 1158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1158) | [R579.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R579.txt) +R580 | | [`RenameCpp11.cpp`, line 1165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1165) | [R580.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R580.txt) +R581 | | [`RenameCpp11.cpp`, line 1172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1172) | [R581.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R581.txt) +R582 | | [`RenameCpp11.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1173) | [R582.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R582.txt) +R583 | | [`RenameCpp11.cpp`, line 1178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1178) | [R583.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R583.txt) +R584 | | [`RenameCpp11.cpp`, line 1183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1183) | [R584.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R584.txt) +R585 | | [`RenameCpp11.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1189) | [R585.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R585.txt) +R586 | | [`RenameCpp11.cpp`, line 1194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1194) | [R586.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R586.txt) +R587 | | [`RenameCpp11.cpp`, line 1195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1195) | [R587.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R587.txt) +R588 | | [`RenameCpp11.cpp`, line 1196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1196) | [R588.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R588.txt) +R589 | | [`RenameCpp11.cpp`, line 1206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1206) | [R589.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R589.txt) +R590 | | [`RenameCpp11.cpp`, line 1213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1213) | [R590.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R590.txt) +R591 | | [`RenameCpp11.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1218) | [R591.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R591.txt) +R592 | | [`RenameCpp11.cpp`, line 1222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1222) | [R592.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R592.txt) +R593 | | [`RenameCpp11.cpp`, line 1225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1225) | [R593.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R593.txt) +R594 | | [`RenameCpp11.cpp`, line 1227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1227) | [R594.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R594.txt) +R595 | | [`RenameCpp11.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1229) | [R595.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R595.txt) +R596 | | [`RenameCpp11.cpp`, line 1231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1231) | [R596.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R596.txt) +R597 | | [`RenameCpp11.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1236) | [R597.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R597.txt) +R598 | | [`RenameCpp11.cpp`, line 1237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1237) | [R598.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R598.txt) +R599 | | [`RenameCpp11.cpp`, line 1240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1240) | [R599.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R599.txt) +R600 | | [`RenameCpp11.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1246) | [R600.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R600.txt) +R601 | | [`RenameCpp11.cpp`, line 1247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1247) | [R601.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R601.txt) +R602 | | [`RenameCpp11.cpp`, line 1250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1250) | [R602.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R602.txt) +R603 | | [`RenameCpp11.cpp`, line 1251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1251) | [R603.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R603.txt) +R604 | | [`RenameCpp11.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1290) | [R604.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R604.txt) +R605 | | [`RenameCpp11.cpp`, line 1292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1292) | [R605.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R605.txt) +R606 | | [`RenameCpp14.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L6) | [R606.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R606.txt) +R607 | | [`RenameCpp14.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L8) | [R607.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R607.txt) +R608 | | [`RenameCpp14.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L9) | [R608.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R608.txt) +R609 | | [`RenameCpp14.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L10) | [R609.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R609.txt) +R610 | | [`RenameCpp14.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L11) | [R610.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R610.txt) +R611 | | [`RenameCpp14.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L14) | [R611.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R611.txt) +R612 | | [`RenameCpp14.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L16) | [R612.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R612.txt) +R613 | | [`RenameCpp14.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L17) | [R613.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R613.txt) +R614 | | [`RenameCpp14.h`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L20) | [R614.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R614.txt) +R615 | | [`RenameCpp14.h`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L21) | [R615.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R615.txt) +R616 | | [`RenameCpp14.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L20) | [R616.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R616.txt) +R617 | | [`RenameCpp14.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L22) | [R617.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R617.txt) +R618 | | [`RenameCpp14.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L23) | [R618.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R618.txt) +R619 | | [`RenameCpp14.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L24) | [R619.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R619.txt) +R620 | | [`RenameCpp14.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L27) | [R620.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R620.txt) +R621 | | [`RenameCpp14.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L29) | [R621.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R621.txt) +R622 | | [`RenameCpp14.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L30) | [R622.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R622.txt) +R623 | | [`RenameCpp14.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L33) | [R623.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R623.txt) +R624 | | [`RenameCpp14.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L34) | [R624.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R624.txt) +R625 | | [`RenameCpp14.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L48) | [R625.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R625.txt) +R626 | | [`RenameCpp14.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L52) | [R626.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R626.txt) +R627 | | [`RenameCpp14.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L60) | [R627.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R627.txt) +R628 | | [`RenameCpp14.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L64) | [R628.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R628.txt) +R629 | | [`RenameCpp14.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L70) | [R629.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R629.txt) +R630 | | [`RenameCpp14.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L71) | [R630.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R630.txt) +R631 | | [`RenameCpp14.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L72) | [R631.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R631.txt) +R632 | | [`RenameCpp14.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L73) | [R632.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R632.txt) +R633 | | [`RenameCpp14.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L81) | [R633.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R633.txt) +R634 | | [`RenameCpp14.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L83) | [R634.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R634.txt) +R635 | | [`RenameCpp14.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L84) | [R635.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R635.txt) +R636 | | [`RenameCpp14.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L85) | [R636.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R636.txt) +R637 | | [`RenameCpp14.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L86) | [R637.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R637.txt) +R638 | | [`RenameCpp14.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L87) | [R638.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R638.txt) +R639 | | [`RenameCpp14.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L88) | [R639.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R639.txt) +R640 | | [`RenameCpp14.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L90) | [R640.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R640.txt) +R641 | | [`RenameCpp14.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L92) | [R641.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R641.txt) +R642 | | [`RenameCpp14.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L93) | [R642.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R642.txt) +R643 | | [`RenameCpp14.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L94) | [R643.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R643.txt) +R644 | | [`RenameCpp14.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L95) | [R644.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R644.txt) +R645 | | [`RenameCpp14.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L96) | [R645.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R645.txt) +R646 | | [`RenameCpp14.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L97) | [R646.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R646.txt) +R647 | | [`RenameCpp14.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L99) | [R647.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R647.txt) +R648 | | [`RenameCpp17.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L6) | [R648.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R648.txt) +R649 | | [`RenameCpp17.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L7) | [R649.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R649.txt) +R650 | | [`RenameCpp17.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L8) | [R650.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R650.txt) +R651 | | [`RenameCpp17.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L11) | [R651.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R651.txt) +R652 | | [`RenameCpp17.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L18) | [R652.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R652.txt) +R653 | | [`RenameCpp17.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L26) | [R653.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R653.txt) +R654 | | [`RenameCpp17.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L27) | [R654.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R654.txt) +R655 | | [`RenameCpp17.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L28) | [R655.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R655.txt) +R656 | | [`RenameCpp17.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L32) | [R656.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R656.txt) +R657 | | [`RenameCpp17.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L48) | [R657.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R657.txt) +R658 | | [`RenameCpp17.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L49) | [R658.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R658.txt) +R659 | | [`RenameCpp17.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L50) | [R659.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R659.txt) +R660 | | [`RenameCpp17.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L51) | [R660.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R660.txt) +R661 | | [`RenameCpp17.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L53) | [R661.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R661.txt) +R662 | | [`RenameCpp17.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L55) | [R662.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R662.txt) +R663 | | [`RenameCpp17.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L56) | [R663.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R663.txt) +R664 | | [`RenameCpp17.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L58) | [R664.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R664.txt) +R665 | | [`RenameCpp17.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L68) | [R665.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R665.txt) +R666 | | [`RenameCpp17.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L72) | [R666.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R666.txt) +R667 | | [`RenameCpp17.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L73) | [R667.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R667.txt) +R668 | | [`RenameCpp17.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L75) | [R668.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R668.txt) +R669 | | [`RenameCpp17.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L78) | [R669.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R669.txt) +R670 | | [`RenameCpp17.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L79) | [R670.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R670.txt) +R671 | | [`RenameCpp17.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L99) | [R671.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R671.txt) +R672 | | [`RenameCpp17.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L105) | [R672.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R672.txt) +R673 | | [`RenameCpp17.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L107) | [R673.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R673.txt) +R674 | | [`RenameCpp17.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L109) | [R674.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R674.txt) +R675 | | [`RenameCpp17.cpp`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L110) | [R675.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R675.txt) +R676 | | [`RenameCpp17.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L111) | [R676.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R676.txt) +R677 | | [`RenameCpp17.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L112) | [R677.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R677.txt) +R678 | | [`RenameCpp17.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L113) | [R678.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R678.txt) +R679 | | [`RenameCpp17.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L118) | [R679.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R679.txt) +R680 | | [`RenameCpp17.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L121) | [R680.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R680.txt) +R681 | | [`RenameCpp17.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L130) | [R681.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R681.txt) +R682 | | [`RenameCpp17.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L137) | [R682.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R682.txt) +R683 | | [`RenameCpp17.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L139) | [R683.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R683.txt) +R684 | | [`RenameCpp17.cpp`, line 147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L147) | [R684.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R684.txt) +R685 | | [`RenameCpp17.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L149) | [R685.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R685.txt) +R686 | | [`RenameCpp17.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L150) | [R686.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R686.txt) +R687 | | [`RenameCpp17.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L151) | [R687.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R687.txt) +R688 | | [`RenameCpp17.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L153) | [R688.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R688.txt) +R689 | | [`RenameCpp17.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L155) | [R689.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R689.txt) +R690 | | [`RenameCpp17.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L157) | [R690.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R690.txt) +R691 | | [`RenameCpp17.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L158) | [R691.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R691.txt) +R692 | | [`RenameCpp17.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L159) | [R692.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R692.txt) +R693 | | [`RenameCpp17.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L161) | [R693.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R693.txt) +R694 | | [`RenameCpp17.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L163) | [R694.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R694.txt) +R695 | | [`RenameCpp17.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L165) | [R695.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R695.txt) +R696 | | [`RenameCpp17.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L166) | [R696.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R696.txt) +R697 | | [`RenameCpp17.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L167) | [R697.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R697.txt) +R698 | | [`RenameCpp17.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L169) | [R698.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R698.txt) +R699 | | [`RenameCpp17.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L171) | [R699.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R699.txt) +R700 | | [`RenameCpp17.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L175) | [R700.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R700.txt) +R701 | | [`RenameCpp17.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L176) | [R701.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R701.txt) +R702 | | [`RenameCpp17.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L177) | [R702.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R702.txt) +R703 | | [`RenameCpp17.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L179) | [R703.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R703.txt) +R704 | | [`RenameCpp17.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L181) | [R704.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R704.txt) +R705 | | [`RenameCpp17.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L189) | [R705.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R705.txt) +R706 | | [`RenameCpp17.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L190) | [R706.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R706.txt) +R707 | | [`RenameCpp17.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L191) | [R707.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R707.txt) +R708 | | [`RenameCpp17.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L193) | [R708.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R708.txt) +R709 | | [`RenameCpp17.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L195) | [R709.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R709.txt) +R710 | | [`RenameCpp17.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L197) | [R710.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R710.txt) +R711 | | [`RenameCpp17.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L198) | [R711.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R711.txt) +R712 | | [`RenameCpp17.cpp`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L199) | [R712.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R712.txt) +R713 | | [`RenameCpp17.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L201) | [R713.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R713.txt) +R714 | | [`RenameCpp17.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L203) | [R714.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R714.txt) +R715 | | [`RenameCpp17.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L205) | [R715.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R715.txt) +R716 | | [`RenameCpp17.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L206) | [R716.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R716.txt) +R717 | | [`RenameCpp17.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L207) | [R717.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R717.txt) +R718 | | [`RenameCpp17.cpp`, line 209](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L209) | [R718.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R718.txt) +R719 | | [`RenameCpp17.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L211) | [R719.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R719.txt) +R720 | | [`RenameCpp17.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L215) | [R720.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R720.txt) +R721 | | [`RenameCpp17.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L216) | [R721.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R721.txt) +R722 | | [`RenameCpp17.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L217) | [R722.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R722.txt) +R723 | | [`RenameCpp17.cpp`, line 219](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L219) | [R723.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R723.txt) +R724 | | [`RenameCpp17.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L221) | [R724.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R724.txt) +R725 | | [`RenameCpp17.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L233) | [R725.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R725.txt) +R726 | | [`RenameCpp17.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L234) | [R726.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R726.txt) +R727 | | [`RenameCpp17.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L235) | [R727.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R727.txt) +R728 | | [`RenameCpp17.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L237) | [R728.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R728.txt) +R729 | | [`RenameCpp17.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L239) | [R729.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R729.txt) +R730 | | [`RenameCpp17.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L241) | [R730.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R730.txt) +R731 | | [`RenameCpp17.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L242) | [R731.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R731.txt) +R732 | | [`RenameCpp17.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L243) | [R732.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R732.txt) +R733 | | [`RenameCpp17.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L245) | [R733.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R733.txt) +R734 | | [`RenameCpp17.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L247) | [R734.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R734.txt) +R735 | | [`RenameCpp17.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L249) | [R735.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R735.txt) +R736 | | [`RenameCpp17.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L250) | [R736.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R736.txt) +R737 | | [`RenameCpp17.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L251) | [R737.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R737.txt) +R738 | | [`RenameCpp17.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L253) | [R738.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R738.txt) +R739 | | [`RenameCpp17.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L255) | [R739.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R739.txt) +R740 | | [`RenameCpp17.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L259) | [R740.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R740.txt) +R741 | | [`RenameCpp17.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L260) | [R741.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R741.txt) +R742 | | [`RenameCpp17.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L261) | [R742.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R742.txt) +R743 | | [`RenameCpp17.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L263) | [R743.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R743.txt) +R744 | | [`RenameCpp17.cpp`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L265) | [R744.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R744.txt) +R745 | | [`RenameCpp17.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L273) | [R745.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R745.txt) +R746 | | [`RenameCpp17.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L274) | [R746.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R746.txt) +R747 | | [`RenameCpp17.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L275) | [R747.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R747.txt) +R748 | | [`RenameCpp17.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L278) | [R748.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R748.txt) +R749 | | [`RenameCpp17.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L280) | [R749.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R749.txt) +R750 | | [`RenameCpp17.cpp`, line 285](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L285) | [R750.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R750.txt) +R751 | | [`RenameCpp17.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L286) | [R751.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R751.txt) +R752 | | [`RenameCpp17.cpp`, line 290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L290) | [R752.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R752.txt) +R753 | | [`RenameCpp17.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L292) | [R753.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R753.txt) +R754 | | [`RenameCpp17.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L296) | [R754.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R754.txt) +R755 | | [`RenameCpp17.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L298) | [R755.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R755.txt) +R756 | | [`RenameCpp17.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L308) | [R756.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R756.txt) +R757 | | [`RenameCpp17.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L310) | [R757.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R757.txt) +R758 | | [`RenameCpp17.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L311) | [R758.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R758.txt) +R759 | | [`RenameCpp17.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L312) | [R759.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R759.txt) +R760 | | [`RenameCpp17.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L315) | [R760.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R760.txt) +R761 | | [`RenameCpp17.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L319) | [R761.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R761.txt) +R762 | | [`RenameCpp17.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L321) | [R762.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R762.txt) +R763 | | [`RenameCpp17.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L322) | [R763.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R763.txt) +R764 | | [`RenameCpp17.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L323) | [R764.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R764.txt) +R765 | | [`RenameCpp17.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L326) | [R765.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R765.txt) +R766 | | [`RenameCpp17.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L330) | [R766.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R766.txt) +R767 | | [`RenameCpp17.cpp`, line 332](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L332) | [R767.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R767.txt) +R768 | | [`RenameCpp17.cpp`, line 333](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L333) | [R768.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R768.txt) +R769 | | [`RenameCpp17.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L334) | [R769.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R769.txt) +R770 | | [`RenameCpp17.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L335) | [R770.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R770.txt) +R771 | | [`RenameCpp17.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L338) | [R771.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R771.txt) +R772 | | [`RenameCpp17.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L339) | [R772.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R772.txt) +R773 | | [`RenameCpp17.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L343) | [R773.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R773.txt) +R774 | | [`RenameCpp17.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L345) | [R774.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R774.txt) +R775 | | [`RenameCpp17.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L346) | [R775.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R775.txt) +R776 | | [`RenameCpp17.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L347) | [R776.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R776.txt) +R777 | | [`RenameCpp17.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L348) | [R777.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R777.txt) +R778 | | [`RenameCpp17.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L351) | [R778.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R778.txt) +R779 | | [`RenameCpp17.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L352) | [R779.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R779.txt) +R780 | | [`RenameCpp17.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L384) | [R780.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R780.txt) +R781 | | [`RenameCpp17.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L385) | [R781.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R781.txt) +R782 | | [`RenameCpp17.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L386) | [R782.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R782.txt) +R783 | | [`RenameCpp17.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L388) | [R783.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R783.txt) +R784 | | [`RenameCpp17.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L390) | [R784.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R784.txt) +R785 | | [`RenameCpp17.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L392) | [R785.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R785.txt) +R786 | | [`RenameCpp17.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L393) | [R786.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R786.txt) +R787 | | [`RenameCpp17.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L394) | [R787.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R787.txt) +R788 | | [`RenameCpp17.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L396) | [R788.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R788.txt) +R789 | | [`RenameCpp17.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L398) | [R789.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R789.txt) +R790 | | [`RenameCpp17.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L403) | [R790.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R790.txt) +R791 | | [`RenameCpp17.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L404) | [R791.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R791.txt) +R792 | | [`RenameCpp17.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L405) | [R792.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R792.txt) +R793 | | [`RenameCpp17.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L407) | [R793.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R793.txt) +R794 | | [`RenameCpp17.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L409) | [R794.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R794.txt) +R795 | | [`RenameCpp17.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L411) | [R795.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R795.txt) +R796 | | [`RenameCpp17.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L413) | [R796.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R796.txt) +R797 | | [`RenameCpp17.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L415) | [R797.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R797.txt) +R798 | | [`RenameCpp17.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L416) | [R798.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R798.txt) +R799 | | [`RenameCpp17.cpp`, line 417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L417) | [R799.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R799.txt) +R800 | | [`RenameCpp17.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L419) | [R800.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R800.txt) +R801 | | [`RenameCpp17.cpp`, line 421](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L421) | [R801.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R801.txt) +R802 | | [`RenameCpp17.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L422) | [R802.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R802.txt) +R803 | | [`RenameCpp17.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L424) | [R803.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R803.txt) +R804 | | [`RenameCpp17.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L430) | [R804.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R804.txt) +R805 | | [`RenameCpp17.cpp`, line 432](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L432) | [R805.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R805.txt) +R806 | | [`RenameCpp17.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L438) | [R806.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R806.txt) +R807 | | [`RenameCpp17.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L440) | [R807.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R807.txt) +R808 | | [`RenameCpp17.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L443) | [R808.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R808.txt) +R809 | | [`RenameCpp17.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L444) | [R809.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R809.txt) +R810 | | [`RenameCpp17.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L449) | [R810.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R810.txt) +R811 | | [`RenameCpp17.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L451) | [R811.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R811.txt) +R812 | | [`RenameCpp17.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L452) | [R812.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R812.txt) +R813 | | [`RenameCpp17.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L453) | [R813.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R813.txt) +R814 | | [`RenameCpp17.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L461) | [R814.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R814.txt) +R815 | | [`RenameCpp17.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L463) | [R815.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R815.txt) +R816 | | [`RenameCpp17.cpp`, line 464](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L464) | [R816.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R816.txt) +R817 | | [`RenameCpp17.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L465) | [R817.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R817.txt) +R818 | | [`RenameCpp17.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L466) | [R818.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R818.txt) +R819 | | [`RenameCpp17.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L467) | [R819.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R819.txt) +R820 | | [`RenameCpp17.cpp`, line 472](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L472) | [R820.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R820.txt) +R821 | | [`RenameCpp17.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L473) | [R821.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R821.txt) +R822 | | [`RenameCpp17.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L475) | [R822.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R822.txt) +R823 | | [`RenameCpp17.cpp`, line 478](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L478) | [R823.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R823.txt) +R824 | | [`RenameCpp17.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L479) | [R824.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R824.txt) +R825 | | [`RenameCpp17.cpp`, line 480](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L480) | [R825.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R825.txt) +R826 | | [`RenameCpp17.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L481) | [R826.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R826.txt) +R827 | | [`RenameCpp17.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L483) | [R827.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R827.txt) +R828 | | [`RenameCpp17.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L489) | [R828.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R828.txt) +R829 | | [`RenameCpp17.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L490) | [R829.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R829.txt) +R830 | | [`RenameCpp17.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L491) | [R830.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R830.txt) +R831 | | [`RenameCpp17.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L492) | [R831.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R831.txt) +R832 | | [`RenameCpp17.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L496) | [R832.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R832.txt) +R833 | | [`RenameCpp17.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L497) | [R833.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R833.txt) +R834 | | [`RenameCpp17.cpp`, line 498](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L498) | [R834.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R834.txt) +R835 | | [`RenameCpp17.cpp`, line 500](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L500) | [R835.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R835.txt) +R836 | | [`RenameCpp17.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L508) | [R836.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R836.txt) +R837 | | [`RenameCpp17.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L509) | [R837.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R837.txt) +R838 | | [`RenameCpp17.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L510) | [R838.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R838.txt) +R839 | | [`RenameCpp17.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L511) | [R839.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R839.txt) +R840 | | [`RenameCpp17.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L512) | [R840.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R840.txt) +R841 | | [`RenameCpp17.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L514) | [R841.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R841.txt) +R842 | | [`RenameCpp17.cpp`, line 515](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L515) | [R842.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R842.txt) +R843 | | [`RenameCpp17.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L520) | [R843.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R843.txt) +R844 | | [`RenameCpp17.cpp`, line 521](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L521) | [R844.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R844.txt) +R845 | | [`RenameCpp17.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L522) | [R845.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R845.txt) +R846 | | [`RenameCpp17.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L523) | [R846.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R846.txt) +R847 | | [`RenameCpp17.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L524) | [R847.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R847.txt) +R848 | | [`RenameCpp17.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L526) | [R848.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R848.txt) +R849 | | [`RenameCpp17.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L527) | [R849.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R849.txt) +R850 | | [`RenameCpp17.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L531) | [R850.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R850.txt) +R851 | | [`RenameCpp17.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L533) | [R851.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R851.txt) +R852 | | [`RenameCpp17.cpp`, line 534](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L534) | [R852.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R852.txt) +R853 | | [`RenameCpp17.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L535) | [R853.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R853.txt) +R854 | | [`RenameCpp17.cpp`, line 536](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L536) | [R854.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R854.txt) +R855 | | [`RenameCpp17.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L538) | [R855.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R855.txt) +R856 | | [`RenameCpp17.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L539) | [R856.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R856.txt) +R857 | | [`RenameCpp20.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L10) | [R857.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R857.txt) +R858 | | [`RenameCpp20.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L13) | [R858.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R858.txt) +R859 | | [`RenameCpp20.h`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L15) | [R859.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R859.txt) +R860 | | [`RenameCpp20.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L17) | [R860.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R860.txt) +R861 | | [`RenameCpp20.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L67) | [R861.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R861.txt) +R862 | | [`RenameCpp20.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L69) | [R862.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R862.txt) +R863 | | [`RenameCpp20.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L71) | [R863.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R863.txt) +R864 | | [`RenameCpp20.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L72) | [R864.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R864.txt) +R865 | | [`RenameCpp20.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L74) | [R865.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R865.txt) +R866 | | [`RenameCpp20.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L75) | [R866.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R866.txt) +R867 | | [`RenameCpp20.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L77) | [R867.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R867.txt) +R868 | | [`RenameCpp20.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L78) | [R868.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R868.txt) +R869 | | [`RenameCpp20.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L83) | [R869.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R869.txt) +R870 | | [`RenameCpp20.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L85) | [R870.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R870.txt) +R871 | | [`RenameCpp20.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L87) | [R871.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R871.txt) +R872 | | [`RenameCpp20.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L88) | [R872.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R872.txt) +R873 | | [`RenameCpp20.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L90) | [R873.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R873.txt) +R874 | | [`RenameCpp20.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L91) | [R874.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R874.txt) +R875 | | [`RenameCpp20.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L93) | [R875.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R875.txt) +R876 | | [`RenameCpp20.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L94) | [R876.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R876.txt) +R877 | | [`RenameCpp20.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L102) | [R877.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R877.txt) +R878 | | [`RenameCpp20.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L105) | [R878.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R878.txt) +R879 | | [`RenameCpp20.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L106) | [R879.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R879.txt) +R880 | | [`RenameCpp20.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L107) | [R880.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R880.txt) +R881 | | [`RenameCpp20.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L109) | [R881.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R881.txt) +R882 | | [`RenameCpp20.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L111) | [R882.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R882.txt) +R883 | | [`RenameCpp20.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L113) | [R883.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R883.txt) +R884 | | [`RenameCpp20.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L117) | [R884.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R884.txt) +R885 | | [`RenameCpp20.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L118) | [R885.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R885.txt) +R886 | | [`RenameCpp20.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L119) | [R886.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R886.txt) +R887 | | [`RenameCpp20.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L121) | [R887.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R887.txt) +R888 | | [`RenameCpp20.cpp`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L123) | [R888.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R888.txt) +R889 | | [`RenameCpp20.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L125) | [R889.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R889.txt) +R890 | | [`RenameCpp20.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L129) | [R890.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R890.txt) +R891 | | [`RenameCpp20.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L130) | [R891.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R891.txt) +R892 | | [`RenameCpp20.cpp`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L131) | [R892.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R892.txt) +R893 | | [`RenameCpp20.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L132) | [R893.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R893.txt) +R894 | | [`RenameCpp20.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L134) | [R894.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R894.txt) +R895 | | [`RenameCpp20.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L136) | [R895.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R895.txt) +R896 | | [`RenameCpp20.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L138) | [R896.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R896.txt) +R897 | | [`RenameCpp20.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L143) | [R897.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R897.txt) +R898 | | [`RenameCpp20.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L149) | [R898.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R898.txt) +R899 | | [`RenameCpp20.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L163) | [R899.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R899.txt) +R900 | | [`RenameCpp20.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L164) | [R900.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R900.txt) +R901 | | [`RenameCpp20.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L165) | [R901.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R901.txt) +R902 | | [`RenameCpp20.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L168) | [R902.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R902.txt) +R903 | | [`RenameCpp20.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L175) | [R903.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R903.txt) +R904 | | [`RenameCpp20.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L176) | [R904.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R904.txt) +R905 | | [`RenameCpp20.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L177) | [R905.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R905.txt) +R906 | | [`RenameCpp20.cpp`, line 180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L180) | [R906.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R906.txt) +R907 | | [`RenameCpp20.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L190) | [R907.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R907.txt) +R908 | | [`RenameCpp20.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L191) | [R908.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R908.txt) +R909 | | [`RenameCpp20.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L192) | [R909.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R909.txt) +R910 | | [`RenameCpp20.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L193) | [R910.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R910.txt) +R911 | | [`RenameCpp20.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L194) | [R911.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R911.txt) +R912 | | [`RenameCpp20.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L196) | [R912.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R912.txt) +R913 | | [`RenameCpp20.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L198) | [R913.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R913.txt) +R914 | | [`RenameCpp20.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L200) | [R914.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R914.txt) +R915 | | [`RenameCpp20.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L201) | [R915.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R915.txt) +R916 | | [`RenameCpp20.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L202) | [R916.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R916.txt) +R917 | | [`RenameCpp20.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L211) | [R917.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R917.txt) +R918 | | [`RenameCpp20.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L212) | [R918.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R918.txt) +R919 | | [`RenameCpp20.cpp`, line 214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L214) | [R919.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R919.txt) +R920 | | [`RenameCpp20.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L215) | [R920.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R920.txt) +R921 | | [`RenameCpp20.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L216) | [R921.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R921.txt) +R922 | | [`RenameCpp20.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L217) | [R922.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R922.txt) +R923 | | [`RenameCpp20.cpp`, line 220](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L220) | [R923.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R923.txt) +R924 | | [`RenameCpp20.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L221) | [R924.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R924.txt) +R925 | | [`RenameCpp20.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L222) | [R925.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R925.txt) +R926 | | [`RenameCpp20.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L223) | [R926.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R926.txt) +R927 | | [`RenameCpp20.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L224) | [R927.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R927.txt) +R928 | | [`RenameCpp20.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L226) | [R928.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R928.txt) +R929 | | [`RenameCpp20.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L236) | [R929.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R929.txt) +R930 | | [`RenameCpp20.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L237) | [R930.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R930.txt) +R931 | | [`RenameCpp20.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L240) | [R931.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R931.txt) +R932 | | [`RenameCpp20.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L241) | [R932.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R932.txt) +R933 | | [`RenameCpp20.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L248) | [R933.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R933.txt) +R934 | | [`RenameCpp20.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L262) | [R934.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R934.txt) +R935 | | [`RenameCpp20.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L263) | [R935.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R935.txt) +R936 | | [`RenameCpp20.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L269) | [R936.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R936.txt) +R937 | | [`RenameCpp20.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L279) | [R937.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R937.txt) +R938 | | [`RenameCpp20.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L280) | [R938.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R938.txt) +R939 | | [`RenameCpp20.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L282) | [R939.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R939.txt) +R940 | | [`RenameCpp20.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L288) | [R940.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R940.txt) +R941 | | [`RenameCpp20.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L295) | [R941.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R941.txt) +R942 | | [`RenameCpp20.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L296) | [R942.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R942.txt) +R943 | | [`RenameCpp20.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L297) | [R943.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R943.txt) +R944 | | [`RenameCpp20.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L299) | [R944.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R944.txt) +R945 | | [`RenameCpp20.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L305) | [R945.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R945.txt) +R946 | | [`RenameCpp20.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L312) | [R946.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R946.txt) +R947 | | [`RenameCpp20.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L313) | [R947.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R947.txt) +R948 | | [`RenameCpp20.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L314) | [R948.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R948.txt) +R949 | | [`RenameCpp20.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L316) | [R949.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R949.txt) +R950 | | [`RenameCpp20.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L321) | [R950.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R950.txt) +R951 | | [`RenameCpp20.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L322) | [R951.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R951.txt) +R952 | | [`RenameCpp20.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L329) | [R952.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R952.txt) +R953 | | [`RenameCpp20.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L336) | [R953.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R953.txt) +R954 | | [`RenameCpp20.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L345) | [R954.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R954.txt) +R955 | | [`RenameCpp20.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L346) | [R955.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R955.txt) +R956 | | [`RenameCpp20.cpp`, line 357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L357) | [R956.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R956.txt) +R957 | | [`RenameCpp20.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L358) | [R957.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R957.txt) +R958 | | [`RenameCpp20.cpp`, line 361](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L361) | [R958.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R958.txt) +R959 | | [`RenameCpp20.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L364) | [R959.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R959.txt) +R960 | | [`RenameCpp20.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L380) | [R960.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R960.txt) +R961 | | [`RenameCpp20.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L381) | [R961.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R961.txt) +R962 | | [`RenameCpp20.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L384) | [R962.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R962.txt) +R963 | | [`RenameCpp20.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L385) | [R963.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R963.txt) +R964 | | [`RenameCpp20.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L389) | [R964.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R964.txt) +R965 | | [`RenameCpp20.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L390) | [R965.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R965.txt) +R966 | | [`RenameCpp20.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L396) | [R966.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R966.txt) +R967 | | [`RenameCpp20.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L397) | [R967.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R967.txt) +R968 | | [`RenameCpp20.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L403) | [R968.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R968.txt) +R969 | | [`RenameCpp20.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L404) | [R969.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R969.txt) +R970 | | [`RenameCpp20.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L405) | [R970.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R970.txt) +R971 | | [`RenameCpp20.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L408) | [R971.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R971.txt) +R972 | | [`RenameCpp20.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L409) | [R972.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R972.txt) +R973 | | [`RenameCpp20.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L416) | [R973.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R973.txt) +R974 | | [`RenameCpp20.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L418) | [R974.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R974.txt) +R975 | | [`RenameCpp20.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L422) | [R975.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R975.txt) +R976 | | [`RenameCpp20.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L423) | [R976.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R976.txt) +R977 | | [`RenameCpp20.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L429) | [R977.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R977.txt) +R978 | | [`RenameCpp20.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L430) | [R978.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R978.txt) +R979 | | [`RenameCpp20.cpp`, line 436](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L436) | [R979.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R979.txt) +R980 | | [`RenameCpp20.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L437) | [R980.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R980.txt) +R981 | | [`RenameCpp20.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L443) | [R981.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R981.txt) +R982 | | [`RenameCpp20.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L444) | [R982.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R982.txt) +R983 | | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L449) | [R983.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R983.txt) +R984 | | [`RenameCpp20.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L451) | [R984.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R984.txt) +R985 | | [`RenameCpp20.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L452) | [R985.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R985.txt) +R986 | | [`RenameCpp20.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L454) | [R986.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R986.txt) +R987 | | [`RenameCpp20Constraints.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L48) | [R987.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R987.txt) +R988 | | [`RenameCpp20Constraints.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L50) | [R988.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R988.txt) +R989 | | [`RenameCpp20Constraints.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L51) | [R989.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R989.txt) +R990 | | [`RenameCpp20Constraints.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L52) | [R990.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R990.txt) +R991 | | [`RenameCpp20Constraints.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L55) | [R991.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R991.txt) +R992 | | [`RenameCpp20Constraints.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L56) | [R992.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R992.txt) +R993 | | [`RenameCpp20Constraints.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L61) | [R993.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R993.txt) +R994 | | [`RenameCpp20Constraints.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L62) | [R994.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R994.txt) +R995 | | [`RenameCpp20Constraints.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L64) | [R995.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R995.txt) +R996 | | [`RenameCpp20Constraints.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L65) | [R996.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R996.txt) +R997 | | [`RenameCpp20Constraints.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L66) | [R997.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R997.txt) +R998 | | [`RenameCpp20Constraints.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L67) | [R998.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R998.txt) +R999 | | [`RenameCpp20Constraints.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L68) | [R999.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R999.txt) +R1000 | | [`RenameCpp20Constraints.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L71) | [R1000.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1000.txt) +R1001 | | [`RenameCpp20Constraints.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L72) | [R1001.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1001.txt) +R1002 | | [`RenameCpp20Constraints.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L78) | [R1002.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1002.txt) +R1003 | | [`RenameCpp20Constraints.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L80) | [R1003.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1003.txt) +R1004 | | [`RenameCpp20Constraints.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L81) | [R1004.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1004.txt) +R1005 | | [`RenameCpp20Constraints.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L83) | [R1005.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1005.txt) +R1006 | | [`RenameCpp20Constraints.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L84) | [R1006.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1006.txt) +R1007 | | [`RenameCpp20Constraints.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L85) | [R1007.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1007.txt) +R1008 | | [`RenameCpp20Constraints.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L86) | [R1008.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1008.txt) +R1009 | | [`RenameCpp20Constraints.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L89) | [R1009.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1009.txt) +R1010 | | [`RenameCpp20Constraints.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L90) | [R1010.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1010.txt) +R1011 | | [`RenameCpp20Constraints.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L95) | [R1011.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1011.txt) +R1012 | | [`RenameCpp20Constraints.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L97) | [R1012.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1012.txt) +R1013 | | [`RenameCpp20Constraints.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L98) | [R1013.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1013.txt) +R1014 | | [`RenameCpp20Constraints.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L99) | [R1014.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1014.txt) +R1015 | | [`RenameCpp20Constraints.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L100) | [R1015.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1015.txt) +R1016 | | [`RenameCpp20Constraints.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L102) | [R1016.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1016.txt) +R1017 | | [`RenameCpp20Constraints.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L103) | [R1017.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1017.txt) +R1018 | | [`RenameCpp20Constraints.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L106) | [R1018.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1018.txt) +R1019 | | [`RenameCpp20Constraints.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L107) | [R1019.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1019.txt) +R1020 | | [`RenameCpp20Constraints.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L112) | [R1020.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1020.txt) +R1021 | | [`RenameCpp20Constraints.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L114) | [R1021.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1021.txt) +R1022 | | [`RenameCpp20Constraints.cpp`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L115) | [R1022.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1022.txt) +R1023 | | [`RenameCpp20Constraints.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L116) | [R1023.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1023.txt) +R1024 | | [`RenameCpp20Constraints.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L118) | [R1024.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1024.txt) +R1025 | | [`RenameCpp20Constraints.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L119) | [R1025.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1025.txt) +R1026 | | [`RenameCpp20Constraints.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L120) | [R1026.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1026.txt) +R1027 | | [`RenameCpp20Constraints.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L121) | [R1027.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1027.txt) +R1028 | | [`RenameCpp20Constraints.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L124) | [R1028.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1028.txt) +R1029 | | [`RenameCpp20Constraints.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L125) | [R1029.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1029.txt) +R1030 | | [`RenameCpp20Constraints.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L130) | [R1030.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1030.txt) +R1031 | | [`RenameCpp20Constraints.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L132) | [R1031.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1031.txt) +R1032 | | [`RenameCpp20Constraints.cpp`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L133) | [R1032.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1032.txt) +R1033 | | [`RenameCpp20Constraints.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L134) | [R1033.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1033.txt) +R1034 | | [`RenameCpp20Constraints.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L136) | [R1034.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1034.txt) +R1035 | | [`RenameCpp20Constraints.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L137) | [R1035.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1035.txt) +R1036 | | [`RenameCpp20Constraints.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L138) | [R1036.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1036.txt) +R1037 | | [`RenameCpp20Constraints.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L139) | [R1037.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1037.txt) +R1038 | | [`RenameCpp20Constraints.cpp`, line 142](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L142) | [R1038.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1038.txt) +R1039 | | [`RenameCpp20Constraints.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L143) | [R1039.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1039.txt) +R1040 | | [`RenameCpp20Constraints.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L148) | [R1040.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1040.txt) +R1041 | | [`RenameCpp20Constraints.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L150) | [R1041.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1041.txt) +R1042 | | [`RenameCpp20Constraints.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L151) | [R1042.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1042.txt) +R1043 | | [`RenameCpp20Constraints.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L152) | [R1043.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1043.txt) +R1044 | | [`RenameCpp20Constraints.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L153) | [R1044.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1044.txt) +R1045 | | [`RenameCpp20Constraints.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L155) | [R1045.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1045.txt) +R1046 | | [`RenameCpp20Constraints.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L156) | [R1046.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1046.txt) +R1047 | | [`RenameCpp20Constraints.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L157) | [R1047.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1047.txt) +R1048 | | [`RenameCpp20Constraints.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L160) | [R1048.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1048.txt) +R1049 | | [`RenameCpp20Constraints.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L161) | [R1049.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1049.txt) +R1050 | | [`RenameCpp20Constraints.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L166) | [R1050.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1050.txt) +R1051 | | [`RenameCpp20Constraints.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L168) | [R1051.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1051.txt) +R1052 | | [`RenameCpp20Constraints.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L169) | [R1052.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1052.txt) +R1053 | | [`RenameCpp20Constraints.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L170) | [R1053.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1053.txt) +R1054 | | [`RenameCpp20Constraints.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L171) | [R1054.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1054.txt) +R1055 | | [`RenameCpp20Constraints.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L173) | [R1055.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1055.txt) +R1056 | | [`RenameCpp20Constraints.cpp`, line 174](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L174) | [R1056.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1056.txt) +R1057 | | [`RenameCpp20Constraints.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L175) | [R1057.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1057.txt) +R1058 | | [`RenameCpp20Constraints.cpp`, line 178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L178) | [R1058.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1058.txt) +R1059 | | [`RenameCpp20Constraints.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L179) | [R1059.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1059.txt) +R1060 | | [`RenameCpp20Constraints.cpp`, line 184](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L184) | [R1060.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1060.txt) +R1061 | | [`RenameCpp20Constraints.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L186) | [R1061.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1061.txt) +R1062 | | [`RenameCpp20Constraints.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L187) | [R1062.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1062.txt) +R1063 | | [`RenameCpp20Constraints.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L188) | [R1063.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1063.txt) +R1064 | | [`RenameCpp20Constraints.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L189) | [R1064.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1064.txt) +R1065 | | [`RenameCpp20Constraints.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L191) | [R1065.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1065.txt) +R1066 | | [`RenameCpp20Constraints.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L192) | [R1066.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1066.txt) +R1067 | | [`RenameCpp20Constraints.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L193) | [R1067.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1067.txt) +R1068 | | [`RenameCpp20Constraints.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L194) | [R1068.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1068.txt) +R1069 | | [`RenameCpp20Constraints.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L197) | [R1069.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1069.txt) +R1070 | | [`RenameCpp20Constraints.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L198) | [R1070.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1070.txt) +R1071 | | [`RenameCpp20Constraints.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L203) | [R1071.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1071.txt) +R1072 | | [`RenameCpp20Constraints.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L205) | [R1072.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1072.txt) +R1073 | | [`RenameCpp20Constraints.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L206) | [R1073.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1073.txt) +R1074 | | [`RenameCpp20Constraints.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L207) | [R1074.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1074.txt) +R1075 | | [`RenameCpp20Constraints.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L208) | [R1075.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1075.txt) +R1076 | | [`RenameCpp20Constraints.cpp`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L210) | [R1076.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1076.txt) +R1077 | | [`RenameCpp20Constraints.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L211) | [R1077.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1077.txt) +R1078 | | [`RenameCpp20Constraints.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L212) | [R1078.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1078.txt) +R1079 | | [`RenameCpp20Constraints.cpp`, line 213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L213) | [R1079.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1079.txt) +R1080 | | [`RenameCpp20Constraints.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L216) | [R1080.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1080.txt) +R1081 | | [`RenameCpp20Constraints.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L217) | [R1081.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1081.txt) +R1082 | | [`RenameCpp20Constraints.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L222) | [R1082.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1082.txt) +R1083 | | [`RenameCpp20Constraints.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L223) | [R1083.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1083.txt) +R1084 | | [`RenameCpp20Constraints.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L224) | [R1084.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1084.txt) +R1085 | | [`RenameCpp20Constraints.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L226) | [R1085.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1085.txt) +R1086 | | [`RenameCpp20Constraints.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L227) | [R1086.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1086.txt) +R1087 | | [`RenameCpp20Constraints.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L228) | [R1087.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1087.txt) +R1088 | | [`RenameCpp20Constraints.cpp`, line 230](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L230) | [R1088.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1088.txt) +R1089 | | [`RenameCpp20Constraints.cpp`, line 231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L231) | [R1089.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1089.txt) +R1090 | | [`RenameCpp20Constraints.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L232) | [R1090.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1090.txt) +R1091 | | [`RenameCpp20Constraints.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L233) | [R1091.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1091.txt) +R1092 | | [`RenameCpp20Constraints.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L234) | [R1092.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1092.txt) +R1093 | | [`RenameCpp20Constraints.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L235) | [R1093.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1093.txt) +R1094 | | [`RenameCpp20Constraints.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L236) | [R1094.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1094.txt) +R1095 | | [`RenameCpp20Constraints.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L239) | [R1095.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1095.txt) +R1096 | | [`RenameCpp20Constraints.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L240) | [R1096.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1096.txt) +R1097 | | [`RenameCpp20Constraints.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L245) | [R1097.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1097.txt) +R1098 | | [`RenameCpp20Constraints.cpp`, line 246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L246) | [R1098.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1098.txt) +R1099 | | [`RenameCpp20Constraints.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L247) | [R1099.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1099.txt) +R1100 | | [`RenameCpp20Constraints.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L249) | [R1100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1100.txt) +R1101 | | [`RenameCpp20Constraints.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L250) | [R1101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1101.txt) +R1102 | | [`RenameCpp20Constraints.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L251) | [R1102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1102.txt) +R1103 | | [`RenameCpp20Constraints.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L252) | [R1103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1103.txt) +R1104 | | [`RenameCpp20Constraints.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L253) | [R1104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1104.txt) +R1105 | | [`RenameCpp20Constraints.cpp`, line 254](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L254) | [R1105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1105.txt) +R1106 | | [`RenameCpp20Constraints.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L255) | [R1106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1106.txt) +R1107 | | [`RenameCpp20Constraints.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L257) | [R1107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1107.txt) +R1108 | | [`RenameCpp20Constraints.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L258) | [R1108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1108.txt) +R1109 | | [`RenameCpp20Constraints.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L259) | [R1109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1109.txt) +R1110 | | [`RenameCpp20Constraints.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L262) | [R1110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1110.txt) +R1111 | | [`RenameCpp20Constraints.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L263) | [R1111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1111.txt) +R1112 | | [`RenameCpp20Constraints.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L268) | [R1112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1112.txt) +R1113 | | [`RenameCpp20Constraints.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L269) | [R1113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1113.txt) +R1114 | | [`RenameCpp20Constraints.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L270) | [R1114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1114.txt) +R1115 | | [`RenameCpp20Constraints.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L272) | [R1115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1115.txt) +R1116 | | [`RenameCpp20Constraints.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L273) | [R1116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1116.txt) +R1117 | | [`RenameCpp20Constraints.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L274) | [R1117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1117.txt) +R1118 | | [`RenameCpp20Constraints.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L275) | [R1118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1118.txt) +R1119 | | [`RenameCpp20Constraints.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L277) | [R1119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1119.txt) +R1120 | | [`RenameCpp20Constraints.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L278) | [R1120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1120.txt) +R1121 | | [`RenameCpp20Constraints.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L279) | [R1121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1121.txt) +R1122 | | [`RenameCpp20Constraints.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L280) | [R1122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1122.txt) +R1123 | | [`RenameCpp20Constraints.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L281) | [R1123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1123.txt) +R1124 | | [`RenameCpp20Constraints.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L282) | [R1124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1124.txt) +R1125 | | [`RenameCpp20Constraints.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L283) | [R1125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1125.txt) +R1126 | | [`RenameCpp20Constraints.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L286) | [R1126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1126.txt) +R1127 | | [`RenameCpp20Constraints.cpp`, line 287](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L287) | [R1127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1127.txt) +R1128 | | [`RenameCpp20Constraints.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L292) | [R1128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1128.txt) +R1129 | | [`RenameCpp20Constraints.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L293) | [R1129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1129.txt) +R1130 | | [`RenameCpp20Constraints.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L294) | [R1130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1130.txt) +R1131 | | [`RenameCpp20Constraints.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L296) | [R1131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1131.txt) +R1132 | | [`RenameCpp20Constraints.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L297) | [R1132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1132.txt) +R1133 | | [`RenameCpp20Constraints.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L298) | [R1133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1133.txt) +R1134 | | [`RenameCpp20Constraints.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L299) | [R1134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1134.txt) +R1135 | | [`RenameCpp20Constraints.cpp`, line 300](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L300) | [R1135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1135.txt) +R1136 | | [`RenameCpp20Constraints.cpp`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L301) | [R1136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1136.txt) +R1137 | | [`RenameCpp20Constraints.cpp`, line 302](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L302) | [R1137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1137.txt) +R1138 | | [`RenameCpp20Constraints.cpp`, line 304](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L304) | [R1138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1138.txt) +R1139 | | [`RenameCpp20Constraints.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L305) | [R1139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1139.txt) +R1140 | | [`RenameCpp20Constraints.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L306) | [R1140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1140.txt) +R1141 | | [`RenameCpp20Constraints.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L307) | [R1141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1141.txt) +R1142 | | [`RenameCpp20Constraints.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L310) | [R1142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1142.txt) +R1143 | | [`RenameCpp20Constraints.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L311) | [R1143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1143.txt) +R1144 | | [`RenameCpp20Constraints.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L316) | [R1144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1144.txt) +R1145 | | [`RenameCpp20Constraints.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L317) | [R1145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1145.txt) +R1146 | | [`RenameCpp20Constraints.cpp`, line 318](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L318) | [R1146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1146.txt) +R1147 | | [`RenameCpp20Constraints.cpp`, line 320](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L320) | [R1147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1147.txt) +R1148 | | [`RenameCpp20Constraints.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L321) | [R1148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1148.txt) +R1149 | | [`RenameCpp20Constraints.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L322) | [R1149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1149.txt) +R1150 | | [`RenameCpp20Constraints.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L323) | [R1150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1150.txt) +R1151 | | [`RenameCpp20Constraints.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L325) | [R1151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1151.txt) +R1152 | | [`RenameCpp20Constraints.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L326) | [R1152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1152.txt) +R1153 | | [`RenameCpp20Constraints.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L327) | [R1153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1153.txt) +R1154 | | [`RenameCpp20Constraints.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L328) | [R1154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1154.txt) +R1155 | | [`RenameCpp20Constraints.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L329) | [R1155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1155.txt) +R1156 | | [`RenameCpp20Constraints.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L330) | [R1156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1156.txt) +R1157 | | [`RenameCpp20Constraints.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L331) | [R1157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1157.txt) +R1158 | | [`RenameCpp20Constraints.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L334) | [R1158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1158.txt) +R1159 | | [`RenameCpp20Constraints.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L335) | [R1159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1159.txt) +R1160 | | [`RenameCpp20Constraints.cpp`, line 340](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L340) | [R1160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1160.txt) +R1161 | | [`RenameCpp20Constraints.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L341) | [R1161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1161.txt) +R1162 | | [`RenameCpp20Constraints.cpp`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L342) | [R1162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1162.txt) +R1163 | | [`RenameCpp20Constraints.cpp`, line 344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L344) | [R1163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1163.txt) +R1164 | | [`RenameCpp20Constraints.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L345) | [R1164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1164.txt) +R1165 | | [`RenameCpp20Constraints.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L346) | [R1165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1165.txt) +R1166 | | [`RenameCpp20Constraints.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L347) | [R1166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1166.txt) +R1167 | | [`RenameCpp20Constraints.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L348) | [R1167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1167.txt) +R1168 | | [`RenameCpp20Constraints.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L349) | [R1168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1168.txt) +R1169 | | [`RenameCpp20Constraints.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L350) | [R1169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1169.txt) +R1170 | | [`RenameCpp20Constraints.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L352) | [R1170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1170.txt) +R1171 | | [`RenameCpp20Constraints.cpp`, line 353](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L353) | [R1171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1171.txt) +R1172 | | [`RenameCpp20Constraints.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L354) | [R1172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1172.txt) +R1173 | | [`RenameCpp20Constraints.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L355) | [R1173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1173.txt) +R1174 | | [`RenameCpp20Constraints.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L358) | [R1174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1174.txt) +R1175 | | [`RenameCpp20Constraints.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L359) | [R1175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1175.txt) +R1176 | | [`RenameCpp20Constraints.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L364) | [R1176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1176.txt) +R1177 | | [`RenameCpp20Constraints.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L365) | [R1177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1177.txt) +R1178 | | [`RenameCpp20Constraints.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L366) | [R1178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1178.txt) +R1179 | | [`RenameCpp20Constraints.cpp`, line 368](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L368) | [R1179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1179.txt) +R1180 | | [`RenameCpp20Constraints.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L369) | [R1180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1180.txt) +R1181 | | [`RenameCpp20Constraints.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L370) | [R1181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1181.txt) +R1182 | | [`RenameCpp20Constraints.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L371) | [R1182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1182.txt) +R1183 | | [`RenameCpp20Constraints.cpp`, line 372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L372) | [R1183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1183.txt) +R1184 | | [`RenameCpp20Constraints.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L374) | [R1184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1184.txt) +R1185 | | [`RenameCpp20Constraints.cpp`, line 375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L375) | [R1185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1185.txt) +R1186 | | [`RenameCpp20Constraints.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L376) | [R1186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1186.txt) +R1187 | | [`RenameCpp20Constraints.cpp`, line 377](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L377) | [R1187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1187.txt) +R1188 | | [`RenameCpp20Constraints.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L378) | [R1188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1188.txt) +R1189 | | [`RenameCpp20Constraints.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L379) | [R1189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1189.txt) +R1190 | | [`RenameCpp20Constraints.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L380) | [R1190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1190.txt) +R1191 | | [`RenameCpp20Constraints.cpp`, line 383](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L383) | [R1191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1191.txt) +R1192 | | [`RenameCpp20Constraints.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L384) | [R1192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1192.txt) +R1193 | | [`RenameCpp20Constraints.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L389) | [R1193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1193.txt) +R1194 | | [`RenameCpp20Constraints.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L390) | [R1194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1194.txt) +R1195 | | [`RenameCpp20Constraints.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L391) | [R1195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1195.txt) +R1196 | | [`RenameCpp20Constraints.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L393) | [R1196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1196.txt) +R1197 | | [`RenameCpp20Constraints.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L394) | [R1197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1197.txt) +R1198 | | [`RenameCpp20Constraints.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L395) | [R1198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1198.txt) +R1199 | | [`RenameCpp20Constraints.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L396) | [R1199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1199.txt) +R1200 | | [`RenameCpp20Constraints.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L397) | [R1200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1200.txt) +R1201 | | [`RenameCpp20Constraints.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L398) | [R1201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1201.txt) +R1202 | | [`RenameCpp20Constraints.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L399) | [R1202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1202.txt) +R1203 | | [`RenameCpp20Constraints.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L401) | [R1203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1203.txt) +R1204 | | [`RenameCpp20Constraints.cpp`, line 402](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L402) | [R1204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1204.txt) +R1205 | | [`RenameCpp20Constraints.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L403) | [R1205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1205.txt) +R1206 | | [`RenameCpp20Constraints.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L404) | [R1206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1206.txt) +R1207 | | [`RenameCpp20Constraints.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L405) | [R1207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1207.txt) +R1208 | | [`RenameCpp20Constraints.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L408) | [R1208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1208.txt) +R1209 | | [`RenameCpp20Constraints.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L409) | [R1209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1209.txt) +R1210 | | [`RenameCpp20Constraints.cpp`, line 441](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L441) | [R1210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1210.txt) +R1211 | | [`RenameCpp20Constraints.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L443) | [R1211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1211.txt) +R1212 | | [`RenameCpp20Constraints.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L446) | [R1212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1212.txt) +R1213 | | [`RenameCpp20Constraints.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L452) | [R1213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1213.txt) +R1214 | | [`RenameCpp20Constraints.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L454) | [R1214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1214.txt) +R1215 | | [`RenameCpp20Constraints.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L457) | [R1215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1215.txt) +R1216 | | [`RenameCpp20Constraints.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L463) | [R1216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1216.txt) +R1217 | | [`RenameCpp20Constraints.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L465) | [R1217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1217.txt) +R1218 | | [`RenameCpp20Constraints.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L468) | [R1218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1218.txt) +R1219 | | [`RenameCpp20Constraints.cpp`, line 474](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L474) | [R1219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1219.txt) +R1220 | | [`RenameCpp20Constraints.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L476) | [R1220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1220.txt) +R1221 | | [`RenameCpp20Constraints.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L483) | [R1221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1221.txt) +R1222 | | [`RenameCpp20Constraints.cpp`, line 485](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L485) | [R1222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1222.txt) +R1223 | | [`RenameCpp20Constraints.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L488) | [R1223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1223.txt) +R1224 | | [`RenameCpp20Constraints.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L494) | [R1224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1224.txt) +R1225 | | [`RenameCpp20Constraints.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L496) | [R1225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1225.txt) +R1226 | | [`RenameCpp20Constraints.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L503) | [R1226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1226.txt) +R1227 | | [`RenameCpp20Constraints.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L505) | [R1227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1227.txt) +R1228 | | [`RenameCpp20Constraints.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L512) | [R1228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1228.txt) +R1229 | | [`RenameCpp20Constraints.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L514) | [R1229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1229.txt) +R1230 | | [`RenameCpp20Constraints.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L522) | [R1230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1230.txt) +R1231 | | [`RenameCpp20Constraints.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L524) | [R1231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1231.txt) +R1232 | | [`RenameCpp20Constraints.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L527) | [R1232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1232.txt) +R1233 | | [`RenameCpp20Constraints.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L533) | [R1233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1233.txt) +R1234 | | [`RenameCpp20Constraints.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L535) | [R1234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1234.txt) +R1235 | | [`RenameCpp20Constraints.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L538) | [R1235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1235.txt) +R1236 | | [`RenameCpp20Constraints.cpp`, line 544](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L544) | [R1236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1236.txt) +R1237 | | [`RenameCpp20Constraints.cpp`, line 546](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L546) | [R1237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1237.txt) +R1238 | | [`RenameCpp20Constraints.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L549) | [R1238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1238.txt) +R1239 | | [`RenameCpp20Constraints.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L555) | [R1239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1239.txt) +R1240 | | [`RenameCpp20Constraints.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L557) | [R1240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1240.txt) +R1241 | | [`RenameCpp20Constraints.cpp`, line 565](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L565) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1242 | | [`RenameCpp20Constraints.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L567) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1243 | | [`RenameCpp20Constraints.cpp`, line 574](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L574) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1244 | | [`RenameCpp20Constraints.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L576) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1245 | | [`RenameCpp20Constraints.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L583) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L585) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L588) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 594](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L594) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 596](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L596) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 599](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L599) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L606) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L608) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L609) | [R1253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1253.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 611](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L611) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 615](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L615) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 616](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L616) | [R1256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1256.txt) +R1257 | | [`RenameCpp20Constraints.cpp`, line 623](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L623) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1258 | | [`RenameCpp20Constraints.cpp`, line 625](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L625) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L626) | [R1259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1259.txt) +R1260 | | [`RenameCpp20Constraints.cpp`, line 628](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L628) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1261 | | [`RenameCpp20Constraints.cpp`, line 631](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L631) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 632](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L632) | [R1262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1262.txt) +R1263 | | [`RenameCpp20Constraints.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L639) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1264 | | [`RenameCpp20Constraints.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L641) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L642) | [R1265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1265.txt) +R1266 | | [`RenameCpp20Constraints.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L644) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1267 | | [`RenameCpp20Constraints.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L647) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L648) | [R1268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1268.txt) +R1269 | | [`RenameCpp20Constraints.cpp`, line 656](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L656) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1270 | | [`RenameCpp20Constraints.cpp`, line 658](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L658) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 659](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L659) | [R1271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1271.txt) +R1272 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1273 | | [`RenameCpp20Constraints.cpp`, line 665](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L665) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L666) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1275 | | [`RenameCpp20Constraints.cpp`, line 673](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L673) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1276 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L676) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L682) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 689](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L689) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L691) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L697) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 706](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L706) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L708) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L709) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 711](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L711) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 715](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L715) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 723](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L723) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 725](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L725) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 726](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L726) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 739](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L739) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 741](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L741) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L742) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L744) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L756) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L758) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L759) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L761) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 773](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L773) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L776) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 778](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L778) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L781) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L791) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 794](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L794) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 797](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L797) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 798](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L798) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 806](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L806) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L809) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 816](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L816) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 817](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L817) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 818](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L818) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 840](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L840) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 841](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L841) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 842](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L842) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 843](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L843) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 847](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L847) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 853](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L853) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 864](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L864) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 865](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L865) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L866) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L867) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 871](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L871) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 877](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L877) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 888](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L888) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L889) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L890) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 891](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L891) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L892) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 896](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L896) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L902) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 903](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L903) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L912) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L915) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 916](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L916) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 917](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L917) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 927](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L927) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L929) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 936](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L936) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 937](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L937) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L940) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 941](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L941) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L952) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L954) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 962](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L962) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L965) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 966](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L966) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 967](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L967) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 979](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L979) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 980](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L980) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L981) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L988) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 989](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L989) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 994](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L994) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 995](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L995) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 1004](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1004) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1005) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 1006](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1006) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 1013](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1013) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 1014](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1014) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1018) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1019](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1019) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1029](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1029) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1030) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1031](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1031) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1038](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1038) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1039](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1039) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1042) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1045](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1045) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1046) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1056](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1056) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1057) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1058](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1058) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1066](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1066) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1067) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1070](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1070) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1071](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1071) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1077](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1077) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1083](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1083) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1092](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1092) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1096) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1119) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1122) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1126) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1132) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1135) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1139) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1145) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1148) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1152) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1163) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1167) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1176) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1180) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1186) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1189) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1193) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1204) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1221) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1224) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1233) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1243) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1253) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1256) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) diff --git a/results/preliminary/annotated/QtCreatorResults.md b/results/preliminary/annotated/QtCreatorResults.md new file mode 100644 index 0000000..131844a --- /dev/null +++ b/results/preliminary/annotated/QtCreatorResults.md @@ -0,0 +1,1538 @@ +# Qt Creator + +Home: [Qt Creator](http://doc.qt.io/qtcreator/) + +Version: [4.6.0 beta 1](http://blog.qt.io/blog/2018/02/07/qt-creator-4-6-beta-released/) + +Notes: + +* Only very few tests have been done at this time, but the page is created as a template + for others to move on and contribute test results +* For all tests, the **ClangCodeModel** is enabled via "About Plugins..." followed by Preferences > C++ > CodeModel. +* Set-up the project as "File > New Project" pointing to the toplevel CMakeLists.txt and choose the Desktop kit. + +
+ +## Rename +Case | Result | Location | Expected Diff +---- | ------ | -------- | ------------- +R1 | | [`Rename.cpp`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L12) | [R1.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1.txt) +R2 | | [`Rename.cpp`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L15) | [R2.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R2.txt) +R3 | | [`Rename.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L16) | [R3.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R3.txt) +R4 | | [`Rename.cpp`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L17) | [R4.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R4.txt) +R5 | Failure [QTCREATORBUG-20060](https://bugreports.qt.io/browse/QTCREATORBUG-20060) | [`Rename.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L33) | [R5.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R5.txt) +R6 | Failure [QTCREATORBUG-20060](https://bugreports.qt.io/browse/QTCREATORBUG-20060) | [`Rename.cpp`, line 37](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L37) | [R6.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R6.txt) +R7 | | [`Rename.cpp`, line 42](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L42) | [R7.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R7.txt) +R8 | | [`Rename.cpp`, line 47](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L47) | [R8.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R8.txt) +R9 | | [`Rename.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L48) | [R9.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R9.txt) +R10 | | [`Rename.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L51) | [R10.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R10.txt) +R11 | | [`Rename.cpp`, line 59](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L59) | [R11.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R11.txt) +R12 | | [`Rename.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L62) | [R12.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R12.txt) +R13 | | [`Rename.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L64) | [R13.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R13.txt) +R14 | | [`Rename.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L67) | [R14.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R14.txt) +R15 | | [`Rename.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L75) | [R15.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R15.txt) +R16 | | [`Rename.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L85) | [R16.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R16.txt) +R17 | | [`Rename.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L93) | [R17.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R17.txt) +R18 | | [`Rename.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L96) | [R18.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R18.txt) +R19 | | [`Rename.cpp`, line 127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L127) | [R19.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R19.txt) +R20 | | [`Rename.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L152) | [R20.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R20.txt) +R21 | | [`Rename.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L153) | [R21.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R21.txt) +R22 | | [`Rename.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L154) | [R22.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R22.txt) +R23 | | [`Rename.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L157) | [R23.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R23.txt) +R24 | | [`Rename.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L158) | [R24.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R24.txt) +R25 | | [`Rename.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L159) | [R25.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R25.txt) +R26 | | [`Rename.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L161) | [R26.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R26.txt) +R27 | | [`Rename.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L164) | [R27.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R27.txt) +R28 | | [`Rename.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L165) | [R28.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R28.txt) +R29 | | [`Rename.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L166) | [R29.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R29.txt) +R30 | | [`Rename.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L169) | [R30.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R30.txt) +R31 | | [`Rename.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L173) | [R31.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R31.txt) +R32 | | [`Rename.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L176) | [R32.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R32.txt) +R33 | | [`Rename.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L185) | [R33.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R33.txt) +R34 | | [`Rename.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L195) | [R34.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R34.txt) +R35 | | [`Rename.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L208) | [R35.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R35.txt) +R36 | | [`Rename.cpp`, line 218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L218) | [R36.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R36.txt) +R37 | | [`Rename.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L224) | [R37.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R37.txt) +R38 | | [`Rename.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L226) | [R38.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R38.txt) +R39 | | [`Rename.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L228) | [R39.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R39.txt) +R40 | | [`Rename.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L233) | [R40.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R40.txt) +R41 | | [`Rename.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L236) | [R41.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R41.txt) +R42 | | [`Rename.cpp`, line 238](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L238) | [R42.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R42.txt) +R43 | | [`Rename.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L240) | [R43.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R43.txt) +R44 | | [`Rename.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L245) | [R44.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R44.txt) +R45 | | [`Rename.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L248) | [R45.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R45.txt) +R46 | | [`Rename.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L253) | [R46.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R46.txt) +R47 | | [`Rename.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L255) | [R47.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R47.txt) +R48 | | [`Rename.cpp`, line 256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L256) | [R48.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R48.txt) +R49 | | [`Rename.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L257) | [R49.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R49.txt) +R50 | | [`Rename.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L258) | [R50.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R50.txt) +R51 | | [`Rename.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L259) | [R51.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R51.txt) +R52 | | [`Rename.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L260) | [R52.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R52.txt) +R53 | | [`Rename.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L263) | [R53.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R53.txt) +R54 | | [`Rename.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L264) | [R54.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R54.txt) +R55 | | [`Rename.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L270) | [R55.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R55.txt) +R56 | | [`Rename.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L272) | [R56.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R56.txt) +R57 | | [`Rename.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L274) | [R57.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R57.txt) +R58 | | [`Rename.cpp`, line 276](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L276) | [R58.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R58.txt) +R59 | | [`Rename.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L280) | [R59.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R59.txt) +R60 | | [`Rename.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L283) | [R60.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R60.txt) +R61 | | [`Rename.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L286) | [R61.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R61.txt) +R62 | | [`Rename.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L297) | [R62.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R62.txt) +R63 | | [`Rename.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L298) | [R63.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R63.txt) +R64 | | [`Rename.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L299) | [R64.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R64.txt) +R65 | | [`Rename.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L305) | [R65.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R65.txt) +R66 | | [`Rename.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L307) | [R66.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R66.txt) +R67 | | [`Rename.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L308) | [R67.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R67.txt) +R68 | | [`Rename.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L314) | [R68.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R68.txt) +R69 | | [`Rename.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L315) | [R69.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R69.txt) +R70 | | [`Rename.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L317) | [R70.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R70.txt) +R71 | | [`Rename.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L323) | [R71.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R71.txt) +R72 | | [`Rename.cpp`, line 324](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L324) | [R72.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R72.txt) +R73 | | [`Rename.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L326) | [R73.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R73.txt) +R74 | | [`Rename.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L327) | [R74.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R74.txt) +R75 | | [`Rename.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L328) | [R75.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R75.txt) +R76 | | [`Rename.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L334) | [R76.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R76.txt) +R77 | | [`Rename.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L335) | [R77.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R77.txt) +R78 | | [`Rename.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L336) | [R78.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R78.txt) +R79 | | [`Rename.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L338) | [R79.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R79.txt) +R80 | | [`Rename.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L339) | [R80.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R80.txt) +R81 | | [`Rename.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L345) | [R81.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R81.txt) +R82 | | [`Rename.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L346) | [R82.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R82.txt) +R83 | | [`Rename.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L347) | [R83.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R83.txt) +R84 | | [`Rename.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L349) | [R84.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R84.txt) +R85 | | [`Rename.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L351) | [R85.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R85.txt) +R86 | | [`Rename.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L365) | [R86.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R86.txt) +R87 | | [`Rename.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L369) | [R87.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R87.txt) +R88 | | [`Rename.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L370) | [R88.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R88.txt) +R89 | | [`Rename.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L374) | [R89.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R89.txt) +R90 | | [`Rename.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L378) | [R90.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R90.txt) +R91 | | [`Rename.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L381) | [R91.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R91.txt) +R92 | | [`Rename.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L382) | [R92.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R92.txt) +R93 | | [`Rename.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L384) | [R93.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R93.txt) +R94 | | [`Rename.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L385) | [R94.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R94.txt) +R95 | | [`Rename.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L386) | [R95.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R95.txt) +R96 | | [`Rename.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L389) | [R96.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R96.txt) +R97 | | [`Rename.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L390) | [R97.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R97.txt) +R98 | | [`Rename.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L391) | [R98.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R98.txt) +R99 | | [`Rename.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L393) | [R99.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R99.txt) +R100 | | [`Rename.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L395) | [R100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R100.txt) +R101 | | [`Rename.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L397) | [R101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R101.txt) +R102 | | [`Rename.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L398) | [R102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R102.txt) +R103 | | [`Rename.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L399) | [R103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R103.txt) +R104 | | [`Rename.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L401) | [R104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R104.txt) +R105 | | [`Rename.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L403) | [R105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R105.txt) +R106 | | [`Rename.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L404) | [R106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R106.txt) +R107 | | [`Rename.cpp`, line 410](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L410) | [R107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R107.txt) +R108 | | [`Rename.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L411) | [R108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R108.txt) +R109 | | [`Rename.cpp`, line 412](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L412) | [R109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R109.txt) +R110 | | [`Rename.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L416) | [R110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R110.txt) +R111 | | [`Rename.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L418) | [R111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R111.txt) +R112 | | [`Rename.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L422) | [R112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R112.txt) +R113 | | [`Rename.cpp`, line 426](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L426) | [R113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R113.txt) +R114 | | [`Rename.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L428) | [R114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R114.txt) +R115 | | [`Rename.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L433) | [R115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R115.txt) +R116 | | [`Rename.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L437) | [R116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R116.txt) +R117 | | [`Rename.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L439) | [R117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R117.txt) +R118 | | [`Rename.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L445) | [R118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R118.txt) +R119 | | [`Rename.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L446) | [R119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R119.txt) +R120 | | [`Rename.cpp`, line 448](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L448) | [R120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R120.txt) +R121 | | [`Rename.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L449) | [R121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R121.txt) +R122 | | [`Rename.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L451) | [R122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R122.txt) +R123 | | [`Rename.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L452) | [R123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R123.txt) +R124 | | [`Rename.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L454) | [R124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R124.txt) +R125 | | [`Rename.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L455) | [R125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R125.txt) +R126 | | [`Rename.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L459) | [R126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R126.txt) +R127 | | [`Rename.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L461) | [R127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R127.txt) +R128 | | [`Rename.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L465) | [R128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R128.txt) +R129 | | [`Rename.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L466) | [R129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R129.txt) +R130 | | [`Rename.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L468) | [R130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R130.txt) +R131 | | [`Rename.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L469) | [R131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R131.txt) +R132 | | [`Rename.cpp`, line 470](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L470) | [R132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R132.txt) +R133 | | [`Rename.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L475) | [R133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R133.txt) +R134 | | [`Rename.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L479) | [R134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R134.txt) +R135 | | [`Rename.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L481) | [R135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R135.txt) +R136 | | [`Rename.cpp`, line 487](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L487) | [R136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R136.txt) +R137 | | [`Rename.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L488) | [R137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R137.txt) +R138 | | [`Rename.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L490) | [R138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R138.txt) +R139 | | [`Rename.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L491) | [R139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R139.txt) +R140 | | [`Rename.cpp`, line 493](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L493) | [R140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R140.txt) +R141 | | [`Rename.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L494) | [R141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R141.txt) +R142 | | [`Rename.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L496) | [R142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R142.txt) +R143 | | [`Rename.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L497) | [R143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R143.txt) +R144 | | [`Rename.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L503) | [R144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R144.txt) +R145 | | [`Rename.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L504) | [R145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R145.txt) +R146 | (deprecated) | [`Rename.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L506) | [R146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R146.txt) +R147 | | [`Rename.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L507) | [R147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R147.txt) +R148 | | [`Rename.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L508) | [R148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R148.txt) +R149 | | [`Rename.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L509) | [R149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R149.txt) +R150 | | [`Rename.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L510) | [R150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R150.txt) +R151 | | [`Rename.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L511) | [R151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R151.txt) +R152 | | [`Rename.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L512) | [R152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R152.txt) +R153 | | [`Rename.cpp`, line 513](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L513) | [R153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R153.txt) +R154 | | [`Rename.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L516) | [R154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R154.txt) +R155 | | [`Rename.cpp`, line 518](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L518) | [R155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R155.txt) +R156 | | [`Rename.cpp`, line 519](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L519) | [R156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R156.txt) +R157 | | [`Rename.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L523) | [R157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R157.txt) +R158 | | [`Rename.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L524) | [R158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R158.txt) +R159 | | [`Rename.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L526) | [R159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R159.txt) +R160 | | [`Rename.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L527) | [R160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R160.txt) +R161 | | [`Rename.cpp`, line 528](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L528) | [R161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R161.txt) +R162 | | [`Rename.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L529) | [R162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R162.txt) +R163 | | [`Rename.cpp`, line 530](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L530) | [R163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R163.txt) +R164 | | [`Rename.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L531) | [R164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R164.txt) +R165 | | [`Rename.cpp`, line 532](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L532) | [R165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R165.txt) +R166 | | [`Rename.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L535) | [R166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R166.txt) +R167 | | [`Rename.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L537) | [R167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R167.txt) +R168 | | [`Rename.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L538) | [R168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R168.txt) +R169 | | [`Rename.cpp`, line 542](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L542) | [R169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R169.txt) +R170 | | [`Rename.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L549) | [R170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R170.txt) +R171 | | [`Rename.cpp`, line 551](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L551) | [R171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R171.txt) +R172 | | [`Rename.cpp`, line 553](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L553) | [R172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R172.txt) +R173 | | [`Rename.cpp`, line 556](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L556) | [R173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R173.txt) +R174 | | [`Rename.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L558) | [R174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R174.txt) +R175 | | [`Rename.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L560) | [R175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R175.txt) +R176 | | [`Rename.cpp`, line 564](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L564) | [R176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R176.txt) +R177 | | [`Rename.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L567) | [R177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R177.txt) +R178 | | [`Rename.cpp`, line 571](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L571) | [R178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R178.txt) +R179 | | [`Rename.cpp`, line 572](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L572) | [R179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R179.txt) +R180 | | [`Rename.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L575) | [R180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R180.txt) +R181 | | [`Rename.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L576) | [R181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R181.txt) +R182 | | [`Rename.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L583) | [R182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R182.txt) +R183 | | [`Rename.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L584) | [R183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R183.txt) +R184 | | [`Rename.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L585) | [R184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R184.txt) +R185 | | [`Rename.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L587) | [R185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R185.txt) +R186 | | [`Rename.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L588) | [R186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R186.txt) +R187 | | [`Rename.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L589) | [R187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R187.txt) +R188 | | [`Rename.cpp`, line 591](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L591) | [R188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R188.txt) +R189 | | [`Rename.cpp`, line 593](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L593) | [R189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R189.txt) +R190 | | [`Rename.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L609) | [R190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R190.txt) +R191 | | [`Rename.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L617) | [R191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R191.txt) +R192 | | [`Rename.cpp`, line 618](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L618) | [R192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R192.txt) +R193 | | [`Rename.cpp`, line 622](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L622) | [R193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R193.txt) +R194 | | [`Rename.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L624) | [R194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R194.txt) +R195 | | [`Rename.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L626) | [R195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R195.txt) +R196 | | [`Rename.cpp`, line 635](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L635) | [R196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R196.txt) +R197 | | [`Rename.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L636) | [R197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R197.txt) +R198 | | [`Rename.cpp`, line 637](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L637) | [R198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R198.txt) +R199 | | [`Rename.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L639) | [R199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R199.txt) +R200 | | [`Rename.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L640) | [R200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R200.txt) +R201 | | [`Rename.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L641) | [R201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R201.txt) +R202 | | [`Rename.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L642) | [R202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R202.txt) +R203 | | [`Rename.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L643) | [R203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R203.txt) +R204 | | [`Rename.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L644) | [R204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R204.txt) +R205 | | [`Rename.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L645) | [R205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R205.txt) +R206 | | [`Rename.cpp`, line 652](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L652) | [R206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R206.txt) +R207 | | [`Rename.cpp`, line 653](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L653) | [R207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R207.txt) +R208 | | [`Rename.cpp`, line 655](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L655) | [R208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R208.txt) +R209 | | [`Rename.cpp`, line 662](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L662) | [R209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R209.txt) +R210 | | [`Rename.cpp`, line 674](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L674) | [R210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R210.txt) +R211 | | [`Rename.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L681) | [R211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R211.txt) +R212 | | [`Rename.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L682) | [R212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R212.txt) +R213 | | [`Rename.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L683) | [R213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R213.txt) +R214 | | [`Rename.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L685) | [R214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R214.txt) +R215 | | [`Rename.cpp`, line 686](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L686) | [R215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R215.txt) +R216 | | [`Rename.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L687) | [R216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R216.txt) +R217 | | [`Rename.cpp`, line 690](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L690) | [R217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R217.txt) +R218 | | [`Rename.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L691) | [R218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R218.txt) +R219 | | [`Rename.cpp`, line 693](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L693) | [R219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R219.txt) +R220 | | [`Rename.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L694) | [R220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R220.txt) +R221 | | [`Rename.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L697) | [R221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R221.txt) +R222 | | [`Rename.cpp`, line 699](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L699) | [R222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R222.txt) +R223 | | [`Rename.cpp`, line 700](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L700) | [R223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R223.txt) +R224 | | [`Rename.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L702) | [R224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R224.txt) +R225 | | [`Rename.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L705) | [R225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R225.txt) +R226 | | [`Rename.cpp`, line 707](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L707) | [R226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R226.txt) +R227 | | [`Rename.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L708) | [R227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R227.txt) +R228 | | [`Rename.cpp`, line 717](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L717) | [R228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R228.txt) +R229 | | [`Rename.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L722) | [R229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R229.txt) +R230 | | [`Rename.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L728) | [R230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R230.txt) +R231 | | [`Rename.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L730) | [R231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R231.txt) +R232 | | [`Rename.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L732) | [R232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R232.txt) +R233 | | [`Rename.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L734) | [R233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R233.txt) +R234 | | [`Rename.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L736) | [R234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R234.txt) +R235 | | [`Rename.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L738) | [R235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R235.txt) +R236 | | [`Rename.cpp`, line 740](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L740) | [R236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R236.txt) +R237 | (deprecated) | [`Rename.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L742) | [R237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R237.txt) +R238 | (deprecated) | [`Rename.cpp`, line 743](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L743) | [R238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R238.txt) +R239 | | [`Rename.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L744) | [R239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R239.txt) +R240 | | [`Rename.cpp`, line 746](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L746) | [R240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R240.txt) +R241 | | [`Rename.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L748) | [R241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R241.txt) +R242 | | [`Rename.cpp`, line 750](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L750) | [R242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R242.txt) +R243 | | [`Rename.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/Rename.cpp#L752) | [R243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R243.txt) +R244 | | [`RenameCpp11.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L7) | [R244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R244.txt) +R245 | | [`RenameCpp11.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L9) | [R245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R245.txt) +R246 | | [`RenameCpp11.h`, line 12](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L12) | [R246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R246.txt) +R247 | | [`RenameCpp11.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L16) | [R247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R247.txt) +R248 | | [`RenameCpp11.h`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L23) | [R248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R248.txt) +R249 | | [`RenameCpp11.h`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.h#L25) | [R249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R249.txt) +R250 | | [`RenameCpp11.cpp`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L14) | [R250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R250.txt) +R251 | | [`RenameCpp11.cpp`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L16) | [R251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R251.txt) +R252 | | [`RenameCpp11.cpp`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L18) | [R252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R252.txt) +R253 | | [`RenameCpp11.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L20) | [R253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R253.txt) +R254 | | [`RenameCpp11.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L23) | [R254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R254.txt) +R255 | | [`RenameCpp11.cpp`, line 25](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L25) | [R255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R255.txt) +R256 | | [`RenameCpp11.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L28) | [R256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R256.txt) +R257 | | [`RenameCpp11.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L33) | [R257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R257.txt) +R258 | | [`RenameCpp11.cpp`, line 38](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L38) | [R258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R258.txt) +R259 | | [`RenameCpp11.cpp`, line 40](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L40) | [R259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R259.txt) +R260 | | [`RenameCpp11.cpp`, line 43](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L43) | [R260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R260.txt) +R261 | | [`RenameCpp11.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L49) | [R261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R261.txt) +R262 | | [`RenameCpp11.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L51) | [R262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R262.txt) +R263 | | [`RenameCpp11.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L55) | [R263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R263.txt) +R264 | | [`RenameCpp11.cpp`, line 57](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L57) | [R264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R264.txt) +R265 | | [`RenameCpp11.cpp`, line 63](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L63) | [R265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R265.txt) +R266 | | [`RenameCpp11.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L69) | [R266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R266.txt) +R267 | | [`RenameCpp11.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L75) | [R267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R267.txt) +R268 | | [`RenameCpp11.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L81) | [R268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R268.txt) +R269 | | [`RenameCpp11.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L87) | [R269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R269.txt) +R270 | | [`RenameCpp11.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L89) | [R270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R270.txt) +R271 | | [`RenameCpp11.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L95) | [R271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R271.txt) +R272 | | [`RenameCpp11.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L98) | [R272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R272.txt) +R273 | | [`RenameCpp11.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L100) | [R273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R273.txt) +R274 | | [`RenameCpp11.cpp`, line 101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L101) | [R274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R274.txt) +R275 | | [`RenameCpp11.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L103) | [R275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R275.txt) +R276 | | [`RenameCpp11.cpp`, line 104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L104) | [R276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R276.txt) +R277 | | [`RenameCpp11.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L106) | [R277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R277.txt) +R278 | | [`RenameCpp11.cpp`, line 108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L108) | [R278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R278.txt) +R279 | | [`RenameCpp11.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L109) | [R279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R279.txt) +R280 | | [`RenameCpp11.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L111) | [R280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R280.txt) +R281 | | [`RenameCpp11.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L112) | [R281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R281.txt) +R282 | | [`RenameCpp11.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L143) | [R282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R282.txt) +R283 | | [`RenameCpp11.cpp`, line 146](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L146) | [R283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R283.txt) +R284 | | [`RenameCpp11.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L148) | [R284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R284.txt) +R285 | | [`RenameCpp11.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L149) | [R285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R285.txt) +R286 | | [`RenameCpp11.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L151) | [R286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R286.txt) +R287 | | [`RenameCpp11.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L152) | [R287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R287.txt) +R288 | | [`RenameCpp11.cpp`, line 154](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L154) | [R288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R288.txt) +R289 | | [`RenameCpp11.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L156) | [R289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R289.txt) +R290 | | [`RenameCpp11.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L157) | [R290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R290.txt) +R291 | | [`RenameCpp11.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L159) | [R291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R291.txt) +R292 | | [`RenameCpp11.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L160) | [R292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R292.txt) +R293 | | [`RenameCpp11.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L167) | [R293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R293.txt) +R294 | | [`RenameCpp11.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L173) | [R294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R294.txt) +R295 | | [`RenameCpp11.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L175) | [R295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R295.txt) +R296 | | [`RenameCpp11.cpp`, line 185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L185) | [R296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R296.txt) +R297 | | [`RenameCpp11.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L186) | [R297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R297.txt) +R298 | | [`RenameCpp11.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L188) | [R298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R298.txt) +R299 | | [`RenameCpp11.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L189) | [R299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R299.txt) +R300 | | [`RenameCpp11.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L190) | [R300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R300.txt) +R301 | | [`RenameCpp11.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L191) | [R301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R301.txt) +R302 | | [`RenameCpp11.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L194) | [R302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R302.txt) +R303 | | [`RenameCpp11.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L196) | [R303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R303.txt) +R304 | | [`RenameCpp11.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L197) | [R304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R304.txt) +R305 | | [`RenameCpp11.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L200) | [R305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R305.txt) +R306 | | [`RenameCpp11.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L215) | [R306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R306.txt) +R307 | | [`RenameCpp11.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L217) | [R307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R307.txt) +R308 | | [`RenameCpp11.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L221) | [R308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R308.txt) +R309 | | [`RenameCpp11.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L222) | [R309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R309.txt) +R310 | | [`RenameCpp11.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L223) | [R310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R310.txt) +R311 | | [`RenameCpp11.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L227) | [R311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R311.txt) +R312 | | [`RenameCpp11.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L243) | [R312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R312.txt) +R313 | | [`RenameCpp11.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L251) | [R313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R313.txt) +R314 | | [`RenameCpp11.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L253) | [R314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R314.txt) +R315 | | [`RenameCpp11.cpp`, line 264](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L264) | [R315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R315.txt) +R316 | | [`RenameCpp11.cpp`, line 266](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L266) | [R316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R316.txt) +R317 | | [`RenameCpp11.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L270) | [R317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R317.txt) +R318 | | [`RenameCpp11.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L280) | [R318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R318.txt) +R319 | | [`RenameCpp11.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L281) | [R319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R319.txt) +R320 | | [`RenameCpp11.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L294) | [R320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R320.txt) +R321 | | [`RenameCpp11.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L295) | [R321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R321.txt) +R322 | | [`RenameCpp11.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L346) | [R322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R322.txt) +R323 | | [`RenameCpp11.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L347) | [R323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R323.txt) +R324 | | [`RenameCpp11.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L350) | [R324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R324.txt) +R325 | | [`RenameCpp11.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L354) | [R325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R325.txt) +R326 | | [`RenameCpp11.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L355) | [R326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R326.txt) +R327 | | [`RenameCpp11.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L358) | [R327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R327.txt) +R328 | | [`RenameCpp11.cpp`, line 362](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L362) | [R328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R328.txt) +R329 | | [`RenameCpp11.cpp`, line 363](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L363) | [R329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R329.txt) +R330 | | [`RenameCpp11.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L366) | [R330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R330.txt) +R331 | | [`RenameCpp11.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L370) | [R331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R331.txt) +R332 | | [`RenameCpp11.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L371) | [R332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R332.txt) +R333 | | [`RenameCpp11.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L374) | [R333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R333.txt) +R334 | | [`RenameCpp11.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L378) | [R334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R334.txt) +R335 | | [`RenameCpp11.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L379) | [R335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R335.txt) +R336 | | [`RenameCpp11.cpp`, line 382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L382) | [R336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R336.txt) +R337 | | [`RenameCpp11.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L386) | [R337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R337.txt) +R338 | | [`RenameCpp11.cpp`, line 387](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L387) | [R338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R338.txt) +R339 | | [`RenameCpp11.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L390) | [R339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R339.txt) +R340 | | [`RenameCpp11.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L394) | [R340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R340.txt) +R341 | | [`RenameCpp11.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L395) | [R341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R341.txt) +R342 | | [`RenameCpp11.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L396) | [R342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R342.txt) +R343 | | [`RenameCpp11.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L399) | [R343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R343.txt) +R344 | | [`RenameCpp11.cpp`, line 400](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L400) | [R344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R344.txt) +R345 | | [`RenameCpp11.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L413) | [R345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R345.txt) +R346 | | [`RenameCpp11.cpp`, line 414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L414) | [R346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R346.txt) +R347 | | [`RenameCpp11.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L415) | [R347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R347.txt) +R348 | | [`RenameCpp11.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L418) | [R348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R348.txt) +R349 | | [`RenameCpp11.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L419) | [R349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R349.txt) +R350 | | [`RenameCpp11.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L423) | [R350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R350.txt) +R351 | | [`RenameCpp11.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L424) | [R351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R351.txt) +R352 | | [`RenameCpp11.cpp`, line 425](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L425) | [R352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R352.txt) +R353 | | [`RenameCpp11.cpp`, line 428](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L428) | [R353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R353.txt) +R354 | | [`RenameCpp11.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L429) | [R354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R354.txt) +R355 | | [`RenameCpp11.cpp`, line 433](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L433) | [R355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R355.txt) +R356 | | [`RenameCpp11.cpp`, line 434](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L434) | [R356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R356.txt) +R357 | | [`RenameCpp11.cpp`, line 435](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L435) | [R357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R357.txt) +R358 | | [`RenameCpp11.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L438) | [R358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R358.txt) +R359 | | [`RenameCpp11.cpp`, line 439](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L439) | [R359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R359.txt) +R360 | | [`RenameCpp11.cpp`, line 445](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L445) | [R360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R360.txt) +R361 | | [`RenameCpp11.cpp`, line 447](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L447) | [R361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R361.txt) +R362 | | [`RenameCpp11.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L449) | [R362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R362.txt) +R363 | | [`RenameCpp11.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L451) | [R363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R363.txt) +R364 | | [`RenameCpp11.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L453) | [R364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R364.txt) +R365 | | [`RenameCpp11.cpp`, line 455](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L455) | [R365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R365.txt) +R366 | | [`RenameCpp11.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L457) | [R366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R366.txt) +R367 | | [`RenameCpp11.cpp`, line 459](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L459) | [R367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R367.txt) +R368 | | [`RenameCpp11.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L461) | [R368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R368.txt) +R369 | | [`RenameCpp11.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L463) | [R369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R369.txt) +R370 | | [`RenameCpp11.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L465) | [R370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R370.txt) +R371 | | [`RenameCpp11.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L467) | [R371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R371.txt) +R372 | | [`RenameCpp11.cpp`, line 469](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L469) | [R372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R372.txt) +R373 | | [`RenameCpp11.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L473) | [R373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R373.txt) +R374 | | [`RenameCpp11.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L475) | [R374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R374.txt) +R375 | | [`RenameCpp11.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L476) | [R375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R375.txt) +R376 | | [`RenameCpp11.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L481) | [R376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R376.txt) +R377 | | [`RenameCpp11.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L483) | [R377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R377.txt) +R378 | | [`RenameCpp11.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L489) | [R378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R378.txt) +R379 | | [`RenameCpp11.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L492) | [R379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R379.txt) +R380 | | [`RenameCpp11.cpp`, line 499](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L499) | [R380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R380.txt) +R381 | | [`RenameCpp11.cpp`, line 504](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L504) | [R381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R381.txt) +R382 | | [`RenameCpp11.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L505) | [R382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R382.txt) +R383 | | [`RenameCpp11.cpp`, line 506](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L506) | [R383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R383.txt) +R384 | | [`RenameCpp11.cpp`, line 507](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L507) | [R384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R384.txt) +R385 | | [`RenameCpp11.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L509) | [R385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R385.txt) +R386 | | [`RenameCpp11.cpp`, line 516](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L516) | [R386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R386.txt) +R387 | | [`RenameCpp11.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L520) | [R387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R387.txt) +R388 | | [`RenameCpp11.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L522) | [R388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R388.txt) +R389 | | [`RenameCpp11.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L523) | [R389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R389.txt) +R390 | | [`RenameCpp11.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L527) | [R390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R390.txt) +R391 | | [`RenameCpp11.cpp`, line 529](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L529) | [R391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R391.txt) +R392 | | [`RenameCpp11.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L533) | [R392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R392.txt) +R393 | | [`RenameCpp11.cpp`, line 537](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L537) | [R393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R393.txt) +R394 | | [`RenameCpp11.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L538) | [R394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R394.txt) +R395 | | [`RenameCpp11.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L539) | [R395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R395.txt) +R396 | | [`RenameCpp11.cpp`, line 543](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L543) | [R396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R396.txt) +R397 | | [`RenameCpp11.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L555) | [R397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R397.txt) +R398 | | [`RenameCpp11.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L557) | [R398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R398.txt) +R399 | | [`RenameCpp11.cpp`, line 558](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L558) | [R399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R399.txt) +R400 | | [`RenameCpp11.cpp`, line 561](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L561) | [R400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R400.txt) +R401 | | [`RenameCpp11.cpp`, line 562](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L562) | [R401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R401.txt) +R402 | | [`RenameCpp11.cpp`, line 573](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L573) | [R402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R402.txt) +R403 | | [`RenameCpp11.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L577) | [R403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R403.txt) +R404 | | [`RenameCpp11.cpp`, line 581](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L581) | [R404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R404.txt) +R405 | | [`RenameCpp11.cpp`, line 582](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L582) | [R405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R405.txt) +R406 | | [`RenameCpp11.cpp`, line 587](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L587) | [R406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R406.txt) +R407 | | [`RenameCpp11.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L600) | [R407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R407.txt) +R408 | | [`RenameCpp11.cpp`, line 602](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L602) | [R408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R408.txt) +R409 | | [`RenameCpp11.cpp`, line 605](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L605) | [R409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R409.txt) +R410 | | [`RenameCpp11.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L606) | [R410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R410.txt) +R411 | | [`RenameCpp11.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L607) | [R411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R411.txt) +R412 | | [`RenameCpp11.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L608) | [R412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R412.txt) +R413 | | [`RenameCpp11.cpp`, line 636](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L636) | [R413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R413.txt) +R414 | | [`RenameCpp11.cpp`, line 638](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L638) | [R414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R414.txt) +R415 | | [`RenameCpp11.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L639) | [R415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R415.txt) +R416 | | [`RenameCpp11.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L640) | [R416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R416.txt) +R417 | | [`RenameCpp11.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L643) | [R417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R417.txt) +R418 | | [`RenameCpp11.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L644) | [R418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R418.txt) +R419 | | [`RenameCpp11.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L647) | [R419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R419.txt) +R420 | | [`RenameCpp11.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L648) | [R420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R420.txt) +R421 | | [`RenameCpp11.cpp`, line 650](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L650) | [R421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R421.txt) +R422 | | [`RenameCpp11.cpp`, line 664](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L664) | [R422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R422.txt) +R423 | | [`RenameCpp11.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L666) | [R423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R423.txt) +R424 | | [`RenameCpp11.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L676) | [R424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R424.txt) +R425 | | [`RenameCpp11.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L678) | [R425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R425.txt) +R426 | | [`RenameCpp11.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L681) | [R426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R426.txt) +R427 | | [`RenameCpp11.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L682) | [R427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R427.txt) +R428 | | [`RenameCpp11.cpp`, line 683](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L683) | [R428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R428.txt) +R429 | | [`RenameCpp11.cpp`, line 687](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L687) | [R429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R429.txt) +R430 | | [`RenameCpp11.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L701) | [R430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R430.txt) +R431 | | [`RenameCpp11.cpp`, line 704](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L704) | [R431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R431.txt) +R432 | | [`RenameCpp11.cpp`, line 705](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L705) | [R432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R432.txt) +R433 | | [`RenameCpp11.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L709) | [R433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R433.txt) +R434 | | [`RenameCpp11.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L710) | [R434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R434.txt) +R435 | | [`RenameCpp11.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L714) | [R435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R435.txt) +R436 | | [`RenameCpp11.cpp`, line 722](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L722) | [R436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R436.txt) +R437 | | [`RenameCpp11.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L728) | [R437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R437.txt) +R438 | | [`RenameCpp11.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L730) | [R438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R438.txt) +R439 | | [`RenameCpp11.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L731) | [R439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R439.txt) +R440 | | [`RenameCpp11.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L732) | [R440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R440.txt) +R441 | | [`RenameCpp11.cpp`, line 735](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L735) | [R441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R441.txt) +R442 | | [`RenameCpp11.cpp`, line 736](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L736) | [R442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R442.txt) +R443 | | [`RenameCpp11.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L749) | [R443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R443.txt) +R444 | | [`RenameCpp11.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L751) | [R444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R444.txt) +R445 | | [`RenameCpp11.cpp`, line 752](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L752) | [R445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R445.txt) +R446 | | [`RenameCpp11.cpp`, line 753](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L753) | [R446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R446.txt) +R447 | | [`RenameCpp11.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L756) | [R447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R447.txt) +R448 | | [`RenameCpp11.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L758) | [R448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R448.txt) +R449 | | [`RenameCpp11.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L759) | [R449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R449.txt) +R450 | | [`RenameCpp11.cpp`, line 760](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L760) | [R450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R450.txt) +R451 | | [`RenameCpp11.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L761) | [R451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R451.txt) +R452 | | [`RenameCpp11.cpp`, line 762](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L762) | [R452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R452.txt) +R453 | | [`RenameCpp11.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L765) | [R453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R453.txt) +R454 | | [`RenameCpp11.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L766) | [R454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R454.txt) +R455 | | [`RenameCpp11.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L767) | [R455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R455.txt) +R456 | | [`RenameCpp11.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L768) | [R456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R456.txt) +R457 | | [`RenameCpp11.cpp`, line 771](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L771) | [R457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R457.txt) +R458 | | [`RenameCpp11.cpp`, line 772](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L772) | [R458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R458.txt) +R459 | | [`RenameCpp11.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L776) | [R459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R459.txt) +R460 | | [`RenameCpp11.cpp`, line 780](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L780) | [R460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R460.txt) +R461 | | [`RenameCpp11.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L781) | [R461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R461.txt) +R462 | | [`RenameCpp11.cpp`, line 783](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L783) | [R462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R462.txt) +R463 | | [`RenameCpp11.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L787) | [R463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R463.txt) +R464 | | [`RenameCpp11.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L789) | [R464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R464.txt) +R465 | | [`RenameCpp11.cpp`, line 790](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L790) | [R465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R465.txt) +R466 | | [`RenameCpp11.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L791) | [R466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R466.txt) +R467 | | [`RenameCpp11.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L792) | [R467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R467.txt) +R468 | | [`RenameCpp11.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L793) | [R468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R468.txt) +R469 | | [`RenameCpp11.cpp`, line 801](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L801) | [R469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R469.txt) +R470 | | [`RenameCpp11.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L805) | [R470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R470.txt) +R471 | | [`RenameCpp11.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L809) | [R471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R471.txt) +R472 | | [`RenameCpp11.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L810) | [R472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R472.txt) +R473 | | [`RenameCpp11.cpp`, line 812](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L812) | [R473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R473.txt) +R474 | | [`RenameCpp11.cpp`, line 813](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L813) | [R474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R474.txt) +R475 | | [`RenameCpp11.cpp`, line 814](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L814) | [R475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R475.txt) +R476 | | [`RenameCpp11.cpp`, line 815](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L815) | [R476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R476.txt) +R477 | | [`RenameCpp11.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L821) | [R477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R477.txt) +R478 | | [`RenameCpp11.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L824) | [R478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R478.txt) +R479 | | [`RenameCpp11.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L825) | [R479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R479.txt) +R480 | | [`RenameCpp11.cpp`, line 828](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L828) | [R480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R480.txt) +R481 | | [`RenameCpp11.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L833) | [R481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R481.txt) +R482 | | [`RenameCpp11.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L834) | [R482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R482.txt) +R483 | | [`RenameCpp11.cpp`, line 837](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L837) | [R483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R483.txt) +R484 | | [`RenameCpp11.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L845) | [R484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R484.txt) +R485 | | [`RenameCpp11.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L846) | [R485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R485.txt) +R486 | | [`RenameCpp11.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L849) | [R486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R486.txt) +R487 | | [`RenameCpp11.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L854) | [R487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R487.txt) +R488 | | [`RenameCpp11.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L855) | [R488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R488.txt) +R489 | | [`RenameCpp11.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L858) | [R489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R489.txt) +R490 | | [`RenameCpp11.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L866) | [R490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R490.txt) +R491 | | [`RenameCpp11.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L867) | [R491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R491.txt) +R492 | | [`RenameCpp11.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L870) | [R492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R492.txt) +R493 | | [`RenameCpp11.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L878) | [R493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R493.txt) +R494 | | [`RenameCpp11.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L880) | [R494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R494.txt) +R495 | | [`RenameCpp11.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L882) | [R495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R495.txt) +R496 | | [`RenameCpp11.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L883) | [R496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R496.txt) +R497 | | [`RenameCpp11.cpp`, line 885](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L885) | [R497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R497.txt) +R498 | | [`RenameCpp11.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L887) | [R498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R498.txt) +R499 | | [`RenameCpp11.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L889) | [R499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R499.txt) +R500 | | [`RenameCpp11.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L890) | [R500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R500.txt) +R501 | | [`RenameCpp11.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L892) | [R501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R501.txt) +R502 | | [`RenameCpp11.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L898) | [R502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R502.txt) +R503 | | [`RenameCpp11.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L900) | [R503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R503.txt) +R504 | | [`RenameCpp11.cpp`, line 901](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L901) | [R504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R504.txt) +R505 | | [`RenameCpp11.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L902) | [R505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R505.txt) +R506 | | [`RenameCpp11.cpp`, line 904](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L904) | [R506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R506.txt) +R507 | | [`RenameCpp11.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L906) | [R507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R507.txt) +R508 | | [`RenameCpp11.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L907) | [R508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R508.txt) +R509 | | [`RenameCpp11.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L909) | [R509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R509.txt) +R510 | | [`RenameCpp11.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L910) | [R510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R510.txt) +R511 | | [`RenameCpp11.cpp`, line 911](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L911) | [R511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R511.txt) +R512 | | [`RenameCpp11.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L912) | [R512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R512.txt) +R513 | | [`RenameCpp11.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L913) | [R513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R513.txt) +R514 | | [`RenameCpp11.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L915) | [R514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R514.txt) +R515 | | [`RenameCpp11.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L921) | [R515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R515.txt) +R516 | | [`RenameCpp11.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L923) | [R516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R516.txt) +R517 | | [`RenameCpp11.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L925) | [R517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R517.txt) +R518 | | [`RenameCpp11.cpp`, line 928](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L928) | [R518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R518.txt) +R519 | | [`RenameCpp11.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L929) | [R519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R519.txt) +R520 | | [`RenameCpp11.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L930) | [R520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R520.txt) +R521 | | [`RenameCpp11.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L940) | [R521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R521.txt) +R522 | | [`RenameCpp11.cpp`, line 942](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L942) | [R522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R522.txt) +R523 | | [`RenameCpp11.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L945) | [R523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R523.txt) +R524 | | [`RenameCpp11.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L952) | [R524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R524.txt) +R525 | | [`RenameCpp11.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L954) | [R525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R525.txt) +R526 | | [`RenameCpp11.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L957) | [R526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R526.txt) +R527 | | [`RenameCpp11.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L958) | [R527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R527.txt) +R528 | | [`RenameCpp11.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L960) | [R528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R528.txt) +R529 | | [`RenameCpp11.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L965) | [R529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R529.txt) +R530 | | [`RenameCpp11.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L970) | [R530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R530.txt) +R531 | | [`RenameCpp11.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L972) | [R531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R531.txt) +R532 | | [`RenameCpp11.cpp`, line 973](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L973) | [R532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R532.txt) +R533 | | [`RenameCpp11.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L975) | [R533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R533.txt) +R534 | | [`RenameCpp11.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L977) | [R534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R534.txt) +R535 | | [`RenameCpp11.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L981) | [R535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R535.txt) +R536 | | [`RenameCpp11.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L982) | [R536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R536.txt) +R537 | | [`RenameCpp11.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L988) | [R537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R537.txt) +R538 | | [`RenameCpp11.cpp`, line 993](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L993) | [R538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R538.txt) +R539 | | [`RenameCpp11.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L997) | [R539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R539.txt) +R540 | | [`RenameCpp11.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1005) | [R540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R540.txt) +R541 | | [`RenameCpp11.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1011) | [R541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R541.txt) +R542 | | [`RenameCpp11.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1018) | [R542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R542.txt) +R543 | | [`RenameCpp11.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1021) | [R543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R543.txt) +R544 | | [`RenameCpp11.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1028) | [R544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R544.txt) +R545 | | [`RenameCpp11.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1030) | [R545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R545.txt) +R546 | | [`RenameCpp11.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1032) | [R546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R546.txt) +R547 | | [`RenameCpp11.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1042) | [R547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R547.txt) +R548 | | [`RenameCpp11.cpp`, line 1044](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1044) | [R548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R548.txt) +R549 | | [`RenameCpp11.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1046) | [R549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R549.txt) +R550 | | [`RenameCpp11.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1052) | [R550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R550.txt) +R551 | | [`RenameCpp11.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1054) | [R551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R551.txt) +R552 | | [`RenameCpp11.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1057) | [R552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R552.txt) +R553 | | [`RenameCpp11.cpp`, line 1059](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1059) | [R553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R553.txt) +R554 | | [`RenameCpp11.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1062) | [R554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R554.txt) +R555 | | [`RenameCpp11.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1064) | [R555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R555.txt) +R556 | | [`RenameCpp11.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1067) | [R556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R556.txt) +R557 | | [`RenameCpp11.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1069) | [R557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R557.txt) +R558 | | [`RenameCpp11.cpp`, line 1073](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1073) | [R558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R558.txt) +R559 | | [`RenameCpp11.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1074) | [R559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R559.txt) +R560 | | [`RenameCpp11.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1075) | [R560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R560.txt) +R561 | | [`RenameCpp11.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1076) | [R561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R561.txt) +R562 | | [`RenameCpp11.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1082) | [R562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R562.txt) +R563 | | [`RenameCpp11.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1087) | [R563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R563.txt) +R564 | | [`RenameCpp11.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1090) | [R564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R564.txt) +R565 | | [`RenameCpp11.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1096) | [R565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R565.txt) +R566 | | [`RenameCpp11.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1101) | [R566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R566.txt) +R567 | | [`RenameCpp11.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1104) | [R567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R567.txt) +R568 | | [`RenameCpp11.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1107) | [R568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R568.txt) +R569 | | [`RenameCpp11.cpp`, line 1111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1111) | [R569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R569.txt) +R570 | | [`RenameCpp11.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1112) | [R570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R570.txt) +R571 | | [`RenameCpp11.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1117) | [R571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R571.txt) +R572 | | [`RenameCpp11.cpp`, line 1118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1118) | [R572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R572.txt) +R573 | | [`RenameCpp11.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1122) | [R573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R573.txt) +R574 | | [`RenameCpp11.cpp`, line 1127](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1127) | [R574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R574.txt) +R575 | | [`RenameCpp11.cpp`, line 1131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1131) | [R575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R575.txt) +R576 | | [`RenameCpp11.cpp`, line 1134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1134) | [R576.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R576.txt) +R577 | | [`RenameCpp11.cpp`, line 1143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1143) | [R577.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R577.txt) +R578 | | [`RenameCpp11.cpp`, line 1149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1149) | [R578.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R578.txt) +R579 | | [`RenameCpp11.cpp`, line 1158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1158) | [R579.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R579.txt) +R580 | | [`RenameCpp11.cpp`, line 1165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1165) | [R580.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R580.txt) +R581 | | [`RenameCpp11.cpp`, line 1172](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1172) | [R581.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R581.txt) +R582 | | [`RenameCpp11.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1173) | [R582.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R582.txt) +R583 | | [`RenameCpp11.cpp`, line 1178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1178) | [R583.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R583.txt) +R584 | | [`RenameCpp11.cpp`, line 1183](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1183) | [R584.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R584.txt) +R585 | | [`RenameCpp11.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1189) | [R585.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R585.txt) +R586 | | [`RenameCpp11.cpp`, line 1194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1194) | [R586.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R586.txt) +R587 | | [`RenameCpp11.cpp`, line 1195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1195) | [R587.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R587.txt) +R588 | | [`RenameCpp11.cpp`, line 1196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1196) | [R588.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R588.txt) +R589 | | [`RenameCpp11.cpp`, line 1206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1206) | [R589.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R589.txt) +R590 | | [`RenameCpp11.cpp`, line 1213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1213) | [R590.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R590.txt) +R591 | | [`RenameCpp11.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1218) | [R591.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R591.txt) +R592 | | [`RenameCpp11.cpp`, line 1222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1222) | [R592.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R592.txt) +R593 | | [`RenameCpp11.cpp`, line 1225](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1225) | [R593.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R593.txt) +R594 | | [`RenameCpp11.cpp`, line 1227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1227) | [R594.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R594.txt) +R595 | | [`RenameCpp11.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1229) | [R595.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R595.txt) +R596 | | [`RenameCpp11.cpp`, line 1231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1231) | [R596.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R596.txt) +R597 | | [`RenameCpp11.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1236) | [R597.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R597.txt) +R598 | | [`RenameCpp11.cpp`, line 1237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1237) | [R598.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R598.txt) +R599 | | [`RenameCpp11.cpp`, line 1240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1240) | [R599.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R599.txt) +R600 | | [`RenameCpp11.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1246) | [R600.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R600.txt) +R601 | | [`RenameCpp11.cpp`, line 1247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1247) | [R601.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R601.txt) +R602 | | [`RenameCpp11.cpp`, line 1250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1250) | [R602.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R602.txt) +R603 | | [`RenameCpp11.cpp`, line 1251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1251) | [R603.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R603.txt) +R604 | | [`RenameCpp11.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1290) | [R604.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R604.txt) +R605 | | [`RenameCpp11.cpp`, line 1292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp11.cpp#L1292) | [R605.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R605.txt) +R606 | | [`RenameCpp14.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L6) | [R606.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R606.txt) +R607 | | [`RenameCpp14.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L8) | [R607.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R607.txt) +R608 | | [`RenameCpp14.h`, line 9](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L9) | [R608.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R608.txt) +R609 | | [`RenameCpp14.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L10) | [R609.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R609.txt) +R610 | | [`RenameCpp14.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L11) | [R610.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R610.txt) +R611 | | [`RenameCpp14.h`, line 14](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L14) | [R611.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R611.txt) +R612 | | [`RenameCpp14.h`, line 16](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L16) | [R612.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R612.txt) +R613 | | [`RenameCpp14.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L17) | [R613.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R613.txt) +R614 | | [`RenameCpp14.h`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L20) | [R614.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R614.txt) +R615 | | [`RenameCpp14.h`, line 21](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.h#L21) | [R615.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R615.txt) +R616 | | [`RenameCpp14.cpp`, line 20](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L20) | [R616.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R616.txt) +R617 | | [`RenameCpp14.cpp`, line 22](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L22) | [R617.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R617.txt) +R618 | | [`RenameCpp14.cpp`, line 23](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L23) | [R618.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R618.txt) +R619 | | [`RenameCpp14.cpp`, line 24](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L24) | [R619.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R619.txt) +R620 | | [`RenameCpp14.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L27) | [R620.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R620.txt) +R621 | | [`RenameCpp14.cpp`, line 29](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L29) | [R621.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R621.txt) +R622 | | [`RenameCpp14.cpp`, line 30](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L30) | [R622.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R622.txt) +R623 | | [`RenameCpp14.cpp`, line 33](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L33) | [R623.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R623.txt) +R624 | | [`RenameCpp14.cpp`, line 34](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L34) | [R624.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R624.txt) +R625 | | [`RenameCpp14.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L48) | [R625.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R625.txt) +R626 | | [`RenameCpp14.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L52) | [R626.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R626.txt) +R627 | | [`RenameCpp14.cpp`, line 60](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L60) | [R627.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R627.txt) +R628 | | [`RenameCpp14.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L64) | [R628.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R628.txt) +R629 | | [`RenameCpp14.cpp`, line 70](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L70) | [R629.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R629.txt) +R630 | | [`RenameCpp14.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L71) | [R630.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R630.txt) +R631 | | [`RenameCpp14.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L72) | [R631.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R631.txt) +R632 | | [`RenameCpp14.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L73) | [R632.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R632.txt) +R633 | | [`RenameCpp14.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L81) | [R633.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R633.txt) +R634 | | [`RenameCpp14.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L83) | [R634.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R634.txt) +R635 | | [`RenameCpp14.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L84) | [R635.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R635.txt) +R636 | | [`RenameCpp14.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L85) | [R636.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R636.txt) +R637 | | [`RenameCpp14.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L86) | [R637.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R637.txt) +R638 | | [`RenameCpp14.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L87) | [R638.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R638.txt) +R639 | | [`RenameCpp14.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L88) | [R639.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R639.txt) +R640 | | [`RenameCpp14.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L90) | [R640.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R640.txt) +R641 | | [`RenameCpp14.cpp`, line 92](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L92) | [R641.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R641.txt) +R642 | | [`RenameCpp14.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L93) | [R642.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R642.txt) +R643 | | [`RenameCpp14.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L94) | [R643.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R643.txt) +R644 | | [`RenameCpp14.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L95) | [R644.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R644.txt) +R645 | | [`RenameCpp14.cpp`, line 96](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L96) | [R645.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R645.txt) +R646 | | [`RenameCpp14.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L97) | [R646.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R646.txt) +R647 | | [`RenameCpp14.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp14.cpp#L99) | [R647.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R647.txt) +R648 | | [`RenameCpp17.h`, line 6](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L6) | [R648.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R648.txt) +R649 | | [`RenameCpp17.h`, line 7](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L7) | [R649.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R649.txt) +R650 | | [`RenameCpp17.h`, line 8](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L8) | [R650.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R650.txt) +R651 | | [`RenameCpp17.h`, line 11](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L11) | [R651.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R651.txt) +R652 | | [`RenameCpp17.h`, line 18](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.h#L18) | [R652.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R652.txt) +R653 | | [`RenameCpp17.cpp`, line 26](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L26) | [R653.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R653.txt) +R654 | | [`RenameCpp17.cpp`, line 27](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L27) | [R654.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R654.txt) +R655 | | [`RenameCpp17.cpp`, line 28](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L28) | [R655.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R655.txt) +R656 | | [`RenameCpp17.cpp`, line 32](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L32) | [R656.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R656.txt) +R657 | | [`RenameCpp17.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L48) | [R657.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R657.txt) +R658 | | [`RenameCpp17.cpp`, line 49](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L49) | [R658.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R658.txt) +R659 | | [`RenameCpp17.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L50) | [R659.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R659.txt) +R660 | | [`RenameCpp17.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L51) | [R660.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R660.txt) +R661 | | [`RenameCpp17.cpp`, line 53](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L53) | [R661.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R661.txt) +R662 | | [`RenameCpp17.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L55) | [R662.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R662.txt) +R663 | | [`RenameCpp17.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L56) | [R663.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R663.txt) +R664 | | [`RenameCpp17.cpp`, line 58](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L58) | [R664.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R664.txt) +R665 | | [`RenameCpp17.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L68) | [R665.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R665.txt) +R666 | | [`RenameCpp17.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L72) | [R666.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R666.txt) +R667 | | [`RenameCpp17.cpp`, line 73](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L73) | [R667.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R667.txt) +R668 | | [`RenameCpp17.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L75) | [R668.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R668.txt) +R669 | | [`RenameCpp17.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L78) | [R669.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R669.txt) +R670 | | [`RenameCpp17.cpp`, line 79](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L79) | [R670.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R670.txt) +R671 | | [`RenameCpp17.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L99) | [R671.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R671.txt) +R672 | | [`RenameCpp17.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L105) | [R672.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R672.txt) +R673 | | [`RenameCpp17.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L107) | [R673.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R673.txt) +R674 | | [`RenameCpp17.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L109) | [R674.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R674.txt) +R675 | | [`RenameCpp17.cpp`, line 110](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L110) | [R675.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R675.txt) +R676 | | [`RenameCpp17.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L111) | [R676.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R676.txt) +R677 | | [`RenameCpp17.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L112) | [R677.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R677.txt) +R678 | | [`RenameCpp17.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L113) | [R678.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R678.txt) +R679 | | [`RenameCpp17.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L118) | [R679.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R679.txt) +R680 | | [`RenameCpp17.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L121) | [R680.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R680.txt) +R681 | | [`RenameCpp17.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L130) | [R681.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R681.txt) +R682 | | [`RenameCpp17.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L137) | [R682.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R682.txt) +R683 | | [`RenameCpp17.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L139) | [R683.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R683.txt) +R684 | | [`RenameCpp17.cpp`, line 147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L147) | [R684.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R684.txt) +R685 | | [`RenameCpp17.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L149) | [R685.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R685.txt) +R686 | | [`RenameCpp17.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L150) | [R686.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R686.txt) +R687 | | [`RenameCpp17.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L151) | [R687.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R687.txt) +R688 | | [`RenameCpp17.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L153) | [R688.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R688.txt) +R689 | | [`RenameCpp17.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L155) | [R689.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R689.txt) +R690 | | [`RenameCpp17.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L157) | [R690.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R690.txt) +R691 | | [`RenameCpp17.cpp`, line 158](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L158) | [R691.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R691.txt) +R692 | | [`RenameCpp17.cpp`, line 159](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L159) | [R692.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R692.txt) +R693 | | [`RenameCpp17.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L161) | [R693.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R693.txt) +R694 | | [`RenameCpp17.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L163) | [R694.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R694.txt) +R695 | | [`RenameCpp17.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L165) | [R695.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R695.txt) +R696 | | [`RenameCpp17.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L166) | [R696.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R696.txt) +R697 | | [`RenameCpp17.cpp`, line 167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L167) | [R697.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R697.txt) +R698 | | [`RenameCpp17.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L169) | [R698.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R698.txt) +R699 | | [`RenameCpp17.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L171) | [R699.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R699.txt) +R700 | | [`RenameCpp17.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L175) | [R700.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R700.txt) +R701 | | [`RenameCpp17.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L176) | [R701.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R701.txt) +R702 | | [`RenameCpp17.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L177) | [R702.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R702.txt) +R703 | | [`RenameCpp17.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L179) | [R703.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R703.txt) +R704 | | [`RenameCpp17.cpp`, line 181](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L181) | [R704.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R704.txt) +R705 | | [`RenameCpp17.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L189) | [R705.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R705.txt) +R706 | | [`RenameCpp17.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L190) | [R706.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R706.txt) +R707 | | [`RenameCpp17.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L191) | [R707.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R707.txt) +R708 | | [`RenameCpp17.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L193) | [R708.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R708.txt) +R709 | | [`RenameCpp17.cpp`, line 195](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L195) | [R709.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R709.txt) +R710 | | [`RenameCpp17.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L197) | [R710.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R710.txt) +R711 | | [`RenameCpp17.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L198) | [R711.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R711.txt) +R712 | | [`RenameCpp17.cpp`, line 199](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L199) | [R712.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R712.txt) +R713 | | [`RenameCpp17.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L201) | [R713.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R713.txt) +R714 | | [`RenameCpp17.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L203) | [R714.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R714.txt) +R715 | | [`RenameCpp17.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L205) | [R715.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R715.txt) +R716 | | [`RenameCpp17.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L206) | [R716.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R716.txt) +R717 | | [`RenameCpp17.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L207) | [R717.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R717.txt) +R718 | | [`RenameCpp17.cpp`, line 209](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L209) | [R718.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R718.txt) +R719 | | [`RenameCpp17.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L211) | [R719.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R719.txt) +R720 | | [`RenameCpp17.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L215) | [R720.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R720.txt) +R721 | | [`RenameCpp17.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L216) | [R721.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R721.txt) +R722 | | [`RenameCpp17.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L217) | [R722.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R722.txt) +R723 | | [`RenameCpp17.cpp`, line 219](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L219) | [R723.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R723.txt) +R724 | | [`RenameCpp17.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L221) | [R724.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R724.txt) +R725 | | [`RenameCpp17.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L233) | [R725.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R725.txt) +R726 | | [`RenameCpp17.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L234) | [R726.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R726.txt) +R727 | | [`RenameCpp17.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L235) | [R727.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R727.txt) +R728 | | [`RenameCpp17.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L237) | [R728.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R728.txt) +R729 | | [`RenameCpp17.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L239) | [R729.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R729.txt) +R730 | | [`RenameCpp17.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L241) | [R730.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R730.txt) +R731 | | [`RenameCpp17.cpp`, line 242](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L242) | [R731.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R731.txt) +R732 | | [`RenameCpp17.cpp`, line 243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L243) | [R732.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R732.txt) +R733 | | [`RenameCpp17.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L245) | [R733.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R733.txt) +R734 | | [`RenameCpp17.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L247) | [R734.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R734.txt) +R735 | | [`RenameCpp17.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L249) | [R735.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R735.txt) +R736 | | [`RenameCpp17.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L250) | [R736.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R736.txt) +R737 | | [`RenameCpp17.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L251) | [R737.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R737.txt) +R738 | | [`RenameCpp17.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L253) | [R738.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R738.txt) +R739 | | [`RenameCpp17.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L255) | [R739.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R739.txt) +R740 | | [`RenameCpp17.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L259) | [R740.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R740.txt) +R741 | | [`RenameCpp17.cpp`, line 260](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L260) | [R741.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R741.txt) +R742 | | [`RenameCpp17.cpp`, line 261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L261) | [R742.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R742.txt) +R743 | | [`RenameCpp17.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L263) | [R743.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R743.txt) +R744 | | [`RenameCpp17.cpp`, line 265](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L265) | [R744.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R744.txt) +R745 | | [`RenameCpp17.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L273) | [R745.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R745.txt) +R746 | | [`RenameCpp17.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L274) | [R746.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R746.txt) +R747 | | [`RenameCpp17.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L275) | [R747.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R747.txt) +R748 | | [`RenameCpp17.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L278) | [R748.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R748.txt) +R749 | | [`RenameCpp17.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L280) | [R749.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R749.txt) +R750 | | [`RenameCpp17.cpp`, line 285](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L285) | [R750.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R750.txt) +R751 | | [`RenameCpp17.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L286) | [R751.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R751.txt) +R752 | | [`RenameCpp17.cpp`, line 290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L290) | [R752.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R752.txt) +R753 | | [`RenameCpp17.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L292) | [R753.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R753.txt) +R754 | | [`RenameCpp17.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L296) | [R754.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R754.txt) +R755 | | [`RenameCpp17.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L298) | [R755.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R755.txt) +R756 | | [`RenameCpp17.cpp`, line 308](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L308) | [R756.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R756.txt) +R757 | | [`RenameCpp17.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L310) | [R757.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R757.txt) +R758 | | [`RenameCpp17.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L311) | [R758.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R758.txt) +R759 | | [`RenameCpp17.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L312) | [R759.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R759.txt) +R760 | | [`RenameCpp17.cpp`, line 315](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L315) | [R760.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R760.txt) +R761 | | [`RenameCpp17.cpp`, line 319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L319) | [R761.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R761.txt) +R762 | | [`RenameCpp17.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L321) | [R762.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R762.txt) +R763 | | [`RenameCpp17.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L322) | [R763.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R763.txt) +R764 | | [`RenameCpp17.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L323) | [R764.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R764.txt) +R765 | | [`RenameCpp17.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L326) | [R765.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R765.txt) +R766 | | [`RenameCpp17.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L330) | [R766.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R766.txt) +R767 | | [`RenameCpp17.cpp`, line 332](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L332) | [R767.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R767.txt) +R768 | | [`RenameCpp17.cpp`, line 333](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L333) | [R768.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R768.txt) +R769 | | [`RenameCpp17.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L334) | [R769.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R769.txt) +R770 | | [`RenameCpp17.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L335) | [R770.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R770.txt) +R771 | | [`RenameCpp17.cpp`, line 338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L338) | [R771.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R771.txt) +R772 | | [`RenameCpp17.cpp`, line 339](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L339) | [R772.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R772.txt) +R773 | | [`RenameCpp17.cpp`, line 343](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L343) | [R773.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R773.txt) +R774 | | [`RenameCpp17.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L345) | [R774.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R774.txt) +R775 | | [`RenameCpp17.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L346) | [R775.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R775.txt) +R776 | | [`RenameCpp17.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L347) | [R776.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R776.txt) +R777 | | [`RenameCpp17.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L348) | [R777.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R777.txt) +R778 | | [`RenameCpp17.cpp`, line 351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L351) | [R778.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R778.txt) +R779 | | [`RenameCpp17.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L352) | [R779.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R779.txt) +R780 | | [`RenameCpp17.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L384) | [R780.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R780.txt) +R781 | | [`RenameCpp17.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L385) | [R781.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R781.txt) +R782 | | [`RenameCpp17.cpp`, line 386](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L386) | [R782.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R782.txt) +R783 | | [`RenameCpp17.cpp`, line 388](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L388) | [R783.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R783.txt) +R784 | | [`RenameCpp17.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L390) | [R784.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R784.txt) +R785 | | [`RenameCpp17.cpp`, line 392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L392) | [R785.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R785.txt) +R786 | | [`RenameCpp17.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L393) | [R786.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R786.txt) +R787 | | [`RenameCpp17.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L394) | [R787.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R787.txt) +R788 | | [`RenameCpp17.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L396) | [R788.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R788.txt) +R789 | | [`RenameCpp17.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L398) | [R789.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R789.txt) +R790 | | [`RenameCpp17.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L403) | [R790.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R790.txt) +R791 | | [`RenameCpp17.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L404) | [R791.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R791.txt) +R792 | | [`RenameCpp17.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L405) | [R792.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R792.txt) +R793 | | [`RenameCpp17.cpp`, line 407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L407) | [R793.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R793.txt) +R794 | | [`RenameCpp17.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L409) | [R794.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R794.txt) +R795 | | [`RenameCpp17.cpp`, line 411](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L411) | [R795.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R795.txt) +R796 | | [`RenameCpp17.cpp`, line 413](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L413) | [R796.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R796.txt) +R797 | | [`RenameCpp17.cpp`, line 415](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L415) | [R797.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R797.txt) +R798 | | [`RenameCpp17.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L416) | [R798.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R798.txt) +R799 | | [`RenameCpp17.cpp`, line 417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L417) | [R799.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R799.txt) +R800 | | [`RenameCpp17.cpp`, line 419](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L419) | [R800.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R800.txt) +R801 | | [`RenameCpp17.cpp`, line 421](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L421) | [R801.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R801.txt) +R802 | | [`RenameCpp17.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L422) | [R802.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R802.txt) +R803 | | [`RenameCpp17.cpp`, line 424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L424) | [R803.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R803.txt) +R804 | | [`RenameCpp17.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L430) | [R804.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R804.txt) +R805 | | [`RenameCpp17.cpp`, line 432](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L432) | [R805.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R805.txt) +R806 | | [`RenameCpp17.cpp`, line 438](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L438) | [R806.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R806.txt) +R807 | | [`RenameCpp17.cpp`, line 440](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L440) | [R807.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R807.txt) +R808 | | [`RenameCpp17.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L443) | [R808.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R808.txt) +R809 | | [`RenameCpp17.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L444) | [R809.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R809.txt) +R810 | | [`RenameCpp17.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L449) | [R810.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R810.txt) +R811 | | [`RenameCpp17.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L451) | [R811.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R811.txt) +R812 | | [`RenameCpp17.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L452) | [R812.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R812.txt) +R813 | | [`RenameCpp17.cpp`, line 453](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L453) | [R813.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R813.txt) +R814 | | [`RenameCpp17.cpp`, line 461](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L461) | [R814.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R814.txt) +R815 | | [`RenameCpp17.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L463) | [R815.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R815.txt) +R816 | | [`RenameCpp17.cpp`, line 464](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L464) | [R816.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R816.txt) +R817 | | [`RenameCpp17.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L465) | [R817.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R817.txt) +R818 | | [`RenameCpp17.cpp`, line 466](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L466) | [R818.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R818.txt) +R819 | | [`RenameCpp17.cpp`, line 467](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L467) | [R819.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R819.txt) +R820 | | [`RenameCpp17.cpp`, line 472](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L472) | [R820.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R820.txt) +R821 | | [`RenameCpp17.cpp`, line 473](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L473) | [R821.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R821.txt) +R822 | | [`RenameCpp17.cpp`, line 475](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L475) | [R822.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R822.txt) +R823 | | [`RenameCpp17.cpp`, line 478](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L478) | [R823.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R823.txt) +R824 | | [`RenameCpp17.cpp`, line 479](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L479) | [R824.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R824.txt) +R825 | | [`RenameCpp17.cpp`, line 480](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L480) | [R825.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R825.txt) +R826 | | [`RenameCpp17.cpp`, line 481](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L481) | [R826.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R826.txt) +R827 | | [`RenameCpp17.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L483) | [R827.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R827.txt) +R828 | | [`RenameCpp17.cpp`, line 489](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L489) | [R828.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R828.txt) +R829 | | [`RenameCpp17.cpp`, line 490](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L490) | [R829.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R829.txt) +R830 | | [`RenameCpp17.cpp`, line 491](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L491) | [R830.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R830.txt) +R831 | | [`RenameCpp17.cpp`, line 492](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L492) | [R831.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R831.txt) +R832 | | [`RenameCpp17.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L496) | [R832.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R832.txt) +R833 | | [`RenameCpp17.cpp`, line 497](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L497) | [R833.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R833.txt) +R834 | | [`RenameCpp17.cpp`, line 498](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L498) | [R834.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R834.txt) +R835 | | [`RenameCpp17.cpp`, line 500](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L500) | [R835.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R835.txt) +R836 | | [`RenameCpp17.cpp`, line 508](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L508) | [R836.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R836.txt) +R837 | | [`RenameCpp17.cpp`, line 509](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L509) | [R837.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R837.txt) +R838 | | [`RenameCpp17.cpp`, line 510](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L510) | [R838.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R838.txt) +R839 | | [`RenameCpp17.cpp`, line 511](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L511) | [R839.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R839.txt) +R840 | | [`RenameCpp17.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L512) | [R840.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R840.txt) +R841 | | [`RenameCpp17.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L514) | [R841.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R841.txt) +R842 | | [`RenameCpp17.cpp`, line 515](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L515) | [R842.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R842.txt) +R843 | | [`RenameCpp17.cpp`, line 520](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L520) | [R843.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R843.txt) +R844 | | [`RenameCpp17.cpp`, line 521](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L521) | [R844.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R844.txt) +R845 | | [`RenameCpp17.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L522) | [R845.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R845.txt) +R846 | | [`RenameCpp17.cpp`, line 523](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L523) | [R846.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R846.txt) +R847 | | [`RenameCpp17.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L524) | [R847.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R847.txt) +R848 | | [`RenameCpp17.cpp`, line 526](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L526) | [R848.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R848.txt) +R849 | | [`RenameCpp17.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L527) | [R849.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R849.txt) +R850 | | [`RenameCpp17.cpp`, line 531](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L531) | [R850.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R850.txt) +R851 | | [`RenameCpp17.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L533) | [R851.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R851.txt) +R852 | | [`RenameCpp17.cpp`, line 534](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L534) | [R852.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R852.txt) +R853 | | [`RenameCpp17.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L535) | [R853.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R853.txt) +R854 | | [`RenameCpp17.cpp`, line 536](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L536) | [R854.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R854.txt) +R855 | | [`RenameCpp17.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L538) | [R855.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R855.txt) +R856 | | [`RenameCpp17.cpp`, line 539](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp17.cpp#L539) | [R856.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R856.txt) +R857 | | [`RenameCpp20.h`, line 10](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L10) | [R857.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R857.txt) +R858 | | [`RenameCpp20.h`, line 13](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L13) | [R858.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R858.txt) +R859 | | [`RenameCpp20.h`, line 15](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L15) | [R859.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R859.txt) +R860 | | [`RenameCpp20.h`, line 17](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.h#L17) | [R860.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R860.txt) +R861 | | [`RenameCpp20.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L67) | [R861.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R861.txt) +R862 | | [`RenameCpp20.cpp`, line 69](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L69) | [R862.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R862.txt) +R863 | | [`RenameCpp20.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L71) | [R863.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R863.txt) +R864 | | [`RenameCpp20.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L72) | [R864.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R864.txt) +R865 | | [`RenameCpp20.cpp`, line 74](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L74) | [R865.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R865.txt) +R866 | | [`RenameCpp20.cpp`, line 75](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L75) | [R866.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R866.txt) +R867 | | [`RenameCpp20.cpp`, line 77](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L77) | [R867.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R867.txt) +R868 | | [`RenameCpp20.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L78) | [R868.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R868.txt) +R869 | | [`RenameCpp20.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L83) | [R869.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R869.txt) +R870 | | [`RenameCpp20.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L85) | [R870.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R870.txt) +R871 | | [`RenameCpp20.cpp`, line 87](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L87) | [R871.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R871.txt) +R872 | | [`RenameCpp20.cpp`, line 88](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L88) | [R872.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R872.txt) +R873 | | [`RenameCpp20.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L90) | [R873.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R873.txt) +R874 | | [`RenameCpp20.cpp`, line 91](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L91) | [R874.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R874.txt) +R875 | | [`RenameCpp20.cpp`, line 93](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L93) | [R875.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R875.txt) +R876 | | [`RenameCpp20.cpp`, line 94](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L94) | [R876.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R876.txt) +R877 | | [`RenameCpp20.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L102) | [R877.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R877.txt) +R878 | | [`RenameCpp20.cpp`, line 105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L105) | [R878.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R878.txt) +R879 | | [`RenameCpp20.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L106) | [R879.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R879.txt) +R880 | | [`RenameCpp20.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L107) | [R880.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R880.txt) +R881 | | [`RenameCpp20.cpp`, line 109](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L109) | [R881.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R881.txt) +R882 | | [`RenameCpp20.cpp`, line 111](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L111) | [R882.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R882.txt) +R883 | | [`RenameCpp20.cpp`, line 113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L113) | [R883.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R883.txt) +R884 | | [`RenameCpp20.cpp`, line 117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L117) | [R884.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R884.txt) +R885 | | [`RenameCpp20.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L118) | [R885.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R885.txt) +R886 | | [`RenameCpp20.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L119) | [R886.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R886.txt) +R887 | | [`RenameCpp20.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L121) | [R887.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R887.txt) +R888 | | [`RenameCpp20.cpp`, line 123](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L123) | [R888.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R888.txt) +R889 | | [`RenameCpp20.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L125) | [R889.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R889.txt) +R890 | | [`RenameCpp20.cpp`, line 129](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L129) | [R890.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R890.txt) +R891 | | [`RenameCpp20.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L130) | [R891.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R891.txt) +R892 | | [`RenameCpp20.cpp`, line 131](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L131) | [R892.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R892.txt) +R893 | | [`RenameCpp20.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L132) | [R893.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R893.txt) +R894 | | [`RenameCpp20.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L134) | [R894.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R894.txt) +R895 | | [`RenameCpp20.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L136) | [R895.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R895.txt) +R896 | | [`RenameCpp20.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L138) | [R896.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R896.txt) +R897 | | [`RenameCpp20.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L143) | [R897.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R897.txt) +R898 | | [`RenameCpp20.cpp`, line 149](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L149) | [R898.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R898.txt) +R899 | | [`RenameCpp20.cpp`, line 163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L163) | [R899.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R899.txt) +R900 | | [`RenameCpp20.cpp`, line 164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L164) | [R900.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R900.txt) +R901 | | [`RenameCpp20.cpp`, line 165](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L165) | [R901.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R901.txt) +R902 | | [`RenameCpp20.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L168) | [R902.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R902.txt) +R903 | | [`RenameCpp20.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L175) | [R903.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R903.txt) +R904 | | [`RenameCpp20.cpp`, line 176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L176) | [R904.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R904.txt) +R905 | | [`RenameCpp20.cpp`, line 177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L177) | [R905.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R905.txt) +R906 | | [`RenameCpp20.cpp`, line 180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L180) | [R906.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R906.txt) +R907 | | [`RenameCpp20.cpp`, line 190](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L190) | [R907.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R907.txt) +R908 | | [`RenameCpp20.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L191) | [R908.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R908.txt) +R909 | | [`RenameCpp20.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L192) | [R909.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R909.txt) +R910 | | [`RenameCpp20.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L193) | [R910.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R910.txt) +R911 | | [`RenameCpp20.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L194) | [R911.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R911.txt) +R912 | | [`RenameCpp20.cpp`, line 196](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L196) | [R912.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R912.txt) +R913 | | [`RenameCpp20.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L198) | [R913.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R913.txt) +R914 | | [`RenameCpp20.cpp`, line 200](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L200) | [R914.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R914.txt) +R915 | | [`RenameCpp20.cpp`, line 201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L201) | [R915.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R915.txt) +R916 | | [`RenameCpp20.cpp`, line 202](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L202) | [R916.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R916.txt) +R917 | | [`RenameCpp20.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L211) | [R917.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R917.txt) +R918 | | [`RenameCpp20.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L212) | [R918.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R918.txt) +R919 | | [`RenameCpp20.cpp`, line 214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L214) | [R919.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R919.txt) +R920 | | [`RenameCpp20.cpp`, line 215](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L215) | [R920.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R920.txt) +R921 | | [`RenameCpp20.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L216) | [R921.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R921.txt) +R922 | | [`RenameCpp20.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L217) | [R922.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R922.txt) +R923 | | [`RenameCpp20.cpp`, line 220](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L220) | [R923.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R923.txt) +R924 | | [`RenameCpp20.cpp`, line 221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L221) | [R924.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R924.txt) +R925 | | [`RenameCpp20.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L222) | [R925.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R925.txt) +R926 | | [`RenameCpp20.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L223) | [R926.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R926.txt) +R927 | | [`RenameCpp20.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L224) | [R927.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R927.txt) +R928 | | [`RenameCpp20.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L226) | [R928.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R928.txt) +R929 | | [`RenameCpp20.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L236) | [R929.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R929.txt) +R930 | | [`RenameCpp20.cpp`, line 237](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L237) | [R930.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R930.txt) +R931 | | [`RenameCpp20.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L240) | [R931.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R931.txt) +R932 | | [`RenameCpp20.cpp`, line 241](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L241) | [R932.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R932.txt) +R933 | | [`RenameCpp20.cpp`, line 248](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L248) | [R933.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R933.txt) +R934 | | [`RenameCpp20.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L262) | [R934.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R934.txt) +R935 | | [`RenameCpp20.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L263) | [R935.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R935.txt) +R936 | | [`RenameCpp20.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L269) | [R936.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R936.txt) +R937 | | [`RenameCpp20.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L279) | [R937.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R937.txt) +R938 | | [`RenameCpp20.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L280) | [R938.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R938.txt) +R939 | | [`RenameCpp20.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L282) | [R939.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R939.txt) +R940 | | [`RenameCpp20.cpp`, line 288](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L288) | [R940.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R940.txt) +R941 | | [`RenameCpp20.cpp`, line 295](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L295) | [R941.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R941.txt) +R942 | | [`RenameCpp20.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L296) | [R942.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R942.txt) +R943 | | [`RenameCpp20.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L297) | [R943.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R943.txt) +R944 | | [`RenameCpp20.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L299) | [R944.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R944.txt) +R945 | | [`RenameCpp20.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L305) | [R945.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R945.txt) +R946 | | [`RenameCpp20.cpp`, line 312](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L312) | [R946.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R946.txt) +R947 | | [`RenameCpp20.cpp`, line 313](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L313) | [R947.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R947.txt) +R948 | | [`RenameCpp20.cpp`, line 314](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L314) | [R948.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R948.txt) +R949 | | [`RenameCpp20.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L316) | [R949.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R949.txt) +R950 | | [`RenameCpp20.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L321) | [R950.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R950.txt) +R951 | | [`RenameCpp20.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L322) | [R951.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R951.txt) +R952 | | [`RenameCpp20.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L329) | [R952.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R952.txt) +R953 | | [`RenameCpp20.cpp`, line 336](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L336) | [R953.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R953.txt) +R954 | | [`RenameCpp20.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L345) | [R954.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R954.txt) +R955 | | [`RenameCpp20.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L346) | [R955.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R955.txt) +R956 | | [`RenameCpp20.cpp`, line 357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L357) | [R956.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R956.txt) +R957 | | [`RenameCpp20.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L358) | [R957.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R957.txt) +R958 | | [`RenameCpp20.cpp`, line 361](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L361) | [R958.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R958.txt) +R959 | | [`RenameCpp20.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L364) | [R959.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R959.txt) +R960 | | [`RenameCpp20.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L380) | [R960.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R960.txt) +R961 | | [`RenameCpp20.cpp`, line 381](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L381) | [R961.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R961.txt) +R962 | | [`RenameCpp20.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L384) | [R962.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R962.txt) +R963 | | [`RenameCpp20.cpp`, line 385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L385) | [R963.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R963.txt) +R964 | | [`RenameCpp20.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L389) | [R964.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R964.txt) +R965 | | [`RenameCpp20.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L390) | [R965.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R965.txt) +R966 | | [`RenameCpp20.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L396) | [R966.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R966.txt) +R967 | | [`RenameCpp20.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L397) | [R967.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R967.txt) +R968 | | [`RenameCpp20.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L403) | [R968.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R968.txt) +R969 | | [`RenameCpp20.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L404) | [R969.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R969.txt) +R970 | | [`RenameCpp20.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L405) | [R970.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R970.txt) +R971 | | [`RenameCpp20.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L408) | [R971.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R971.txt) +R972 | | [`RenameCpp20.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L409) | [R972.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R972.txt) +R973 | | [`RenameCpp20.cpp`, line 416](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L416) | [R973.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R973.txt) +R974 | | [`RenameCpp20.cpp`, line 418](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L418) | [R974.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R974.txt) +R975 | | [`RenameCpp20.cpp`, line 422](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L422) | [R975.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R975.txt) +R976 | | [`RenameCpp20.cpp`, line 423](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L423) | [R976.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R976.txt) +R977 | | [`RenameCpp20.cpp`, line 429](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L429) | [R977.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R977.txt) +R978 | | [`RenameCpp20.cpp`, line 430](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L430) | [R978.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R978.txt) +R979 | | [`RenameCpp20.cpp`, line 436](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L436) | [R979.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R979.txt) +R980 | | [`RenameCpp20.cpp`, line 437](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L437) | [R980.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R980.txt) +R981 | | [`RenameCpp20.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L443) | [R981.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R981.txt) +R982 | | [`RenameCpp20.cpp`, line 444](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L444) | [R982.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R982.txt) +R983 | | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L449) | [R983.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R983.txt) +R984 | | [`RenameCpp20.cpp`, line 451](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L451) | [R984.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R984.txt) +R985 | | [`RenameCpp20.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L452) | [R985.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R985.txt) +R986 | | [`RenameCpp20.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20.cpp#L454) | [R986.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R986.txt) +R987 | | [`RenameCpp20Constraints.cpp`, line 48](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L48) | [R987.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R987.txt) +R988 | | [`RenameCpp20Constraints.cpp`, line 50](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L50) | [R988.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R988.txt) +R989 | | [`RenameCpp20Constraints.cpp`, line 51](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L51) | [R989.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R989.txt) +R990 | | [`RenameCpp20Constraints.cpp`, line 52](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L52) | [R990.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R990.txt) +R991 | | [`RenameCpp20Constraints.cpp`, line 55](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L55) | [R991.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R991.txt) +R992 | | [`RenameCpp20Constraints.cpp`, line 56](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L56) | [R992.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R992.txt) +R993 | | [`RenameCpp20Constraints.cpp`, line 61](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L61) | [R993.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R993.txt) +R994 | | [`RenameCpp20Constraints.cpp`, line 62](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L62) | [R994.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R994.txt) +R995 | | [`RenameCpp20Constraints.cpp`, line 64](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L64) | [R995.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R995.txt) +R996 | | [`RenameCpp20Constraints.cpp`, line 65](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L65) | [R996.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R996.txt) +R997 | | [`RenameCpp20Constraints.cpp`, line 66](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L66) | [R997.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R997.txt) +R998 | | [`RenameCpp20Constraints.cpp`, line 67](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L67) | [R998.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R998.txt) +R999 | | [`RenameCpp20Constraints.cpp`, line 68](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L68) | [R999.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R999.txt) +R1000 | | [`RenameCpp20Constraints.cpp`, line 71](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L71) | [R1000.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1000.txt) +R1001 | | [`RenameCpp20Constraints.cpp`, line 72](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L72) | [R1001.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1001.txt) +R1002 | | [`RenameCpp20Constraints.cpp`, line 78](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L78) | [R1002.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1002.txt) +R1003 | | [`RenameCpp20Constraints.cpp`, line 80](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L80) | [R1003.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1003.txt) +R1004 | | [`RenameCpp20Constraints.cpp`, line 81](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L81) | [R1004.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1004.txt) +R1005 | | [`RenameCpp20Constraints.cpp`, line 83](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L83) | [R1005.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1005.txt) +R1006 | | [`RenameCpp20Constraints.cpp`, line 84](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L84) | [R1006.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1006.txt) +R1007 | | [`RenameCpp20Constraints.cpp`, line 85](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L85) | [R1007.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1007.txt) +R1008 | | [`RenameCpp20Constraints.cpp`, line 86](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L86) | [R1008.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1008.txt) +R1009 | | [`RenameCpp20Constraints.cpp`, line 89](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L89) | [R1009.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1009.txt) +R1010 | | [`RenameCpp20Constraints.cpp`, line 90](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L90) | [R1010.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1010.txt) +R1011 | | [`RenameCpp20Constraints.cpp`, line 95](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L95) | [R1011.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1011.txt) +R1012 | | [`RenameCpp20Constraints.cpp`, line 97](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L97) | [R1012.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1012.txt) +R1013 | | [`RenameCpp20Constraints.cpp`, line 98](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L98) | [R1013.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1013.txt) +R1014 | | [`RenameCpp20Constraints.cpp`, line 99](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L99) | [R1014.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1014.txt) +R1015 | | [`RenameCpp20Constraints.cpp`, line 100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L100) | [R1015.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1015.txt) +R1016 | | [`RenameCpp20Constraints.cpp`, line 102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L102) | [R1016.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1016.txt) +R1017 | | [`RenameCpp20Constraints.cpp`, line 103](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L103) | [R1017.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1017.txt) +R1018 | | [`RenameCpp20Constraints.cpp`, line 106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L106) | [R1018.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1018.txt) +R1019 | | [`RenameCpp20Constraints.cpp`, line 107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L107) | [R1019.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1019.txt) +R1020 | | [`RenameCpp20Constraints.cpp`, line 112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L112) | [R1020.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1020.txt) +R1021 | | [`RenameCpp20Constraints.cpp`, line 114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L114) | [R1021.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1021.txt) +R1022 | | [`RenameCpp20Constraints.cpp`, line 115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L115) | [R1022.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1022.txt) +R1023 | | [`RenameCpp20Constraints.cpp`, line 116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L116) | [R1023.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1023.txt) +R1024 | | [`RenameCpp20Constraints.cpp`, line 118](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L118) | [R1024.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1024.txt) +R1025 | | [`RenameCpp20Constraints.cpp`, line 119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L119) | [R1025.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1025.txt) +R1026 | | [`RenameCpp20Constraints.cpp`, line 120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L120) | [R1026.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1026.txt) +R1027 | | [`RenameCpp20Constraints.cpp`, line 121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L121) | [R1027.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1027.txt) +R1028 | | [`RenameCpp20Constraints.cpp`, line 124](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L124) | [R1028.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1028.txt) +R1029 | | [`RenameCpp20Constraints.cpp`, line 125](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L125) | [R1029.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1029.txt) +R1030 | | [`RenameCpp20Constraints.cpp`, line 130](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L130) | [R1030.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1030.txt) +R1031 | | [`RenameCpp20Constraints.cpp`, line 132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L132) | [R1031.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1031.txt) +R1032 | | [`RenameCpp20Constraints.cpp`, line 133](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L133) | [R1032.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1032.txt) +R1033 | | [`RenameCpp20Constraints.cpp`, line 134](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L134) | [R1033.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1033.txt) +R1034 | | [`RenameCpp20Constraints.cpp`, line 136](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L136) | [R1034.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1034.txt) +R1035 | | [`RenameCpp20Constraints.cpp`, line 137](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L137) | [R1035.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1035.txt) +R1036 | | [`RenameCpp20Constraints.cpp`, line 138](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L138) | [R1036.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1036.txt) +R1037 | | [`RenameCpp20Constraints.cpp`, line 139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L139) | [R1037.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1037.txt) +R1038 | | [`RenameCpp20Constraints.cpp`, line 142](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L142) | [R1038.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1038.txt) +R1039 | | [`RenameCpp20Constraints.cpp`, line 143](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L143) | [R1039.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1039.txt) +R1040 | | [`RenameCpp20Constraints.cpp`, line 148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L148) | [R1040.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1040.txt) +R1041 | | [`RenameCpp20Constraints.cpp`, line 150](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L150) | [R1041.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1041.txt) +R1042 | | [`RenameCpp20Constraints.cpp`, line 151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L151) | [R1042.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1042.txt) +R1043 | | [`RenameCpp20Constraints.cpp`, line 152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L152) | [R1043.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1043.txt) +R1044 | | [`RenameCpp20Constraints.cpp`, line 153](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L153) | [R1044.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1044.txt) +R1045 | | [`RenameCpp20Constraints.cpp`, line 155](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L155) | [R1045.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1045.txt) +R1046 | | [`RenameCpp20Constraints.cpp`, line 156](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L156) | [R1046.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1046.txt) +R1047 | | [`RenameCpp20Constraints.cpp`, line 157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L157) | [R1047.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1047.txt) +R1048 | | [`RenameCpp20Constraints.cpp`, line 160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L160) | [R1048.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1048.txt) +R1049 | | [`RenameCpp20Constraints.cpp`, line 161](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L161) | [R1049.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1049.txt) +R1050 | | [`RenameCpp20Constraints.cpp`, line 166](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L166) | [R1050.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1050.txt) +R1051 | | [`RenameCpp20Constraints.cpp`, line 168](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L168) | [R1051.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1051.txt) +R1052 | | [`RenameCpp20Constraints.cpp`, line 169](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L169) | [R1052.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1052.txt) +R1053 | | [`RenameCpp20Constraints.cpp`, line 170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L170) | [R1053.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1053.txt) +R1054 | | [`RenameCpp20Constraints.cpp`, line 171](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L171) | [R1054.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1054.txt) +R1055 | | [`RenameCpp20Constraints.cpp`, line 173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L173) | [R1055.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1055.txt) +R1056 | | [`RenameCpp20Constraints.cpp`, line 174](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L174) | [R1056.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1056.txt) +R1057 | | [`RenameCpp20Constraints.cpp`, line 175](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L175) | [R1057.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1057.txt) +R1058 | | [`RenameCpp20Constraints.cpp`, line 178](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L178) | [R1058.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1058.txt) +R1059 | | [`RenameCpp20Constraints.cpp`, line 179](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L179) | [R1059.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1059.txt) +R1060 | | [`RenameCpp20Constraints.cpp`, line 184](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L184) | [R1060.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1060.txt) +R1061 | | [`RenameCpp20Constraints.cpp`, line 186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L186) | [R1061.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1061.txt) +R1062 | | [`RenameCpp20Constraints.cpp`, line 187](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L187) | [R1062.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1062.txt) +R1063 | | [`RenameCpp20Constraints.cpp`, line 188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L188) | [R1063.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1063.txt) +R1064 | | [`RenameCpp20Constraints.cpp`, line 189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L189) | [R1064.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1064.txt) +R1065 | | [`RenameCpp20Constraints.cpp`, line 191](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L191) | [R1065.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1065.txt) +R1066 | | [`RenameCpp20Constraints.cpp`, line 192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L192) | [R1066.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1066.txt) +R1067 | | [`RenameCpp20Constraints.cpp`, line 193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L193) | [R1067.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1067.txt) +R1068 | | [`RenameCpp20Constraints.cpp`, line 194](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L194) | [R1068.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1068.txt) +R1069 | | [`RenameCpp20Constraints.cpp`, line 197](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L197) | [R1069.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1069.txt) +R1070 | | [`RenameCpp20Constraints.cpp`, line 198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L198) | [R1070.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1070.txt) +R1071 | | [`RenameCpp20Constraints.cpp`, line 203](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L203) | [R1071.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1071.txt) +R1072 | | [`RenameCpp20Constraints.cpp`, line 205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L205) | [R1072.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1072.txt) +R1073 | | [`RenameCpp20Constraints.cpp`, line 206](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L206) | [R1073.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1073.txt) +R1074 | | [`RenameCpp20Constraints.cpp`, line 207](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L207) | [R1074.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1074.txt) +R1075 | | [`RenameCpp20Constraints.cpp`, line 208](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L208) | [R1075.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1075.txt) +R1076 | | [`RenameCpp20Constraints.cpp`, line 210](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L210) | [R1076.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1076.txt) +R1077 | | [`RenameCpp20Constraints.cpp`, line 211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L211) | [R1077.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1077.txt) +R1078 | | [`RenameCpp20Constraints.cpp`, line 212](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L212) | [R1078.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1078.txt) +R1079 | | [`RenameCpp20Constraints.cpp`, line 213](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L213) | [R1079.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1079.txt) +R1080 | | [`RenameCpp20Constraints.cpp`, line 216](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L216) | [R1080.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1080.txt) +R1081 | | [`RenameCpp20Constraints.cpp`, line 217](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L217) | [R1081.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1081.txt) +R1082 | | [`RenameCpp20Constraints.cpp`, line 222](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L222) | [R1082.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1082.txt) +R1083 | | [`RenameCpp20Constraints.cpp`, line 223](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L223) | [R1083.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1083.txt) +R1084 | | [`RenameCpp20Constraints.cpp`, line 224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L224) | [R1084.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1084.txt) +R1085 | | [`RenameCpp20Constraints.cpp`, line 226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L226) | [R1085.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1085.txt) +R1086 | | [`RenameCpp20Constraints.cpp`, line 227](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L227) | [R1086.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1086.txt) +R1087 | | [`RenameCpp20Constraints.cpp`, line 228](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L228) | [R1087.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1087.txt) +R1088 | | [`RenameCpp20Constraints.cpp`, line 230](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L230) | [R1088.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1088.txt) +R1089 | | [`RenameCpp20Constraints.cpp`, line 231](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L231) | [R1089.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1089.txt) +R1090 | | [`RenameCpp20Constraints.cpp`, line 232](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L232) | [R1090.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1090.txt) +R1091 | | [`RenameCpp20Constraints.cpp`, line 233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L233) | [R1091.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1091.txt) +R1092 | | [`RenameCpp20Constraints.cpp`, line 234](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L234) | [R1092.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1092.txt) +R1093 | | [`RenameCpp20Constraints.cpp`, line 235](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L235) | [R1093.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1093.txt) +R1094 | | [`RenameCpp20Constraints.cpp`, line 236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L236) | [R1094.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1094.txt) +R1095 | | [`RenameCpp20Constraints.cpp`, line 239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L239) | [R1095.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1095.txt) +R1096 | | [`RenameCpp20Constraints.cpp`, line 240](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L240) | [R1096.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1096.txt) +R1097 | | [`RenameCpp20Constraints.cpp`, line 245](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L245) | [R1097.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1097.txt) +R1098 | | [`RenameCpp20Constraints.cpp`, line 246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L246) | [R1098.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1098.txt) +R1099 | | [`RenameCpp20Constraints.cpp`, line 247](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L247) | [R1099.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1099.txt) +R1100 | | [`RenameCpp20Constraints.cpp`, line 249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L249) | [R1100.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1100.txt) +R1101 | | [`RenameCpp20Constraints.cpp`, line 250](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L250) | [R1101.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1101.txt) +R1102 | | [`RenameCpp20Constraints.cpp`, line 251](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L251) | [R1102.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1102.txt) +R1103 | | [`RenameCpp20Constraints.cpp`, line 252](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L252) | [R1103.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1103.txt) +R1104 | | [`RenameCpp20Constraints.cpp`, line 253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L253) | [R1104.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1104.txt) +R1105 | | [`RenameCpp20Constraints.cpp`, line 254](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L254) | [R1105.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1105.txt) +R1106 | | [`RenameCpp20Constraints.cpp`, line 255](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L255) | [R1106.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1106.txt) +R1107 | | [`RenameCpp20Constraints.cpp`, line 257](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L257) | [R1107.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1107.txt) +R1108 | | [`RenameCpp20Constraints.cpp`, line 258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L258) | [R1108.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1108.txt) +R1109 | | [`RenameCpp20Constraints.cpp`, line 259](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L259) | [R1109.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1109.txt) +R1110 | | [`RenameCpp20Constraints.cpp`, line 262](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L262) | [R1110.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1110.txt) +R1111 | | [`RenameCpp20Constraints.cpp`, line 263](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L263) | [R1111.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1111.txt) +R1112 | | [`RenameCpp20Constraints.cpp`, line 268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L268) | [R1112.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1112.txt) +R1113 | | [`RenameCpp20Constraints.cpp`, line 269](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L269) | [R1113.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1113.txt) +R1114 | | [`RenameCpp20Constraints.cpp`, line 270](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L270) | [R1114.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1114.txt) +R1115 | | [`RenameCpp20Constraints.cpp`, line 272](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L272) | [R1115.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1115.txt) +R1116 | | [`RenameCpp20Constraints.cpp`, line 273](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L273) | [R1116.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1116.txt) +R1117 | | [`RenameCpp20Constraints.cpp`, line 274](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L274) | [R1117.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1117.txt) +R1118 | | [`RenameCpp20Constraints.cpp`, line 275](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L275) | [R1118.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1118.txt) +R1119 | | [`RenameCpp20Constraints.cpp`, line 277](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L277) | [R1119.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1119.txt) +R1120 | | [`RenameCpp20Constraints.cpp`, line 278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L278) | [R1120.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1120.txt) +R1121 | | [`RenameCpp20Constraints.cpp`, line 279](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L279) | [R1121.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1121.txt) +R1122 | | [`RenameCpp20Constraints.cpp`, line 280](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L280) | [R1122.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1122.txt) +R1123 | | [`RenameCpp20Constraints.cpp`, line 281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L281) | [R1123.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1123.txt) +R1124 | | [`RenameCpp20Constraints.cpp`, line 282](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L282) | [R1124.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1124.txt) +R1125 | | [`RenameCpp20Constraints.cpp`, line 283](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L283) | [R1125.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1125.txt) +R1126 | | [`RenameCpp20Constraints.cpp`, line 286](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L286) | [R1126.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1126.txt) +R1127 | | [`RenameCpp20Constraints.cpp`, line 287](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L287) | [R1127.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1127.txt) +R1128 | | [`RenameCpp20Constraints.cpp`, line 292](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L292) | [R1128.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1128.txt) +R1129 | | [`RenameCpp20Constraints.cpp`, line 293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L293) | [R1129.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1129.txt) +R1130 | | [`RenameCpp20Constraints.cpp`, line 294](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L294) | [R1130.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1130.txt) +R1131 | | [`RenameCpp20Constraints.cpp`, line 296](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L296) | [R1131.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1131.txt) +R1132 | | [`RenameCpp20Constraints.cpp`, line 297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L297) | [R1132.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1132.txt) +R1133 | | [`RenameCpp20Constraints.cpp`, line 298](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L298) | [R1133.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1133.txt) +R1134 | | [`RenameCpp20Constraints.cpp`, line 299](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L299) | [R1134.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1134.txt) +R1135 | | [`RenameCpp20Constraints.cpp`, line 300](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L300) | [R1135.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1135.txt) +R1136 | | [`RenameCpp20Constraints.cpp`, line 301](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L301) | [R1136.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1136.txt) +R1137 | | [`RenameCpp20Constraints.cpp`, line 302](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L302) | [R1137.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1137.txt) +R1138 | | [`RenameCpp20Constraints.cpp`, line 304](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L304) | [R1138.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1138.txt) +R1139 | | [`RenameCpp20Constraints.cpp`, line 305](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L305) | [R1139.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1139.txt) +R1140 | | [`RenameCpp20Constraints.cpp`, line 306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L306) | [R1140.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1140.txt) +R1141 | | [`RenameCpp20Constraints.cpp`, line 307](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L307) | [R1141.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1141.txt) +R1142 | | [`RenameCpp20Constraints.cpp`, line 310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L310) | [R1142.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1142.txt) +R1143 | | [`RenameCpp20Constraints.cpp`, line 311](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L311) | [R1143.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1143.txt) +R1144 | | [`RenameCpp20Constraints.cpp`, line 316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L316) | [R1144.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1144.txt) +R1145 | | [`RenameCpp20Constraints.cpp`, line 317](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L317) | [R1145.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1145.txt) +R1146 | | [`RenameCpp20Constraints.cpp`, line 318](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L318) | [R1146.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1146.txt) +R1147 | | [`RenameCpp20Constraints.cpp`, line 320](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L320) | [R1147.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1147.txt) +R1148 | | [`RenameCpp20Constraints.cpp`, line 321](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L321) | [R1148.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1148.txt) +R1149 | | [`RenameCpp20Constraints.cpp`, line 322](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L322) | [R1149.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1149.txt) +R1150 | | [`RenameCpp20Constraints.cpp`, line 323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L323) | [R1150.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1150.txt) +R1151 | | [`RenameCpp20Constraints.cpp`, line 325](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L325) | [R1151.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1151.txt) +R1152 | | [`RenameCpp20Constraints.cpp`, line 326](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L326) | [R1152.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1152.txt) +R1153 | | [`RenameCpp20Constraints.cpp`, line 327](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L327) | [R1153.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1153.txt) +R1154 | | [`RenameCpp20Constraints.cpp`, line 328](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L328) | [R1154.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1154.txt) +R1155 | | [`RenameCpp20Constraints.cpp`, line 329](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L329) | [R1155.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1155.txt) +R1156 | | [`RenameCpp20Constraints.cpp`, line 330](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L330) | [R1156.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1156.txt) +R1157 | | [`RenameCpp20Constraints.cpp`, line 331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L331) | [R1157.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1157.txt) +R1158 | | [`RenameCpp20Constraints.cpp`, line 334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L334) | [R1158.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1158.txt) +R1159 | | [`RenameCpp20Constraints.cpp`, line 335](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L335) | [R1159.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1159.txt) +R1160 | | [`RenameCpp20Constraints.cpp`, line 340](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L340) | [R1160.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1160.txt) +R1161 | | [`RenameCpp20Constraints.cpp`, line 341](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L341) | [R1161.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1161.txt) +R1162 | | [`RenameCpp20Constraints.cpp`, line 342](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L342) | [R1162.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1162.txt) +R1163 | | [`RenameCpp20Constraints.cpp`, line 344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L344) | [R1163.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1163.txt) +R1164 | | [`RenameCpp20Constraints.cpp`, line 345](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L345) | [R1164.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1164.txt) +R1165 | | [`RenameCpp20Constraints.cpp`, line 346](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L346) | [R1165.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1165.txt) +R1166 | | [`RenameCpp20Constraints.cpp`, line 347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L347) | [R1166.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1166.txt) +R1167 | | [`RenameCpp20Constraints.cpp`, line 348](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L348) | [R1167.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1167.txt) +R1168 | | [`RenameCpp20Constraints.cpp`, line 349](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L349) | [R1168.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1168.txt) +R1169 | | [`RenameCpp20Constraints.cpp`, line 350](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L350) | [R1169.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1169.txt) +R1170 | | [`RenameCpp20Constraints.cpp`, line 352](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L352) | [R1170.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1170.txt) +R1171 | | [`RenameCpp20Constraints.cpp`, line 353](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L353) | [R1171.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1171.txt) +R1172 | | [`RenameCpp20Constraints.cpp`, line 354](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L354) | [R1172.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1172.txt) +R1173 | | [`RenameCpp20Constraints.cpp`, line 355](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L355) | [R1173.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1173.txt) +R1174 | | [`RenameCpp20Constraints.cpp`, line 358](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L358) | [R1174.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1174.txt) +R1175 | | [`RenameCpp20Constraints.cpp`, line 359](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L359) | [R1175.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1175.txt) +R1176 | | [`RenameCpp20Constraints.cpp`, line 364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L364) | [R1176.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1176.txt) +R1177 | | [`RenameCpp20Constraints.cpp`, line 365](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L365) | [R1177.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1177.txt) +R1178 | | [`RenameCpp20Constraints.cpp`, line 366](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L366) | [R1178.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1178.txt) +R1179 | | [`RenameCpp20Constraints.cpp`, line 368](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L368) | [R1179.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1179.txt) +R1180 | | [`RenameCpp20Constraints.cpp`, line 369](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L369) | [R1180.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1180.txt) +R1181 | | [`RenameCpp20Constraints.cpp`, line 370](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L370) | [R1181.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1181.txt) +R1182 | | [`RenameCpp20Constraints.cpp`, line 371](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L371) | [R1182.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1182.txt) +R1183 | | [`RenameCpp20Constraints.cpp`, line 372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L372) | [R1183.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1183.txt) +R1184 | | [`RenameCpp20Constraints.cpp`, line 374](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L374) | [R1184.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1184.txt) +R1185 | | [`RenameCpp20Constraints.cpp`, line 375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L375) | [R1185.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1185.txt) +R1186 | | [`RenameCpp20Constraints.cpp`, line 376](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L376) | [R1186.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1186.txt) +R1187 | | [`RenameCpp20Constraints.cpp`, line 377](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L377) | [R1187.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1187.txt) +R1188 | | [`RenameCpp20Constraints.cpp`, line 378](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L378) | [R1188.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1188.txt) +R1189 | | [`RenameCpp20Constraints.cpp`, line 379](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L379) | [R1189.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1189.txt) +R1190 | | [`RenameCpp20Constraints.cpp`, line 380](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L380) | [R1190.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1190.txt) +R1191 | | [`RenameCpp20Constraints.cpp`, line 383](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L383) | [R1191.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1191.txt) +R1192 | | [`RenameCpp20Constraints.cpp`, line 384](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L384) | [R1192.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1192.txt) +R1193 | | [`RenameCpp20Constraints.cpp`, line 389](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L389) | [R1193.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1193.txt) +R1194 | | [`RenameCpp20Constraints.cpp`, line 390](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L390) | [R1194.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1194.txt) +R1195 | | [`RenameCpp20Constraints.cpp`, line 391](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L391) | [R1195.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1195.txt) +R1196 | | [`RenameCpp20Constraints.cpp`, line 393](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L393) | [R1196.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1196.txt) +R1197 | | [`RenameCpp20Constraints.cpp`, line 394](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L394) | [R1197.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1197.txt) +R1198 | | [`RenameCpp20Constraints.cpp`, line 395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L395) | [R1198.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1198.txt) +R1199 | | [`RenameCpp20Constraints.cpp`, line 396](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L396) | [R1199.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1199.txt) +R1200 | | [`RenameCpp20Constraints.cpp`, line 397](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L397) | [R1200.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1200.txt) +R1201 | | [`RenameCpp20Constraints.cpp`, line 398](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L398) | [R1201.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1201.txt) +R1202 | | [`RenameCpp20Constraints.cpp`, line 399](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L399) | [R1202.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1202.txt) +R1203 | | [`RenameCpp20Constraints.cpp`, line 401](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L401) | [R1203.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1203.txt) +R1204 | | [`RenameCpp20Constraints.cpp`, line 402](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L402) | [R1204.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1204.txt) +R1205 | | [`RenameCpp20Constraints.cpp`, line 403](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L403) | [R1205.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1205.txt) +R1206 | | [`RenameCpp20Constraints.cpp`, line 404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L404) | [R1206.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1206.txt) +R1207 | | [`RenameCpp20Constraints.cpp`, line 405](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L405) | [R1207.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1207.txt) +R1208 | | [`RenameCpp20Constraints.cpp`, line 408](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L408) | [R1208.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1208.txt) +R1209 | | [`RenameCpp20Constraints.cpp`, line 409](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L409) | [R1209.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1209.txt) +R1210 | | [`RenameCpp20Constraints.cpp`, line 441](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L441) | [R1210.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1210.txt) +R1211 | | [`RenameCpp20Constraints.cpp`, line 443](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L443) | [R1211.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1211.txt) +R1212 | | [`RenameCpp20Constraints.cpp`, line 446](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L446) | [R1212.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1212.txt) +R1213 | | [`RenameCpp20Constraints.cpp`, line 452](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L452) | [R1213.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1213.txt) +R1214 | | [`RenameCpp20Constraints.cpp`, line 454](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L454) | [R1214.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1214.txt) +R1215 | | [`RenameCpp20Constraints.cpp`, line 457](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L457) | [R1215.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1215.txt) +R1216 | | [`RenameCpp20Constraints.cpp`, line 463](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L463) | [R1216.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1216.txt) +R1217 | | [`RenameCpp20Constraints.cpp`, line 465](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L465) | [R1217.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1217.txt) +R1218 | | [`RenameCpp20Constraints.cpp`, line 468](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L468) | [R1218.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1218.txt) +R1219 | | [`RenameCpp20Constraints.cpp`, line 474](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L474) | [R1219.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1219.txt) +R1220 | | [`RenameCpp20Constraints.cpp`, line 476](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L476) | [R1220.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1220.txt) +R1221 | | [`RenameCpp20Constraints.cpp`, line 483](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L483) | [R1221.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1221.txt) +R1222 | | [`RenameCpp20Constraints.cpp`, line 485](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L485) | [R1222.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1222.txt) +R1223 | | [`RenameCpp20Constraints.cpp`, line 488](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L488) | [R1223.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1223.txt) +R1224 | | [`RenameCpp20Constraints.cpp`, line 494](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L494) | [R1224.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1224.txt) +R1225 | | [`RenameCpp20Constraints.cpp`, line 496](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L496) | [R1225.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1225.txt) +R1226 | | [`RenameCpp20Constraints.cpp`, line 503](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L503) | [R1226.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1226.txt) +R1227 | | [`RenameCpp20Constraints.cpp`, line 505](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L505) | [R1227.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1227.txt) +R1228 | | [`RenameCpp20Constraints.cpp`, line 512](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L512) | [R1228.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1228.txt) +R1229 | | [`RenameCpp20Constraints.cpp`, line 514](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L514) | [R1229.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1229.txt) +R1230 | | [`RenameCpp20Constraints.cpp`, line 522](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L522) | [R1230.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1230.txt) +R1231 | | [`RenameCpp20Constraints.cpp`, line 524](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L524) | [R1231.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1231.txt) +R1232 | | [`RenameCpp20Constraints.cpp`, line 527](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L527) | [R1232.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1232.txt) +R1233 | | [`RenameCpp20Constraints.cpp`, line 533](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L533) | [R1233.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1233.txt) +R1234 | | [`RenameCpp20Constraints.cpp`, line 535](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L535) | [R1234.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1234.txt) +R1235 | | [`RenameCpp20Constraints.cpp`, line 538](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L538) | [R1235.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1235.txt) +R1236 | | [`RenameCpp20Constraints.cpp`, line 544](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L544) | [R1236.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1236.txt) +R1237 | | [`RenameCpp20Constraints.cpp`, line 546](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L546) | [R1237.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1237.txt) +R1238 | | [`RenameCpp20Constraints.cpp`, line 549](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L549) | [R1238.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1238.txt) +R1239 | | [`RenameCpp20Constraints.cpp`, line 555](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L555) | [R1239.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1239.txt) +R1240 | | [`RenameCpp20Constraints.cpp`, line 557](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L557) | [R1240.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1240.txt) +R1241 | | [`RenameCpp20Constraints.cpp`, line 565](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L565) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1242 | | [`RenameCpp20Constraints.cpp`, line 567](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L567) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1243 | | [`RenameCpp20Constraints.cpp`, line 574](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L574) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1244 | | [`RenameCpp20Constraints.cpp`, line 576](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L576) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1245 | | [`RenameCpp20Constraints.cpp`, line 583](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L583) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 585](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L585) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 588](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L588) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 594](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L594) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 596](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L596) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 599](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L599) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 606](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L606) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 608](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L608) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 609](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L609) | [R1253.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1253.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 611](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L611) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 615](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L615) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 616](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L616) | [R1256.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1256.txt) +R1257 | | [`RenameCpp20Constraints.cpp`, line 623](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L623) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1258 | | [`RenameCpp20Constraints.cpp`, line 625](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L625) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 626](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L626) | [R1259.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1259.txt) +R1260 | | [`RenameCpp20Constraints.cpp`, line 628](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L628) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1261 | | [`RenameCpp20Constraints.cpp`, line 631](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L631) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 632](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L632) | [R1262.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1262.txt) +R1263 | | [`RenameCpp20Constraints.cpp`, line 639](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L639) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1264 | | [`RenameCpp20Constraints.cpp`, line 641](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L641) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 642](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L642) | [R1265.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1265.txt) +R1266 | | [`RenameCpp20Constraints.cpp`, line 644](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L644) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1267 | | [`RenameCpp20Constraints.cpp`, line 647](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L647) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 648](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L648) | [R1268.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1268.txt) +R1269 | | [`RenameCpp20Constraints.cpp`, line 656](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L656) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1270 | | [`RenameCpp20Constraints.cpp`, line 658](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L658) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 659](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L659) | [R1271.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1271.txt) +R1272 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1273 | | [`RenameCpp20Constraints.cpp`, line 665](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L665) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 666](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L666) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1275 | | [`RenameCpp20Constraints.cpp`, line 673](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L673) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1276 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 676](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L676) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 682](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L682) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 689](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L689) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 691](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L691) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 697](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L697) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 706](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L706) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 708](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L708) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 709](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L709) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 711](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L711) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 715](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L715) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 723](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L723) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 725](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L725) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 726](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L726) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 739](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L739) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 741](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L741) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 742](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L742) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 744](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L744) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 756](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L756) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 758](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L758) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 759](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L759) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 761](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L761) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 773](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L773) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 776](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L776) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 778](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L778) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 781](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L781) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 791](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L791) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 794](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L794) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 797](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L797) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 798](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L798) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 806](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L806) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 809](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L809) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 816](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L816) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 817](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L817) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 818](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L818) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 840](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L840) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 841](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L841) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 842](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L842) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 843](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L843) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 847](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L847) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 853](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L853) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 864](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L864) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 865](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L865) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 866](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L866) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 867](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L867) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 871](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L871) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 877](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L877) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 888](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L888) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 889](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L889) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 890](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L890) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 891](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L891) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 892](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L892) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 896](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L896) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 902](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L902) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 903](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L903) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 912](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L912) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 915](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L915) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 916](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L916) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 917](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L917) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 927](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L927) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 929](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L929) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 936](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L936) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 937](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L937) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 940](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L940) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 941](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L941) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 952](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L952) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 954](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L954) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 962](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L962) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 965](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L965) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 966](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L966) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 967](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L967) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 979](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L979) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 980](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L980) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 981](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L981) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 988](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L988) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 989](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L989) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 994](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L994) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 995](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L995) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 1004](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1004) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 1005](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1005) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 1006](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1006) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 1013](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1013) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 1014](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1014) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 1018](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1018) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1019](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1019) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1029](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1029) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1030](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1030) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1031](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1031) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1038](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1038) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1039](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1039) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1042](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1042) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1045](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1045) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1046](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1046) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1056](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1056) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1057](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1057) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1058](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1058) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1066](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1066) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1067](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1067) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1070](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1070) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1071](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1071) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1077](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1077) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1083](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1083) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1092](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1092) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1096](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1096) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1119](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1119) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1122](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1122) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1126](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1126) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1132](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1132) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1135](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1135) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1139](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1139) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1145](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1145) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1148](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1148) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1152](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1152) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1163](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1163) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1167](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1167) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1176](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1176) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1180](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1180) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1186](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1186) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1189](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1189) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1193](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1193) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1204](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1204) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1221](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1221) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1224](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1224) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1233](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1233) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1243](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1243) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1253](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1253) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1256](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1256) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt)