diff --git a/RefactorTest/RenameCpp20.cpp b/RefactorTest/RenameCpp20.cpp index 5ce2276..73a311b 100644 --- a/RefactorTest/RenameCpp20.cpp +++ b/RefactorTest/RenameCpp20.cpp @@ -456,6 +456,58 @@ void f10() } } +// #TEST#: R987 Rename E +enum class E +{ + // #TEST#: R988 Rename One + One, + // #TEST#: R989 Rename Two + Two, + Three +}; + +std::ostream &operator<<(std::ostream &str, E value) +{ + switch (value) + { + case E::One: + return str << "One"; + case E::Two: + return str << "Two"; + case E::Three: + return str << "Three"; + } + return str << "? (" << static_cast(value) << ')'; +} + +// using for scoped enums +void f11() +{ + struct F11 + { + using enum E; + }; + + const auto &get_enumerator = [&]() -> auto + { + using enum E; + // #TEST#: R990 Rename Three + return Three; + }; + + const auto &assert_enumerator = [&](const auto &enumerator) -> void + { + using enum E; + REQUIRE_EQUAL(Three, enumerator); + }; + + F11 f11Ins{}; + REQUIRE_EQUAL(E::One, F11::One); + REQUIRE_EQUAL(f11Ins.Two, E::Two); + REQUIRE_EQUAL(F11::Three, get_enumerator()); + assert_enumerator(get_enumerator()); +} + } // namespace void TestRenameCpp20() @@ -470,6 +522,7 @@ void TestRenameCpp20() f8(); f9(); f10(); + f11(); RenameCpp20::TestRenameConcepts(); RenameCpp20::TestRenameConstraints(); } diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp index 977575b..0d2e477 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -45,368 +45,368 @@ inline std::ostream &operator<<(std::ostream &str, const Rope &value) // clang-format off // Simple concept with single template parameter -// #TEST#: R987 Rename template parameter T +// #TEST#: R991 Rename template parameter T template -// #TEST#: R988 Rename concept Squareable -// #TEST#: R989 Rename use of T -// #TEST#: R990 Rename parameter lhs +// #TEST#: R992 Rename concept Squareable +// #TEST#: R993 Rename use of T +// #TEST#: R994 Rename parameter lhs concept Squareable = requires(T lhs) { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs lhs * lhs; }; // Simple concept with multiple template parameters -// #TEST#: R993 Rename template parameter T -// #TEST#: R994 Rename template parameter U +// #TEST#: R997 Rename template parameter T +// #TEST#: R998 Rename template parameter U template -// #TEST#: R995 Rename concept Multiplicable -// #TEST#: R996 Rename use of T -// #TEST#: R997 Rename parameter lhs -// #TEST#: R998 Rename use of U -// #TEST#: R999 Rename parameter rhs +// #TEST#: R999 Rename concept Multiplicable +// #TEST#: R1000 Rename use of T +// #TEST#: R1001 Rename parameter lhs +// #TEST#: R1002 Rename use of U +// #TEST#: R1003 Rename parameter rhs concept Multiplicable = requires(T lhs, U rhs) { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs lhs * rhs; }; // clang-format on // single template parameter function with simple constraint on template parameter -// #TEST#: R1002 Rename template parameter T +// #TEST#: R1006 Rename template parameter T template -// #TEST#: R1003 Rename concept Squareable -// #TEST#: R1004 Rename use of T +// #TEST#: R1007 Rename concept Squareable +// #TEST#: R1008 Rename use of T requires Squareable -// #TEST#: R1005 Rename first use of T -// #TEST#: R1006 Rename function square1 -// #TEST#: R1007 Rename second use of T -// #TEST#: R1008 Rename parameter value +// #TEST#: R1009 Rename first use of T +// #TEST#: R1010 Rename function square1 +// #TEST#: R1011 Rename second use of T +// #TEST#: R1012 Rename parameter value T square1(T value) { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value return value * value; } // single template parameter function with simple constraint on function -// #TEST#: R1011 Rename template parameter T +// #TEST#: R1015 Rename template parameter T template -// #TEST#: R1012 Rename first use of T -// #TEST#: R1013 Rename function square2 -// #TEST#: R1014 Rename second use of T -// #TEST#: R1015 Rename parameter value +// #TEST#: R1016 Rename first use of T +// #TEST#: R1017 Rename function square2 +// #TEST#: R1018 Rename second use of T +// #TEST#: R1019 Rename parameter value T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T requires Squareable { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value return value * value; } // single template parameter function with disjunctive constraint on template parameter -// #TEST#: R1020 Rename template parameter T +// #TEST#: R1024 Rename template parameter T template -// #TEST#: R1021 Rename first use of T -// #TEST#: R1022 Rename concept Squareable -// #TEST#: R1023 Rename second use of T +// #TEST#: R1025 Rename first use of T +// #TEST#: R1026 Rename concept Squareable +// #TEST#: R1027 Rename second use of T requires std::is_arithmetic_v || Squareable -// #TEST#: R1024 Rename first use of T -// #TEST#: R1025 Rename function square3 -// #TEST#: R1026 Rename second use of T -// #TEST#: R1027 Rename parameter value +// #TEST#: R1028 Rename first use of T +// #TEST#: R1029 Rename function square3 +// #TEST#: R1030 Rename second use of T +// #TEST#: R1031 Rename parameter value T square3(T value) { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value return value * value; } // single template parameter function with conjunctive constraint on template parameter -// #TEST#: R1030 Rename template parameter T +// #TEST#: R1034 Rename template parameter T template -// #TEST#: R1031 Rename first use of T -// #TEST#: R1032 Rename concept Squareable -// #TEST#: R1033 Rename second use of T +// #TEST#: R1035 Rename first use of T +// #TEST#: R1036 Rename concept Squareable +// #TEST#: R1037 Rename second use of T requires std::is_arithmetic_v && Squareable -// #TEST#: R1034 Rename first use of T -// #TEST#: R1035 Rename function square4 -// #TEST#: R1036 Rename second use of T -// #TEST#: R1037 Rename parameter value +// #TEST#: R1038 Rename first use of T +// #TEST#: R1039 Rename function square4 +// #TEST#: R1040 Rename second use of T +// #TEST#: R1041 Rename parameter value T square4(T value) { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value return value * value; } // single template parameter function with disjunctive constraint on function -// #TEST#: R1040 Rename template parameter T +// #TEST#: R1044 Rename template parameter T template -// #TEST#: R1041 Rename first use of T -// #TEST#: R1042 Rename function square5 -// #TEST#: R1043 Rename second use of T -// #TEST#: R1044 Rename parameter value +// #TEST#: R1045 Rename first use of T +// #TEST#: R1046 Rename function square5 +// #TEST#: R1047 Rename second use of T +// #TEST#: R1048 Rename parameter value T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T requires std::is_arithmetic_v || Squareable { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value return value * value; } // single template parameter function with conjunctive constraint on function -// #TEST#: R1050 Rename template parameter T +// #TEST#: R1054 Rename template parameter T template -// #TEST#: R1051 Rename first use of T -// #TEST#: R1052 Rename function square6 -// #TEST#: R1053 Rename second use of T -// #TEST#: R1054 Rename parameter value +// #TEST#: R1055 Rename first use of T +// #TEST#: R1056 Rename function square6 +// #TEST#: R1057 Rename second use of T +// #TEST#: R1058 Rename parameter value T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T requires std::is_arithmetic_v && Squareable { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value return value * value; } // single template parameter function with combined constraint on template parameter -// #TEST#: R1060 Rename template parameter T +// #TEST#: R1064 Rename template parameter T template -// #TEST#: R1061 Rename first use of T -// #TEST#: R1062 Rename second use of T -// #TEST#: R1063 Rename concept Squareable -// #TEST#: R1064 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable // #TEST#: R1065 Rename first use of T -// #TEST#: R1066 Rename function square7 -// #TEST#: R1067 Rename second use of T -// #TEST#: R1068 Rename parameter value +// #TEST#: R1066 Rename second use of T +// #TEST#: R1067 Rename concept Squareable +// #TEST#: R1068 Rename third use of T + requires(std::is_integral_v || std::is_floating_point_v) && Squareable +// #TEST#: R1069 Rename first use of T +// #TEST#: R1070 Rename function square7 +// #TEST#: R1071 Rename second use of T +// #TEST#: R1072 Rename parameter value T square7(T value) { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value return value * value; } // single template parameter function with combined constraint on function -// #TEST#: R1071 Rename template parameter T +// #TEST#: R1075 Rename template parameter T template -// #TEST#: R1072 Rename first use of T -// #TEST#: R1073 Rename function square8 -// #TEST#: R1074 Rename second use of T -// #TEST#: R1075 Rename parameter value +// #TEST#: R1076 Rename first use of T +// #TEST#: R1077 Rename function square8 +// #TEST#: R1078 Rename second use of T +// #TEST#: R1079 Rename parameter value T square8(T value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T requires(std::is_integral_v || std::is_floating_point_v) && Squareable { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value return value * value; } // multiple template parameter function with simple constraint on template parameters -// #TEST#: R1082 Rename template parameter T -// #TEST#: R1083 Rename template parameter U -// #TEST#: R1084 Rename use of T +// #TEST#: R1086 Rename template parameter T +// #TEST#: R1087 Rename template parameter U +// #TEST#: R1088 Rename use of T template -// #TEST#: R1085 Rename concept Multiplicable -// #TEST#: R1086 Rename use of T -// #TEST#: R1087 Rename use of U - requires Multiplicable -// #TEST#: R1088 Rename function product1 -// #TEST#: R1089 Rename use of T -// #TEST#: R1090 Rename parameter lhs +// #TEST#: R1089 Rename concept Multiplicable +// #TEST#: R1090 Rename use of T // #TEST#: R1091 Rename use of U -// #TEST#: R1092 Rename parameter rhs -// #TEST#: R1093 Rename use of lhs -// #TEST#: R1094 Rename use of rhs + requires Multiplicable +// #TEST#: R1092 Rename function product1 +// #TEST#: R1093 Rename use of T +// #TEST#: R1094 Rename parameter lhs +// #TEST#: R1095 Rename use of U +// #TEST#: R1096 Rename parameter rhs +// #TEST#: R1097 Rename use of lhs +// #TEST#: R1098 Rename use of rhs auto product1(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs return lhs * rhs; } // multiple template parameter function with simple constraint on function -// #TEST#: R1097 Rename template parameter T -// #TEST#: R1098 Rename template parameter U -// #TEST#: R1099 Rename use of T +// #TEST#: R1101 Rename template parameter T +// #TEST#: R1102 Rename template parameter U +// #TEST#: R1103 Rename use of T template -// #TEST#: R1100 Rename function product2 -// #TEST#: R1101 Rename use of T -// #TEST#: R1102 Rename parameter lhs -// #TEST#: R1103 Rename use of U -// #TEST#: R1104 Rename parameter rhs -// #TEST#: R1105 Rename use of lhs -// #TEST#: R1106 Rename use of rhs +// #TEST#: R1104 Rename function product2 +// #TEST#: R1105 Rename use of T +// #TEST#: R1106 Rename parameter lhs +// #TEST#: R1107 Rename use of U +// #TEST#: R1108 Rename parameter rhs +// #TEST#: R1109 Rename use of lhs +// #TEST#: R1110 Rename use of rhs auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U requires Multiplicable { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs return lhs * rhs; } // multiple template parameter function with disjunctive constraint on template parameters -// #TEST#: R1112 Rename template parameter T -// #TEST#: R1113 Rename template parameter U -// #TEST#: R1114 Rename use of T +// #TEST#: R1116 Rename template parameter T +// #TEST#: R1117 Rename template parameter U +// #TEST#: R1118 Rename use of T template -// #TEST#: R1115 Rename first use of T -// #TEST#: R1116 Rename concept Multiplicable -// #TEST#: R1117 Rename second use of T -// #TEST#: R1118 Rename use of U - requires std::is_arithmetic_v || Multiplicable -// #TEST#: R1119 Rename function product3 -// #TEST#: R1120 Rename use of T -// #TEST#: R1121 Rename parameter lhs +// #TEST#: R1119 Rename first use of T +// #TEST#: R1120 Rename concept Multiplicable +// #TEST#: R1121 Rename second use of T // #TEST#: R1122 Rename use of U -// #TEST#: R1123 Rename parameter rhs -// #TEST#: R1124 Rename use of lhs -// #TEST#: R1125 Rename use of rhs + requires std::is_arithmetic_v || Multiplicable +// #TEST#: R1123 Rename function product3 +// #TEST#: R1124 Rename use of T +// #TEST#: R1125 Rename parameter lhs +// #TEST#: R1126 Rename use of U +// #TEST#: R1127 Rename parameter rhs +// #TEST#: R1128 Rename use of lhs +// #TEST#: R1129 Rename use of rhs auto product3(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs return lhs * rhs; } // multiple template parameter function with disjunctive constraint on function -// #TEST#: R1128 Rename template parameter T -// #TEST#: R1129 Rename template parameter U -// #TEST#: R1130 Rename use of T +// #TEST#: R1132 Rename template parameter T +// #TEST#: R1133 Rename template parameter U +// #TEST#: R1134 Rename use of T template -// #TEST#: R1131 Rename function product4 -// #TEST#: R1132 Rename use of T -// #TEST#: R1133 Rename parameter lhs -// #TEST#: R1134 Rename use of U -// #TEST#: R1135 Rename parameter rhs -// #TEST#: R1136 Rename use of lhs -// #TEST#: R1137 Rename use of rhs +// #TEST#: R1135 Rename function product4 +// #TEST#: R1136 Rename use of T +// #TEST#: R1137 Rename parameter lhs +// #TEST#: R1138 Rename use of U +// #TEST#: R1139 Rename parameter rhs +// #TEST#: R1140 Rename use of lhs +// #TEST#: R1141 Rename use of rhs auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U requires std::is_arithmetic_v || Multiplicable { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs return lhs * rhs; } // multiple template parameter function with conjunctive constraint on template parameters -// #TEST#: R1144 Rename template parameter T -// #TEST#: R1145 Rename template parameter U -// #TEST#: R1146 Rename use of T +// #TEST#: R1148 Rename template parameter T +// #TEST#: R1149 Rename template parameter U +// #TEST#: R1150 Rename use of T template -// #TEST#: R1147 Rename first use of T -// #TEST#: R1148 Rename concept Multiplicable -// #TEST#: R1149 Rename second use of T -// #TEST#: R1150 Rename use of U - requires std::is_arithmetic_v && Multiplicable -// #TEST#: R1151 Rename function product5 -// #TEST#: R1152 Rename use of T -// #TEST#: R1153 Rename parameter lhs +// #TEST#: R1151 Rename first use of T +// #TEST#: R1152 Rename concept Multiplicable +// #TEST#: R1153 Rename second use of T // #TEST#: R1154 Rename use of U -// #TEST#: R1155 Rename parameter rhs -// #TEST#: R1156 Rename use of lhs -// #TEST#: R1157 Rename use of rhs + requires std::is_arithmetic_v && Multiplicable +// #TEST#: R1155 Rename function product5 +// #TEST#: R1156 Rename use of T +// #TEST#: R1157 Rename parameter lhs +// #TEST#: R1158 Rename use of U +// #TEST#: R1159 Rename parameter rhs +// #TEST#: R1160 Rename use of lhs +// #TEST#: R1161 Rename use of rhs auto product5(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs return lhs * rhs; } // multiple template parameter function with conjunctive constraint on function -// #TEST#: R1160 Rename template parameter T -// #TEST#: R1161 Rename template parameter U -// #TEST#: R1162 Rename use of T +// #TEST#: R1164 Rename template parameter T +// #TEST#: R1165 Rename template parameter U +// #TEST#: R1166 Rename use of T template -// #TEST#: R1163 Rename function product6 -// #TEST#: R1164 Rename use of T -// #TEST#: R1165 Rename parameter lhs -// #TEST#: R1166 Rename use of U -// #TEST#: R1167 Rename parameter rhs -// #TEST#: R1168 Rename use of lhs -// #TEST#: R1169 Rename use of rhs +// #TEST#: R1167 Rename function product6 +// #TEST#: R1168 Rename use of T +// #TEST#: R1169 Rename parameter lhs +// #TEST#: R1170 Rename use of U +// #TEST#: R1171 Rename parameter rhs +// #TEST#: R1172 Rename use of lhs +// #TEST#: R1173 Rename use of rhs auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U requires std::is_arithmetic_v && Multiplicable { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs return lhs * rhs; } // multiple template parameter function with combined constraint on template parameters -// #TEST#: R1176 Rename template parameter T -// #TEST#: R1177 Rename template parameter U -// #TEST#: R1178 Rename use of T +// #TEST#: R1180 Rename template parameter T +// #TEST#: R1181 Rename template parameter U +// #TEST#: R1182 Rename use of T template -// #TEST#: R1179 Rename first use of T -// #TEST#: R1180 Rename first use of U -// #TEST#: R1181 Rename concept Multiplicable -// #TEST#: R1182 Rename second use of T -// #TEST#: R1183 Rename second use of U +// #TEST#: R1183 Rename first use of T +// #TEST#: R1184 Rename first use of U +// #TEST#: R1185 Rename concept Multiplicable +// #TEST#: R1186 Rename second use of T +// #TEST#: R1187 Rename second use of U requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -// #TEST#: R1184 Rename function product7 -// #TEST#: R1185 Rename use of T -// #TEST#: R1186 Rename parameter lhs -// #TEST#: R1187 Rename use of U -// #TEST#: R1188 Rename parameter rhs -// #TEST#: R1189 Rename use of lhs -// #TEST#: R1190 Rename use of rhs +// #TEST#: R1188 Rename function product7 +// #TEST#: R1189 Rename use of T +// #TEST#: R1190 Rename parameter lhs +// #TEST#: R1191 Rename use of U +// #TEST#: R1192 Rename parameter rhs +// #TEST#: R1193 Rename use of lhs +// #TEST#: R1194 Rename use of rhs auto product7(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs return lhs * rhs; } // multiple template parameter function with combined constraint on function -// #TEST#: R1193 Rename template parameter T -// #TEST#: R1194 Rename template parameter U -// #TEST#: R1195 Rename use of T +// #TEST#: R1197 Rename template parameter T +// #TEST#: R1198 Rename template parameter U +// #TEST#: R1199 Rename use of T template -// #TEST#: R1196 Rename function product8 -// #TEST#: R1197 Rename use of T -// #TEST#: R1198 Rename parameter lhs -// #TEST#: R1199 Rename use of U -// #TEST#: R1200 Rename parameter rhs -// #TEST#: R1201 Rename use of lhs -// #TEST#: R1202 Rename use of rhs +// #TEST#: R1200 Rename function product8 +// #TEST#: R1201 Rename use of T +// #TEST#: R1202 Rename parameter lhs +// #TEST#: R1203 Rename use of U +// #TEST#: R1204 Rename parameter rhs +// #TEST#: R1205 Rename use of lhs +// #TEST#: R1206 Rename use of rhs auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs return lhs * rhs; } @@ -438,80 +438,80 @@ void f1() { // single template parameter function with simple constraint on template parameter { - // #TEST#: R1210 Rename function square1 + // #TEST#: R1214 Rename function square1 REQUIRE_EQUAL(4, square1(2)); - // #TEST#: R1211 Rename function square1 + // #TEST#: R1215 Rename function square1 const double d = square1(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1212 Rename function square1 + // #TEST#: R1216 Rename function square1 const Rope r = square1(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } // single template parameter function with simple constraint on function { - // #TEST#: R1213 Rename function square2 + // #TEST#: R1217 Rename function square2 REQUIRE_EQUAL(4, square2(2)); - // #TEST#: R1214 Rename function square2 + // #TEST#: R1218 Rename function square2 const double d = square2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1215 Rename function square2 + // #TEST#: R1219 Rename function square2 const Rope r = square2(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } // single template parameter function with disjunctive constraint on template parameter { - // #TEST#: R1216 Rename function square3 + // #TEST#: R1220 Rename function square3 REQUIRE_EQUAL(4, square3(2)); - // #TEST#: R1217 Rename function square3 + // #TEST#: R1221 Rename function square3 const double d = square3(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1218 Rename function square3 + // #TEST#: R1222 Rename function square3 const Rope r = square3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } // single template parameter function with conjunctive constraint on template parameter { - // #TEST#: R1219 Rename function square4 + // #TEST#: R1223 Rename function square4 REQUIRE_EQUAL(4, square4(2)); - // #TEST#: R1220 Rename function square4 + // #TEST#: R1224 Rename function square4 const double d = square4(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } // single template parameter function with disjunctive constraint on function { - // #TEST#: R1221 Rename function square5 + // #TEST#: R1225 Rename function square5 REQUIRE_EQUAL(4, square5(2)); - // #TEST#: R1222 Rename function square5 + // #TEST#: R1226 Rename function square5 const double d = square5(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1223 Rename function square5 + // #TEST#: R1227 Rename function square5 const Rope r = square5(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } // single template parameter function with conjunctive constraint on function { - // #TEST#: R1224 Rename function square6 + // #TEST#: R1228 Rename function square6 REQUIRE_EQUAL(4, square6(2)); - // #TEST#: R1225 Rename function square6 + // #TEST#: R1229 Rename function square6 const double d = square6(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } // single template parameter function with combined constraint on template parameter { - // #TEST#: R1226 Rename function square7 + // #TEST#: R1230 Rename function square7 REQUIRE_EQUAL(4, square7(2)); - // #TEST#: R1227 Rename function square7 + // #TEST#: R1231 Rename function square7 const double d = square7(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } // single template parameter function with combined constraint on function { - // #TEST#: R1228 Rename function square8 + // #TEST#: R1232 Rename function square8 REQUIRE_EQUAL(4, square8(2)); - // #TEST#: R1229 Rename function square8 + // #TEST#: R1233 Rename function square8 const double d = square8(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic @@ -519,134 +519,134 @@ void f1() // multiple template parameter function with simple constraint on template parameters { - // #TEST#: R1230 Rename function product1 + // #TEST#: R1234 Rename function product1 REQUIRE_EQUAL(6.0, product1(2, 3.0)); - // #TEST#: R1231 Rename function product1 + // #TEST#: R1235 Rename function product1 const double d = product1(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1232 Rename function product1 + // #TEST#: R1236 Rename function product1 const Rope r = product1(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } // multiple template parameter function with simple constraint on function { - // #TEST#: R1233 Rename function product2 + // #TEST#: R1237 Rename function product2 REQUIRE_EQUAL(6.0, product2(2, 3.0)); - // #TEST#: R1234 Rename function product2 + // #TEST#: R1238 Rename function product2 const double d = product2(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1235 Rename function product2 + // #TEST#: R1239 Rename function product2 const Rope r = product2(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } // multiple template parameter function with disjunctive constraint on template parameters { - // #TEST#: R1236 Rename function product3 + // #TEST#: R1240 Rename function product3 REQUIRE_EQUAL(6.0, product3(2, 3.0)); - // #TEST#: R1237 Rename function product3 + // #TEST#: R1241 Rename function product3 const double d = product3(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1238 Rename function product3 + // #TEST#: R1242 Rename function product3 const Rope r = product3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } // multiple template parameter function with disjunctive constraint on function { - // #TEST#: R1239 Rename function product4 + // #TEST#: R1243 Rename function product4 REQUIRE_EQUAL(6.0, product4(2, 3.0)); - // #TEST#: R1240 Rename function product4 + // #TEST#: R1244 Rename function product4 const double d = product4(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1241 Rename function product4 + // #TEST#: R1245 Rename function product4 const Rope r = product4(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } // multiple template parameter function with conjunctive constraint on template parameters { - // #TEST#: R1242 Rename function product5 + // #TEST#: R1246 Rename function product5 REQUIRE_EQUAL(6.0, product5(2, 3.0)); - // #TEST#: R1243 Rename function product5 + // #TEST#: R1247 Rename function product5 const double d = product5(2.0, 3.0); REQUIRE_EQUAL(6.0, d); // Rope is not std::is_arithmetic } // multiple template parameter function with conjunctive constraint on function { - // #TEST#: R1244 Rename function product6 + // #TEST#: R1248 Rename function product6 REQUIRE_EQUAL(6.0, product6(2, 3.0)); - // #TEST#: R1245 Rename function product6 + // #TEST#: R1249 Rename function product6 const double d = product6(2.0, 3.0); REQUIRE_EQUAL(6.0, d); // Rope is not std::is_arithmetic } // multiple template parameter function with combined constraint on template parameters { - // #TEST#: R1246 Rename function product7 + // #TEST#: R1250 Rename function product7 REQUIRE_EQUAL(6.0, product7(2, 3.0)); - // #TEST#: R1247 Rename function product7 + // #TEST#: R1251 Rename function product7 const double d = product7(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1248 Rename function product7 + // #TEST#: R1252 Rename function product7 const Rope r = product7(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } // multiple template parameter function with combined constraint on function { - // #TEST#: R1249 Rename function product8 + // #TEST#: R1253 Rename function product8 REQUIRE_EQUAL(6.0, product8(2, 3.0)); - // #TEST#: R1250 Rename function product8 + // #TEST#: R1254 Rename function product8 const double d = product8(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1251 Rename function product8 + // #TEST#: R1255 Rename function product8 const Rope r = product8(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } } // single constraint on single template parameter -// #TEST#: R1252 Rename template parameter T +// #TEST#: R1256 Rename template parameter T template -// #TEST#: R1253 Rename concept Squareable -// #TEST#: R1254 Rename use of T +// #TEST#: R1257 Rename concept Squareable +// #TEST#: R1258 Rename use of T requires Squareable -// #TEST#: R1255 Rename class Sqr1 +// #TEST#: R1259 Rename class Sqr1 class Sqr1 { public: - // #TEST#: R1256 Rename first use of T - // #TEST#: R1257 Rename second of T + // #TEST#: R1260 Rename first use of T + // #TEST#: R1261 Rename second of T T operator()(T value) const { return value * value; } }; -// #TEST#: R1258 Rename template parameter T +// #TEST#: R1262 Rename template parameter T template -// #TEST#: R1259 Rename concept Squareable -// #TEST#: R1260 Rename use of T +// #TEST#: R1263 Rename concept Squareable +// #TEST#: R1264 Rename use of T requires Squareable -// #TEST#: R1261 Rename class SqrStruct1 +// #TEST#: R1265 Rename class SqrStruct1 struct SqrStruct1 { - // #TEST#: R1262 Rename first use of T - // #TEST#: R1263 Rename second of T + // #TEST#: R1266 Rename first use of T + // #TEST#: R1267 Rename second of T T operator()(T value) const { return value * value; } }; -// #TEST#: R1264 Rename template parameter T +// #TEST#: R1268 Rename template parameter T template -// #TEST#: R1265 Rename concept Squareable -// #TEST#: R1266 Rename use of T +// #TEST#: R1269 Rename concept Squareable +// #TEST#: R1270 Rename use of T requires Squareable -// #TEST#: R1267 Rename class SqrUnion1 +// #TEST#: R1271 Rename class SqrUnion1 union SqrUnion1 { - // #TEST#: R1268 Rename first use of T - // #TEST#: R1269 Rename second of T + // #TEST#: R1272 Rename first use of T + // #TEST#: R1273 Rename second of T T operator()(T value) const { return value * value; @@ -654,52 +654,52 @@ union SqrUnion1 }; // compound constraint on single template parameter, disjunction -// #TEST#: R1270 Rename template parameter T +// #TEST#: R1274 Rename template parameter T template -// #TEST#: R1271 Rename first use of T -// #TEST#: R1272 Rename concept Squareable -// #TEST#: R1273 Rename second use of T +// #TEST#: R1275 Rename first use of T +// #TEST#: R1276 Rename concept Squareable +// #TEST#: R1277 Rename second use of T requires std::is_arithmetic_v || Squareable -// #TEST#: R1274 Rename class Sqr2 +// #TEST#: R1278 Rename class Sqr2 class Sqr2 { public: - // #TEST#: R1275 Rename first use of T - // #TEST#: R1276 Rename second of T + // #TEST#: R1279 Rename first use of T + // #TEST#: R1280 Rename second of T T operator()(T value) const { return value * value; } }; -// #TEST#: R1277 Rename template parameter T +// #TEST#: R1281 Rename template parameter T template -// #TEST#: R1278 Rename first use of T -// #TEST#: R1279 Rename concept Squareable -// #TEST#: R1280 Rename second use of T +// #TEST#: R1282 Rename first use of T +// #TEST#: R1283 Rename concept Squareable +// #TEST#: R1284 Rename second use of T requires std::is_arithmetic_v || Squareable -// #TEST#: R1281 Rename class SqrStruct2 +// #TEST#: R1285 Rename class SqrStruct2 struct SqrStruct2 { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T T operator()(T value) const { return value * value; } }; -// #TEST#: R1284 Rename template parameter T +// #TEST#: R1288 Rename template parameter T template -// #TEST#: R1285 Rename first use of T -// #TEST#: R1286 Rename concept Squareable -// #TEST#: R1287 Rename second use of T +// #TEST#: R1289 Rename first use of T +// #TEST#: R1290 Rename concept Squareable +// #TEST#: R1291 Rename second use of T requires std::is_arithmetic_v || Squareable -// #TEST#: R1288 Rename class SqrUnion2 +// #TEST#: R1292 Rename class SqrUnion2 union SqrUnion2 { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T T operator()(T value) const { return value * value; @@ -707,52 +707,52 @@ union SqrUnion2 }; // compound constraint on single template parameter, conjunction -// #TEST#: R1291 Rename template parameter T +// #TEST#: R1295 Rename template parameter T template -// #TEST#: R1292 Rename first use of T -// #TEST#: R1293 Rename concept Squareable -// #TEST#: R1294 Rename second use of T +// #TEST#: R1296 Rename first use of T +// #TEST#: R1297 Rename concept Squareable +// #TEST#: R1298 Rename second use of T requires std::is_arithmetic_v && Squareable -// #TEST#: R1295 Rename class Sqr3 +// #TEST#: R1299 Rename class Sqr3 class Sqr3 { public: - // #TEST#: R1296 Rename first use of T - // #TEST#: R1297 Rename second of T + // #TEST#: R1300 Rename first use of T + // #TEST#: R1301 Rename second of T T operator()(T value) const { return value * value; } }; -// #TEST#: R1298 Rename template parameter T +// #TEST#: R1302 Rename template parameter T template -// #TEST#: R1299 Rename first use of T -// #TEST#: R1300 Rename concept Squareable -// #TEST#: R1301 Rename second use of T +// #TEST#: R1303 Rename first use of T +// #TEST#: R1304 Rename concept Squareable +// #TEST#: R1305 Rename second use of T requires std::is_arithmetic_v && Squareable -// #TEST#: R1302 Rename class SqrStruct3 +// #TEST#: R1306 Rename class SqrStruct3 struct SqrStruct3 { - // #TEST#: R1303 Rename first use of T - // #TEST#: R1304 Rename second of T + // #TEST#: R1307 Rename first use of T + // #TEST#: R1308 Rename second of T T operator()(T value) const { return value * value; } }; -// #TEST#: R1305 Rename template parameter T +// #TEST#: R1309 Rename template parameter T template -// #TEST#: R1306 Rename first use of T -// #TEST#: R1307 Rename concept Squareable -// #TEST#: R1308 Rename second use of T +// #TEST#: R1310 Rename first use of T +// #TEST#: R1311 Rename concept Squareable +// #TEST#: R1312 Rename second use of T requires std::is_arithmetic_v && Squareable -// #TEST#: R1309 Rename class SqrUnion3 +// #TEST#: R1313 Rename class SqrUnion3 union SqrUnion3 { - // #TEST#: R1310 Rename first use of T - // #TEST#: R1311 Rename second of T + // #TEST#: R1314 Rename first use of T + // #TEST#: R1315 Rename second of T T operator()(T value) const { return value * value; @@ -760,55 +760,55 @@ union SqrUnion3 }; // compound constraint on single template parameter, combination -// #TEST#: R1312 Rename template parameter T +// #TEST#: R1316 Rename template parameter T template -// #TEST#: R1313 Rename first use of T -// #TEST#: R1314 Rename second use of T -// #TEST#: R1315 Rename concept Squareable -// #TEST#: R1316 Rename third use of T +// #TEST#: R1317 Rename first use of T +// #TEST#: R1318 Rename second use of T +// #TEST#: R1319 Rename concept Squareable +// #TEST#: R1320 Rename third use of T requires(std::is_integral_v || std::is_floating_point_v) && Squareable -// #TEST#: R1317 Rename class Sqr4 +// #TEST#: R1321 Rename class Sqr4 class Sqr4 { public: - // #TEST#: R1318 Rename first use of T - // #TEST#: R1319 Rename second of T + // #TEST#: R1322 Rename first use of T + // #TEST#: R1323 Rename second of T T operator()(T value) const { return value * value; } }; -// #TEST#: R1320 Rename template parameter T +// #TEST#: R1324 Rename template parameter T template -// #TEST#: R1321 Rename first use of T -// #TEST#: R1322 Rename second use of T -// #TEST#: R1323 Rename concept Squareable -// #TEST#: R1324 Rename third use of T +// #TEST#: R1325 Rename first use of T +// #TEST#: R1326 Rename second use of T +// #TEST#: R1327 Rename concept Squareable +// #TEST#: R1328 Rename third use of T requires(std::is_integral_v || std::is_floating_point_v) && Squareable -// #TEST#: R1325 Rename class SqrStruct4 +// #TEST#: R1329 Rename class SqrStruct4 struct SqrStruct4 { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T T operator()(T value) const { return value * value; } }; -// #TEST#: R1328 Rename template parameter T +// #TEST#: R1332 Rename template parameter T template -// #TEST#: R1329 Rename first use of T -// #TEST#: R1330 Rename second use of T -// #TEST#: R1331 Rename concept Squareable -// #TEST#: R1332 Rename third use of T +// #TEST#: R1333 Rename first use of T +// #TEST#: R1334 Rename second use of T +// #TEST#: R1335 Rename concept Squareable +// #TEST#: R1336 Rename third use of T requires(std::is_integral_v || std::is_floating_point_v) && Squareable -// #TEST#: R1333 Rename class SqrUnion4 +// #TEST#: R1337 Rename class SqrUnion4 union SqrUnion4 { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T T operator()(T value) const { return value * value; @@ -816,309 +816,309 @@ union SqrUnion4 }; // single constraint on multiple template parameters -// #TEST#: R1336 Rename template parameter T -// #TEST#: R1337 Rename template parameter U -// #TEST#: R1338 Rename use of T +// #TEST#: R1340 Rename template parameter T +// #TEST#: R1341 Rename template parameter U +// #TEST#: R1342 Rename use of T template -// #TEST#: R1339 Rename concept Multiplicable -// #TEST#: R1340 Rename use of T -// #TEST#: R1341 Rename use of U +// #TEST#: R1343 Rename concept Multiplicable +// #TEST#: R1344 Rename use of T +// #TEST#: R1345 Rename use of U requires Multiplicable class Product1 { public: - // #TEST#: R1342 Rename use of T - // #TEST#: R1343 Rename parameter lhs - // #TEST#: R1344 Rename use of U - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs + // #TEST#: R1346 Rename use of T + // #TEST#: R1347 Rename parameter lhs + // #TEST#: R1348 Rename use of U + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs return lhs * rhs; } }; -// #TEST#: R1350 Rename template parameter T -// #TEST#: R1351 Rename template parameter U -// #TEST#: R1352 Rename use of T +// #TEST#: R1354 Rename template parameter T +// #TEST#: R1355 Rename template parameter U +// #TEST#: R1356 Rename use of T template -// #TEST#: R1353 Rename concept Multiplicable -// #TEST#: R1354 Rename use of T -// #TEST#: R1355 Rename use of U +// #TEST#: R1357 Rename concept Multiplicable +// #TEST#: R1358 Rename use of T +// #TEST#: R1359 Rename use of U requires Multiplicable struct ProductStruct1 { - // #TEST#: R1356 Rename use of T - // #TEST#: R1357 Rename parameter lhs - // #TEST#: R1358 Rename use of U - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs + // #TEST#: R1360 Rename use of T + // #TEST#: R1361 Rename parameter lhs + // #TEST#: R1362 Rename use of U + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs return lhs * rhs; } }; -// #TEST#: R1364 Rename template parameter T -// #TEST#: R1365 Rename template parameter U -// #TEST#: R1366 Rename use of T +// #TEST#: R1368 Rename template parameter T +// #TEST#: R1369 Rename template parameter U +// #TEST#: R1370 Rename use of T template -// #TEST#: R1367 Rename concept Multiplicable -// #TEST#: R1368 Rename use of T -// #TEST#: R1369 Rename use of U +// #TEST#: R1371 Rename concept Multiplicable +// #TEST#: R1372 Rename use of T +// #TEST#: R1373 Rename use of U requires Multiplicable union ProductUnion1 { - // #TEST#: R1370 Rename use of T - // #TEST#: R1371 Rename parameter lhs - // #TEST#: R1372 Rename use of U - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs + // #TEST#: R1374 Rename use of T + // #TEST#: R1375 Rename parameter lhs + // #TEST#: R1376 Rename use of U + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs return lhs * rhs; } }; // compound constraint on multiple template parameters, disjunction -// #TEST#: R1378 Rename template parameter T -// #TEST#: R1379 Rename template parameter U -// #TEST#: R1380 Rename use of T +// #TEST#: R1382 Rename template parameter T +// #TEST#: R1383 Rename template parameter U +// #TEST#: R1384 Rename use of T template -// #TEST#: R1381 Rename first use of T -// #TEST#: R1382 Rename concept Multiplicable -// #TEST#: R1383 Rename second use of T -// #TEST#: R1384 Rename use of U +// #TEST#: R1385 Rename first use of T +// #TEST#: R1386 Rename concept Multiplicable +// #TEST#: R1387 Rename second use of T +// #TEST#: R1388 Rename use of U requires std::is_arithmetic_v || Multiplicable class Product2 { public: - // #TEST#: R1385 Rename use of T - // #TEST#: R1386 Rename parameter lhs - // #TEST#: R1387 Rename use of U - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs + // #TEST#: R1389 Rename use of T + // #TEST#: R1390 Rename parameter lhs + // #TEST#: R1391 Rename use of U + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs return lhs * rhs; } }; -// #TEST#: R1393 Rename template parameter T -// #TEST#: R1394 Rename template parameter U -// #TEST#: R1395 Rename use of T +// #TEST#: R1397 Rename template parameter T +// #TEST#: R1398 Rename template parameter U +// #TEST#: R1399 Rename use of T template -// #TEST#: R1396 Rename first use of T -// #TEST#: R1397 Rename concept Multiplicable -// #TEST#: R1398 Rename second use of T -// #TEST#: R1399 Rename use of U +// #TEST#: R1400 Rename first use of T +// #TEST#: R1401 Rename concept Multiplicable +// #TEST#: R1402 Rename second use of T +// #TEST#: R1403 Rename use of U requires std::is_arithmetic_v || Multiplicable struct ProductStruct2 { - // #TEST#: R1400 Rename use of T - // #TEST#: R1401 Rename parameter lhs - // #TEST#: R1402 Rename use of U - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs + // #TEST#: R1404 Rename use of T + // #TEST#: R1405 Rename parameter lhs + // #TEST#: R1406 Rename use of U + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs return lhs * rhs; } }; -// #TEST#: R1408 Rename template parameter T -// #TEST#: R1409 Rename template parameter U -// #TEST#: R1410 Rename use of T +// #TEST#: R1412 Rename template parameter T +// #TEST#: R1413 Rename template parameter U +// #TEST#: R1414 Rename use of T template -// #TEST#: R1411 Rename first use of T -// #TEST#: R1412 Rename concept Multiplicable -// #TEST#: R1413 Rename second use of T -// #TEST#: R1414 Rename use of U +// #TEST#: R1415 Rename first use of T +// #TEST#: R1416 Rename concept Multiplicable +// #TEST#: R1417 Rename second use of T +// #TEST#: R1418 Rename use of U requires std::is_arithmetic_v || Multiplicable union ProductUnion2 { - // #TEST#: R1415 Rename use of T - // #TEST#: R1416 Rename parameter lhs - // #TEST#: R1417 Rename use of U - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs + // #TEST#: R1419 Rename use of T + // #TEST#: R1420 Rename parameter lhs + // #TEST#: R1421 Rename use of U + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs return lhs * rhs; } }; // compound constraint on multiple template parameters, conjunction -// #TEST#: R1423 Rename template parameter T -// #TEST#: R1424 Rename template parameter U -// #TEST#: R1425 Rename use of T +// #TEST#: R1427 Rename template parameter T +// #TEST#: R1428 Rename template parameter U +// #TEST#: R1429 Rename use of T template -// #TEST#: R1426 Rename first use of T -// #TEST#: R1427 Rename concept Multiplicable -// #TEST#: R1428 Rename second use of T -// #TEST#: R1429 Rename use of U +// #TEST#: R1430 Rename first use of T +// #TEST#: R1431 Rename concept Multiplicable +// #TEST#: R1432 Rename second use of T +// #TEST#: R1433 Rename use of U requires std::is_arithmetic_v && Multiplicable class Product3 { public: - // #TEST#: R1430 Rename use of T - // #TEST#: R1431 Rename parameter lhs - // #TEST#: R1432 Rename use of U - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs + // #TEST#: R1434 Rename use of T + // #TEST#: R1435 Rename parameter lhs + // #TEST#: R1436 Rename use of U + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs return lhs * rhs; } }; -// #TEST#: R1438 Rename template parameter T -// #TEST#: R1439 Rename template parameter U -// #TEST#: R1440 Rename use of T +// #TEST#: R1442 Rename template parameter T +// #TEST#: R1443 Rename template parameter U +// #TEST#: R1444 Rename use of T template -// #TEST#: R1441 Rename first use of T -// #TEST#: R1442 Rename concept Multiplicable -// #TEST#: R1443 Rename second use of T -// #TEST#: R1444 Rename use of U +// #TEST#: R1445 Rename first use of T +// #TEST#: R1446 Rename concept Multiplicable +// #TEST#: R1447 Rename second use of T +// #TEST#: R1448 Rename use of U requires std::is_arithmetic_v && Multiplicable struct ProductStruct3 { - // #TEST#: R1445 Rename use of T - // #TEST#: R1446 Rename parameter lhs - // #TEST#: R1447 Rename use of U - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs + // #TEST#: R1449 Rename use of T + // #TEST#: R1450 Rename parameter lhs + // #TEST#: R1451 Rename use of U + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs return lhs * rhs; } }; -// #TEST#: R1453 Rename template parameter T -// #TEST#: R1454 Rename template parameter U -// #TEST#: R1455 Rename use of T +// #TEST#: R1457 Rename template parameter T +// #TEST#: R1458 Rename template parameter U +// #TEST#: R1459 Rename use of T template -// #TEST#: R1456 Rename first use of T -// #TEST#: R1457 Rename concept Multiplicable -// #TEST#: R1458 Rename second use of T -// #TEST#: R1459 Rename use of U +// #TEST#: R1460 Rename first use of T +// #TEST#: R1461 Rename concept Multiplicable +// #TEST#: R1462 Rename second use of T +// #TEST#: R1463 Rename use of U requires std::is_arithmetic_v && Multiplicable union ProductUnion3 { - // #TEST#: R1460 Rename use of T - // #TEST#: R1461 Rename parameter lhs - // #TEST#: R1462 Rename use of U - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs + // #TEST#: R1464 Rename use of T + // #TEST#: R1465 Rename parameter lhs + // #TEST#: R1466 Rename use of U + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs return lhs * rhs; } }; // compound constraint on multiple template parameters, combination -// #TEST#: R1468 Rename template parameter T -// #TEST#: R1469 Rename template parameter U -// #TEST#: R1470 Rename use of T +// #TEST#: R1472 Rename template parameter T +// #TEST#: R1473 Rename template parameter U +// #TEST#: R1474 Rename use of T template -// #TEST#: R1471 Rename first use of T -// #TEST#: R1472 Rename second use of T -// #TEST#: R1473 Rename concept Multiplicable -// #TEST#: R1474 Rename third use of T -// #TEST#: R1475 Rename use of U +// #TEST#: R1475 Rename first use of T +// #TEST#: R1476 Rename second use of T +// #TEST#: R1477 Rename concept Multiplicable +// #TEST#: R1478 Rename third use of T +// #TEST#: R1479 Rename use of U requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable class Product4 { public: - // #TEST#: R1476 Rename use of T - // #TEST#: R1477 Rename parameter lhs - // #TEST#: R1478 Rename use of U - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs + // #TEST#: R1480 Rename use of T + // #TEST#: R1481 Rename parameter lhs + // #TEST#: R1482 Rename use of U + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs return lhs * rhs; } }; -// #TEST#: R1484 Rename template parameter T -// #TEST#: R1485 Rename template parameter U -// #TEST#: R1486 Rename use of T +// #TEST#: R1488 Rename template parameter T +// #TEST#: R1489 Rename template parameter U +// #TEST#: R1490 Rename use of T template -// #TEST#: R1487 Rename first use of T -// #TEST#: R1488 Rename second use of T -// #TEST#: R1489 Rename concept Multiplicable -// #TEST#: R1490 Rename third use of T -// #TEST#: R1491 Rename use of U +// #TEST#: R1491 Rename first use of T +// #TEST#: R1492 Rename second use of T +// #TEST#: R1493 Rename concept Multiplicable +// #TEST#: R1494 Rename third use of T +// #TEST#: R1495 Rename use of U requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable struct ProductStruct4 { - // #TEST#: R1492 Rename use of T - // #TEST#: R1493 Rename parameter lhs - // #TEST#: R1494 Rename use of U - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs + // #TEST#: R1496 Rename use of T + // #TEST#: R1497 Rename parameter lhs + // #TEST#: R1498 Rename use of U + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs return lhs * rhs; } }; -// #TEST#: R1500 Rename template parameter T -// #TEST#: R1501 Rename template parameter U -// #TEST#: R1502 Rename use of T +// #TEST#: R1504 Rename template parameter T +// #TEST#: R1505 Rename template parameter U +// #TEST#: R1506 Rename use of T template -// #TEST#: R1503 Rename first use of T -// #TEST#: R1504 Rename second use of T -// #TEST#: R1505 Rename concept Multiplicable -// #TEST#: R1506 Rename third use of T -// #TEST#: R1507 Rename use of U +// #TEST#: R1507 Rename first use of T +// #TEST#: R1508 Rename second use of T +// #TEST#: R1509 Rename concept Multiplicable +// #TEST#: R1510 Rename third use of T +// #TEST#: R1511 Rename use of U requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable union ProductUnion4 { - // #TEST#: R1508 Rename use of T - // #TEST#: R1509 Rename parameter lhs - // #TEST#: R1510 Rename use of U - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs + // #TEST#: R1512 Rename use of T + // #TEST#: R1513 Rename parameter lhs + // #TEST#: R1514 Rename use of U + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs return lhs * rhs; } }; @@ -1141,40 +1141,40 @@ void f2() { // single constraint on single template parameter { - // #TEST#: R1516 Rename Sqr1 + // #TEST#: R1520 Rename Sqr1 Sqr1 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1517 Rename Sqr1 + // #TEST#: R1521 Rename Sqr1 Sqr1 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1518 Rename Sqr1 + // #TEST#: R1522 Rename Sqr1 Sqr1 s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } { - // #TEST#: R1519 Rename SqrStruct1 + // #TEST#: R1523 Rename SqrStruct1 SqrStruct1 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1520 Rename SqrStruct1 + // #TEST#: R1524 Rename SqrStruct1 SqrStruct1 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1521 Rename SqrStruct1 + // #TEST#: R1525 Rename SqrStruct1 SqrStruct1 s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } { - // #TEST#: R1522 Rename SqrUnion1 + // #TEST#: R1526 Rename SqrUnion1 SqrUnion1 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1523 Rename SqrUnion1 + // #TEST#: R1527 Rename SqrUnion1 SqrUnion1 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1524 Rename SqrUnion1 + // #TEST#: R1528 Rename SqrUnion1 SqrUnion1 s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); @@ -1182,40 +1182,40 @@ void f2() // compound constraint on single template parameter, disjunction { - // #TEST#: R1525 Rename Sqr2 + // #TEST#: R1529 Rename Sqr2 Sqr2 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1526 Rename Sqr2 + // #TEST#: R1530 Rename Sqr2 Sqr2 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1527 Rename Sqr2 + // #TEST#: R1531 Rename Sqr2 Sqr2 s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } { - // #TEST#: R1528 Rename SqrStruct2 + // #TEST#: R1532 Rename SqrStruct2 SqrStruct2 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1529 Rename SqrStruct2 + // #TEST#: R1533 Rename SqrStruct2 SqrStruct2 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1530 Rename SqrStruct2 + // #TEST#: R1534 Rename SqrStruct2 SqrStruct2 s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } { - // #TEST#: R1531 Rename SqrUnion2 + // #TEST#: R1535 Rename SqrUnion2 SqrUnion2 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1532 Rename SqrUnion2 + // #TEST#: R1536 Rename SqrUnion2 SqrUnion2 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1533 Rename SqrUnion2 + // #TEST#: R1537 Rename SqrUnion2 SqrUnion2 s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); @@ -1223,30 +1223,30 @@ void f2() // compound constraint on single template parameter, conjunction { - // #TEST#: R1534 Rename Sqr3 + // #TEST#: R1538 Rename Sqr3 Sqr3 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1535 Rename Sqr3 + // #TEST#: R1539 Rename Sqr3 Sqr3 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } { - // #TEST#: R1536 Rename SqrStruct3 + // #TEST#: R1540 Rename SqrStruct3 SqrStruct3 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1537 Rename SqrStruct3 + // #TEST#: R1541 Rename SqrStruct3 SqrStruct3 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } { - // #TEST#: R1538 Rename SqrUnion3 + // #TEST#: R1542 Rename SqrUnion3 SqrUnion3 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1539 Rename SqrUnion3 + // #TEST#: R1543 Rename SqrUnion3 SqrUnion3 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); @@ -1255,30 +1255,30 @@ void f2() // compound constraint on single template parameter, combination { - // #TEST#: R1540 Rename Sqr4 + // #TEST#: R1544 Rename Sqr4 Sqr4 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1541 Rename Sqr4 + // #TEST#: R1545 Rename Sqr4 Sqr4 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } { - // #TEST#: R1542 Rename SqrStruct4 + // #TEST#: R1546 Rename SqrStruct4 SqrStruct4 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1543 Rename SqrStruct4 + // #TEST#: R1547 Rename SqrStruct4 SqrStruct4 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } { - // #TEST#: R1544 Rename SqrUnion4 + // #TEST#: R1548 Rename SqrUnion4 SqrUnion4 s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1545 Rename SqrUnion4 + // #TEST#: R1549 Rename SqrUnion4 SqrUnion4 s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); @@ -1287,40 +1287,40 @@ void f2() // single constraint on multiple template parameters { - // #TEST#: R1546 Rename Product1 + // #TEST#: R1550 Rename Product1 Product1 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1547 Rename Product1 + // #TEST#: R1551 Rename Product1 Product1 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1548 Rename Product1 + // #TEST#: R1552 Rename Product1 Product1 s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } { - // #TEST#: R1549 Rename ProductStruct1 + // #TEST#: R1553 Rename ProductStruct1 ProductStruct1 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1550 Rename ProductStruct1 + // #TEST#: R1554 Rename ProductStruct1 ProductStruct1 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1551 Rename ProductStruct1 + // #TEST#: R1555 Rename ProductStruct1 ProductStruct1 s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } { - // #TEST#: R1552 Rename ProductUnion1 + // #TEST#: R1556 Rename ProductUnion1 ProductUnion1 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1553 Rename ProductUnion1 + // #TEST#: R1557 Rename ProductUnion1 ProductUnion1 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1554 Rename ProductUnion1 + // #TEST#: R1558 Rename ProductUnion1 ProductUnion1 s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); @@ -1328,40 +1328,40 @@ void f2() // compound constraint on multiple template parameters, disjunction { - // #TEST#: R1555 Rename Product2 + // #TEST#: R1559 Rename Product2 Product2 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1556 Rename Product2 + // #TEST#: R1560 Rename Product2 Product2 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1557 Rename Product2 + // #TEST#: R1561 Rename Product2 Product2 s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } { - // #TEST#: R1558 Rename ProductStruct2 + // #TEST#: R1562 Rename ProductStruct2 ProductStruct2 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1559 Rename ProductStruct2 + // #TEST#: R1563 Rename ProductStruct2 ProductStruct2 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1560 Rename ProductStruct2 + // #TEST#: R1564 Rename ProductStruct2 ProductStruct2 s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } { - // #TEST#: R1561 Rename ProductUnion2 + // #TEST#: R1565 Rename ProductUnion2 ProductUnion2 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1562 Rename ProductUnion2 + // #TEST#: R1566 Rename ProductUnion2 ProductUnion2 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1563 Rename ProductUnion2 + // #TEST#: R1567 Rename ProductUnion2 ProductStruct2 s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); @@ -1369,30 +1369,30 @@ void f2() // compound constraint on multiple template parameters, conjunction { - // #TEST#: R1564 Rename Product3 + // #TEST#: R1568 Rename Product3 Product3 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1565 Rename Product3 + // #TEST#: R1569 Rename Product3 Product3 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } { - // #TEST#: R1566 Rename ProductStruct3 + // #TEST#: R1570 Rename ProductStruct3 ProductStruct3 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1567 Rename ProductStruct3 + // #TEST#: R1571 Rename ProductStruct3 ProductStruct3 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } { - // #TEST#: R1568 Rename ProductUnion3 + // #TEST#: R1572 Rename ProductUnion3 ProductUnion3 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1569 Rename ProductUnion3 + // #TEST#: R1573 Rename ProductUnion3 ProductUnion3 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); @@ -1401,30 +1401,30 @@ void f2() // compound constraint on multiple template parameters, combination { - // #TEST#: R1570 Rename Product4 + // #TEST#: R1574 Rename Product4 Product4 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1571 Rename Product4 + // #TEST#: R1575 Rename Product4 Product4 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } { - // #TEST#: R1572 Rename ProductStruct4 + // #TEST#: R1576 Rename ProductStruct4 ProductStruct4 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1573 Rename ProductStruct4 + // #TEST#: R1577 Rename ProductStruct4 ProductStruct4 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic } { - // #TEST#: R1574 Rename ProductUnion4 + // #TEST#: R1578 Rename ProductUnion4 ProductUnion4 p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1575 Rename ProductUnion4 + // #TEST#: R1579 Rename ProductUnion4 ProductUnion4 p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); diff --git a/RefactorTest/Require.h b/RefactorTest/Require.h index 77486b8..d500938 100644 --- a/RefactorTest/Require.h +++ b/RefactorTest/Require.h @@ -21,6 +21,7 @@ void require_equal(char const *file, unsigned line, T expected, U actual) { std::ostringstream message; message << file << '(' << line << "): error: expected " << expected << ", got " << actual; + message << file << '(' << line << "): error: expected != got\n"; throw std::runtime_error(message.str().c_str()); } } diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..2031b3c --- /dev/null +++ b/build.bat @@ -0,0 +1 @@ +cmake --build --preset default | find /v ": warning :" diff --git a/doit.bat b/doit.bat new file mode 100644 index 0000000..382c8a0 --- /dev/null +++ b/doit.bat @@ -0,0 +1,2 @@ +cmake --build --preset default +ctest --preset default -L delete-tests diff --git a/results/CLionResults.md b/results/CLionResults.md index 742f44c..23b0dca 100644 --- a/results/CLionResults.md +++ b/results/CLionResults.md @@ -2157,6 +2157,10 @@ R1572 | R1573 | R1574 | R1575 | +R1576 | +R1577 | +R1578 | +R1579 | ## Reorder Parameters Case| Result diff --git a/results/ReSharperCppResults.md b/results/ReSharperCppResults.md index db6e54b..3212ef6 100644 --- a/results/ReSharperCppResults.md +++ b/results/ReSharperCppResults.md @@ -1527,10 +1527,10 @@ R983 | Pass R984 | Pass R985 | Pass R986 | Pass -R987 | Pass -R988 | Pass -R989 | Pass -R990 | Pass +R987 | +R988 | +R989 | +R990 | R991 | Pass R992 | Pass R993 | Pass @@ -2116,6 +2116,10 @@ R1572 | Pass R1573 | Pass R1574 | Pass R1575 | Pass +R1576 | Pass +R1577 | Pass +R1578 | Pass +R1579 | Pass ## Reorder Parameters Case | Result diff --git a/results/VisualAssistXResults.md b/results/VisualAssistXResults.md index db2104e..bc62634 100644 --- a/results/VisualAssistXResults.md +++ b/results/VisualAssistXResults.md @@ -1761,3 +1761,7 @@ R1572 | R1573 | R1574 | R1575 | +R1576 | +R1577 | +R1578 | +R1579 | diff --git a/results/VisualStudioResults.md b/results/VisualStudioResults.md index 7411588..f6edaaf 100644 --- a/results/VisualStudioResults.md +++ b/results/VisualStudioResults.md @@ -1370,25 +1370,25 @@ R983 | Pass R984 | Pass R985 | Pass R986 | Pass -R987 | Pass -R988 | Pass -R989 | Pass -R990 | Failure (doesn't select all instances) -R991 | Failure (not available) -R992 | Failure (not available) +R987 | +R988 | +R989 | +R990 | +R991 | Pass +R992 | Pass R993 | Pass -R994 | Pass -R995 | Pass -R996 | Pass -R997 | Failure (doesn't select all instances) +R994 | Failure (doesn't select all instances) +R995 | Failure (not available) +R996 | Failure (not available) +R997 | Pass R998 | Pass -R999 | Failure (doesn't select all instances) -R1000 | Failure (not available) -R1001 | Failure (not available) +R999 | Pass +R1000 | Pass +R1001 | Failure (doesn't select all instances) R1002 | Pass -R1003 | Pass -R1004 | Pass -R1005 | Pass +R1003 | Failure (doesn't select all instances) +R1004 | Failure (not available) +R1005 | Failure (not available) R1006 | Pass R1007 | Pass R1008 | Pass @@ -1473,130 +1473,130 @@ R1086 | Pass R1087 | Pass R1088 | Pass R1089 | Pass -R1090 | Failure (doesn't select all instances) +R1090 | Pass R1091 | Pass -R1092 | Failure (doesn't select all instances) -R1093 | Failure (not available) -R1094 | Failure (not available) -R1095 | Failure (doesn't select all instances) +R1092 | Pass +R1093 | Pass +R1094 | Failure (doesn't select all instances) +R1095 | Pass R1096 | Failure (doesn't select all instances) -R1097 | Pass -R1098 | Pass -R1099 | Pass -R1100 | Pass -R1101 | Pass -R1102 | Failure (doesn't select all instances) +R1097 | Failure (not available) +R1098 | Failure (not available) +R1099 | Failure (doesn't select all instances) +R1100 | Failure (doesn't select all instances) +R1101 | Pass +R1102 | Pass R1103 | Pass -R1104 | Failure (doesn't select all instances) -R1105 | Failure (not available) -R1106 | Failure (not available) +R1104 | Pass +R1105 | Pass +R1106 | Failure (doesn't select all instances) R1107 | Pass -R1108 | Pass -R1109 | Pass -R1110 | Failure (doesn't select all instances) -R1111 | Failure (doesn't select all instances) +R1108 | Failure (doesn't select all instances) +R1109 | Failure (not available) +R1110 | Failure (not available) +R1111 | Pass R1112 | Pass R1113 | Pass -R1114 | Pass -R1115 | Pass +R1114 | Failure (doesn't select all instances) +R1115 | Failure (doesn't select all instances) R1116 | Pass R1117 | Pass R1118 | Pass R1119 | Pass R1120 | Pass -R1121 | Failure (doesn't select all instances) +R1121 | Pass R1122 | Pass -R1123 | Failure (doesn't select all instances) -R1124 | Failure (not available) -R1125 | Failure (not available) -R1126 | Failure (doesn't select all instances) +R1123 | Pass +R1124 | Pass +R1125 | Failure (doesn't select all instances) +R1126 | Pass R1127 | Failure (doesn't select all instances) -R1128 | Pass -R1129 | Pass -R1130 | Pass -R1131 | Pass +R1128 | Failure (not available) +R1129 | Failure (not available) +R1130 | Failure (doesn't select all instances) +R1131 | Failure (doesn't select all instances) R1132 | Pass -R1133 | Failure (doesn't select all instances) +R1133 | Pass R1134 | Pass -R1135 | Failure (doesn't select all instances) -R1136 | Failure (not available) -R1137 | Failure (not available) +R1135 | Pass +R1136 | Pass +R1137 | Failure (doesn't select all instances) R1138 | Pass -R1139 | Pass -R1140 | Pass -R1141 | Pass -R1142 | Failure (doesn't select all instances) -R1143 | Failure (doesn't select all instances) +R1139 | Failure (doesn't select all instances) +R1140 | Failure (not available) +R1141 | Failure (not available) +R1142 | Pass +R1143 | Pass R1144 | Pass R1145 | Pass -R1146 | Pass -R1147 | Pass +R1146 | Failure (doesn't select all instances) +R1147 | Failure (doesn't select all instances) R1148 | Pass R1149 | Pass R1150 | Pass R1151 | Pass R1152 | Pass -R1153 | Failure (doesn't select all instances) +R1153 | Pass R1154 | Pass -R1155 | Failure (doesn't select all instances) -R1156 | Failure (not available) -R1157 | Failure (not available) -R1158 | Failure (doesn't select all instances) +R1155 | Pass +R1156 | Pass +R1157 | Failure (doesn't select all instances) +R1158 | Pass R1159 | Failure (doesn't select all instances) -R1160 | Pass -R1161 | Pass -R1162 | Pass -R1163 | Pass +R1160 | Failure (not available) +R1161 | Failure (not available) +R1162 | Failure (doesn't select all instances) +R1163 | Failure (doesn't select all instances) R1164 | Pass -R1165 | Failure (doesn't select all instances) +R1165 | Pass R1166 | Pass -R1167 | Failure (doesn't select all instances) -R1168 | Failure (not available) -R1169 | Failure (not available) +R1167 | Pass +R1168 | Pass +R1169 | Failure (doesn't select all instances) R1170 | Pass -R1171 | Pass -R1172 | Pass -R1173 | Pass -R1174 | Failure (doesn't select all instances) -R1175 | Failure (doesn't select all instances) +R1171 | Failure (doesn't select all instances) +R1172 | Failure (not available) +R1173 | Failure (not available) +R1174 | Pass +R1175 | Pass R1176 | Pass R1177 | Pass -R1178 | Pass -R1179 | Pass +R1178 | Failure (doesn't select all instances) +R1179 | Failure (doesn't select all instances) R1180 | Pass R1181 | Pass R1182 | Pass R1183 | Pass R1184 | Pass R1185 | Pass -R1186 | Failure (doesn't select all instances) +R1186 | Pass R1187 | Pass -R1188 | Failure (doesn't select all instances) -R1189 | Failure (not available) -R1190 | Failure (not available) -R1191 | Failure (doesn't select all instances) +R1188 | Pass +R1189 | Pass +R1190 | Failure (doesn't select all instances) +R1191 | Pass R1192 | Failure (doesn't select all instances) -R1193 | Pass -R1194 | Pass -R1195 | Pass -R1196 | Pass +R1193 | Failure (not available) +R1194 | Failure (not available) +R1195 | Failure (doesn't select all instances) +R1196 | Failure (doesn't select all instances) R1197 | Pass -R1198 | Failure (doesn't select all instances) +R1198 | Pass R1199 | Pass -R1200 | Failure (doesn't select all instances) -R1201 | Failure (not available) -R1202 | Failure (not available) +R1200 | Pass +R1201 | Pass +R1202 | Failure (doesn't select all instances) R1203 | Pass -R1204 | Pass -R1205 | Pass -R1206 | Pass +R1204 | Failure (doesn't select all instances) +R1205 | Failure (not available) +R1206 | Failure (not available) R1207 | Pass -R1208 | Failure (doesn't select all instances) -R1209 | Failure (doesn't select all instances) +R1208 | Pass +R1209 | Pass R1210 | Pass R1211 | Pass -R1212 | Pass -R1213 | Pass +R1212 | Failure (doesn't select all instances) +R1213 | Failure (doesn't select all instances) R1214 | Pass R1215 | Pass R1216 | Pass @@ -1726,90 +1726,90 @@ R1339 | Pass R1340 | Pass R1341 | Pass R1342 | Pass -R1343 | Failure (doesn't select all instances) +R1343 | Pass R1344 | Pass -R1345 | Failure (doesn't select all instances) -R1346 | Failure (not available) -R1347 | Failure (not available) -R1348 | Failure (doesn't select all instances) +R1345 | Pass +R1346 | Pass +R1347 | Failure (doesn't select all instances) +R1348 | Pass R1349 | Failure (doesn't select all instances) -R1350 | Pass -R1351 | Pass -R1352 | Pass -R1353 | Pass +R1350 | Failure (not available) +R1351 | Failure (not available) +R1352 | Failure (doesn't select all instances) +R1353 | Failure (doesn't select all instances) R1354 | Pass R1355 | Pass R1356 | Pass -R1357 | Failure (doesn't select all instances) +R1357 | Pass R1358 | Pass -R1359 | Failure (doesn't select all instances) -R1360 | Failure (not available) -R1361 | Failure (not available) -R1362 | Failure (doesn't select all instances) +R1359 | Pass +R1360 | Pass +R1361 | Failure (doesn't select all instances) +R1362 | Pass R1363 | Failure (doesn't select all instances) -R1364 | Pass -R1365 | Pass -R1366 | Pass -R1367 | Pass +R1364 | Failure (not available) +R1365 | Failure (not available) +R1366 | Failure (doesn't select all instances) +R1367 | Failure (doesn't select all instances) R1368 | Pass R1369 | Pass R1370 | Pass -R1371 | Failure (doesn't select all instances) +R1371 | Pass R1372 | Pass -R1373 | Failure (doesn't select all instances) -R1374 | Failure (not available) -R1375 | Failure (not available) -R1376 | Failure (doesn't select all instances) +R1373 | Pass +R1374 | Pass +R1375 | Failure (doesn't select all instances) +R1376 | Pass R1377 | Failure (doesn't select all instances) -R1378 | Pass -R1379 | Pass -R1380 | Pass -R1381 | Pass +R1378 | Failure (not available) +R1379 | Failure (not available) +R1380 | Failure (doesn't select all instances) +R1381 | Failure (doesn't select all instances) R1382 | Pass R1383 | Pass R1384 | Pass R1385 | Pass -R1386 | Failure (doesn't select all instances) +R1386 | Pass R1387 | Pass -R1388 | Failure (doesn't select all instances) -R1389 | Failure (not available) -R1390 | Failure (not available) -R1391 | Failure (doesn't select all instances) +R1388 | Pass +R1389 | Pass +R1390 | Failure (doesn't select all instances) +R1391 | Pass R1392 | Failure (doesn't select all instances) -R1393 | Pass -R1394 | Pass -R1395 | Pass -R1396 | Pass +R1393 | Failure (not available) +R1394 | Failure (not available) +R1395 | Failure (doesn't select all instances) +R1396 | Failure (doesn't select all instances) R1397 | Pass R1398 | Pass R1399 | Pass R1400 | Pass -R1401 | Failure (doesn't select all instances) +R1401 | Pass R1402 | Pass -R1403 | Failure (doesn't select all instances) -R1404 | Failure (not available) -R1405 | Failure (not available) -R1406 | Failure (doesn't select all instances) +R1403 | Pass +R1404 | Pass +R1405 | Failure (doesn't select all instances) +R1406 | Pass R1407 | Failure (doesn't select all instances) -R1408 | Pass -R1409 | Pass -R1410 | Pass -R1411 | Pass +R1408 | Failure (not available) +R1409 | Failure (not available) +R1410 | Failure (doesn't select all instances) +R1411 | Failure (doesn't select all instances) R1412 | Pass R1413 | Pass R1414 | Pass R1415 | Pass -R1416 | Failure (doesn't select all instances) -R1417 | -R1418 | Failure (doesn't select all instances) -R1419 | Failure (not available) -R1420 | Failure (not available) -R1421 | Failure (doesn't select all instances) +R1416 | Pass +R1417 | Pass +R1418 | Pass +R1419 | Pass +R1420 | Failure (doesn't select all instances) +R1421 | R1422 | Failure (doesn't select all instances) -R1423 | -R1424 | -R1425 | -R1426 | +R1423 | Failure (not available) +R1424 | Failure (not available) +R1425 | Failure (doesn't select all instances) +R1426 | Failure (doesn't select all instances) R1427 | R1428 | R1429 | @@ -1959,6 +1959,10 @@ R1572 | R1573 | R1574 | R1575 | +R1576 | +R1577 | +R1578 | +R1579 | ## Reorder Parameters Case | Result diff --git a/results/annotated/CLionResults.md b/results/annotated/CLionResults.md index 9d452b0..1649bb7 100644 --- a/results/annotated/CLionResults.md +++ b/results/annotated/CLionResults.md @@ -1568,595 +1568,599 @@ R983 | Pass | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood 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 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) -R1242 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) -R1243 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) -R1244 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) -R1245 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) -R1246 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) -R1247 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) -R1248 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) -R1249 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) -R1250 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) -R1251 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) -R1252 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [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 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) -R1255 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [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 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) -R1258 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [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 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) -R1261 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [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 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) -R1264 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [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 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) -R1267 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [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 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) -R1270 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [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 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) -R1273 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) -R1274 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) -R1275 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) -R1276 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) -R1277 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) -R1278 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) -R1279 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) -R1280 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) -R1281 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) -R1282 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) -R1283 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) -R1284 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) -R1285 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) -R1286 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) -R1287 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) -R1288 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) -R1289 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) -R1290 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) -R1291 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) -R1292 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) -R1293 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) -R1294 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) -R1295 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) -R1296 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) -R1297 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) -R1298 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) -R1299 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) -R1300 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) -R1301 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) -R1302 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) -R1303 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) -R1304 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) -R1305 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) -R1306 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) -R1307 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) -R1308 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) -R1309 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) -R1310 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) -R1311 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) -R1312 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) -R1313 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) -R1314 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) -R1315 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) -R1316 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) -R1317 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) -R1318 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) -R1319 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) -R1320 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) -R1321 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) -R1322 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) -R1323 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) -R1324 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) -R1325 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) -R1326 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) -R1327 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) -R1328 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) -R1329 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) -R1330 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) -R1331 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) -R1332 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) -R1333 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) -R1334 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) -R1335 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) -R1336 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) -R1337 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) -R1338 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) -R1339 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) -R1340 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) -R1341 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) -R1342 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) -R1343 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) -R1344 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) -R1345 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) -R1346 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) -R1347 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) -R1348 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) -R1349 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) -R1350 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) -R1351 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) -R1352 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) -R1353 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) -R1354 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) -R1355 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) -R1356 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) -R1357 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) -R1358 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) -R1359 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) -R1360 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) -R1361 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) -R1362 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) -R1363 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) -R1364 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) -R1365 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) -R1366 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) -R1367 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) -R1368 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) -R1369 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) -R1370 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) -R1371 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) -R1372 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) -R1373 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) -R1374 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) -R1375 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) -R1376 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) -R1377 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) -R1378 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) -R1379 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) -R1380 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) -R1381 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) -R1382 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) -R1383 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) -R1384 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) -R1385 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) -R1386 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) -R1387 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) -R1388 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) -R1389 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) -R1390 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) -R1391 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) -R1392 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) -R1393 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) -R1394 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) -R1395 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) -R1396 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) -R1397 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) -R1398 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) -R1399 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) -R1400 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) -R1401 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) -R1402 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) -R1403 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) -R1404 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) -R1405 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) -R1406 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) -R1407 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) -R1408 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) -R1409 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) -R1410 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) -R1411 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) -R1412 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) -R1413 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) -R1414 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) -R1415 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) -R1416 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) -R1417 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) -R1418 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) -R1419 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) -R1420 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) -R1421 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) -R1422 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) -R1423 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) -R1424 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) -R1425 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) -R1426 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) -R1427 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) -R1428 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) -R1429 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) -R1430 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) -R1431 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) -R1432 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) -R1433 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) -R1434 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) -R1435 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) -R1436 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) -R1437 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) -R1438 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) -R1439 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) -R1440 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) -R1441 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) -R1442 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) -R1443 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) -R1444 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) -R1445 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) -R1446 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) -R1447 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) -R1448 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) -R1449 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) -R1450 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) -R1451 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) -R1452 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) -R1453 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) -R1454 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) -R1455 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) -R1456 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) -R1457 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) -R1458 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) -R1459 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) -R1460 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) -R1461 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) -R1462 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) -R1463 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) -R1464 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) -R1465 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) -R1466 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) -R1467 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) -R1468 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) -R1469 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) -R1470 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) -R1471 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) -R1472 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) -R1473 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) -R1474 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) -R1475 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) -R1476 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) -R1477 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) -R1478 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) -R1479 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) -R1480 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) -R1481 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) -R1482 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) -R1483 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) -R1484 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) -R1485 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) -R1486 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) -R1487 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) -R1488 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) -R1489 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) -R1490 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) -R1491 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) -R1492 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) -R1493 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) -R1494 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) -R1495 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) -R1496 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) -R1497 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) -R1498 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) -R1499 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) -R1500 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) -R1501 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) -R1502 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) -R1503 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) -R1504 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) -R1505 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) -R1506 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) -R1507 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) -R1508 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) -R1509 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) -R1510 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) -R1511 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) -R1512 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) -R1513 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) -R1514 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) -R1515 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) -R1516 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) -R1517 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) -R1518 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) -R1519 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) -R1520 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) -R1521 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) -R1522 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) -R1523 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) -R1524 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) -R1525 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) -R1526 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) -R1527 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) -R1528 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) -R1529 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) -R1530 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) -R1531 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) -R1532 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) -R1533 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) -R1534 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) -R1535 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) -R1536 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) -R1537 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) -R1538 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) -R1539 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) -R1540 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) -R1541 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) -R1542 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) -R1543 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) -R1544 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) -R1545 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) -R1546 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) -R1547 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) -R1548 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) -R1549 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) -R1550 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) -R1551 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) -R1552 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) -R1553 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) -R1554 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) -R1555 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) -R1556 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) -R1557 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) -R1558 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) -R1559 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) -R1560 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) -R1561 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) -R1562 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) -R1563 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) -R1564 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) -R1565 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) -R1566 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) -R1567 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) -R1568 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) -R1569 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) -R1570 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) -R1571 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) -R1572 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) -R1573 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) -R1574 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) -R1575 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) +R987 | +R988 | +R989 | +R990 | +R991 | | [`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) +R992 | | [`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) +R993 | | [`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) +R994 | | [`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) +R995 | | [`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) +R996 | | [`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) +R997 | | [`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) +R998 | | [`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) +R999 | | [`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) +R1000 | | [`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) +R1001 | | [`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) +R1002 | | [`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) +R1003 | | [`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) +R1004 | | [`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) +R1005 | | [`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) +R1006 | | [`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) +R1007 | | [`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) +R1008 | | [`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) +R1009 | | [`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) +R1010 | | [`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) +R1011 | | [`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) +R1012 | | [`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) +R1013 | | [`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) +R1014 | | [`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) +R1015 | | [`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) +R1016 | | [`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) +R1017 | | [`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) +R1018 | | [`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) +R1019 | | [`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) +R1020 | | [`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) +R1021 | | [`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) +R1022 | | [`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) +R1023 | | [`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) +R1024 | | [`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) +R1025 | | [`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) +R1026 | | [`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) +R1027 | | [`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) +R1028 | | [`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) +R1029 | | [`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) +R1030 | | [`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) +R1031 | | [`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) +R1032 | | [`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) +R1033 | | [`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) +R1034 | | [`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) +R1035 | | [`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) +R1036 | | [`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) +R1037 | | [`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) +R1038 | | [`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) +R1039 | | [`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) +R1040 | | [`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) +R1041 | | [`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) +R1042 | | [`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) +R1043 | | [`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) +R1044 | | [`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) +R1045 | | [`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) +R1046 | | [`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) +R1047 | | [`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) +R1048 | | [`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) +R1049 | | [`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) +R1050 | | [`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) +R1051 | | [`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) +R1052 | | [`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) +R1053 | | [`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) +R1054 | | [`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) +R1055 | | [`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) +R1056 | | [`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) +R1057 | | [`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) +R1058 | | [`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) +R1059 | | [`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) +R1060 | | [`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) +R1061 | | [`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) +R1062 | | [`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) +R1063 | | [`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) +R1064 | | [`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) +R1065 | | [`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) +R1066 | | [`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) +R1067 | | [`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) +R1068 | | [`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) +R1069 | | [`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) +R1070 | | [`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) +R1071 | | [`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) +R1072 | | [`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) +R1073 | | [`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) +R1074 | | [`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) +R1075 | | [`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) +R1076 | | [`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) +R1077 | | [`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) +R1078 | | [`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) +R1079 | | [`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) +R1080 | | [`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) +R1081 | | [`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) +R1082 | | [`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) +R1083 | | [`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) +R1084 | | [`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) +R1085 | | [`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) +R1086 | | [`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) +R1087 | | [`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) +R1088 | | [`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) +R1089 | | [`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) +R1090 | | [`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) +R1091 | | [`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) +R1092 | | [`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) +R1093 | | [`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) +R1094 | | [`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) +R1095 | | [`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) +R1096 | | [`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) +R1097 | | [`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) +R1098 | | [`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) +R1099 | | [`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) +R1100 | | [`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) +R1101 | | [`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) +R1102 | | [`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) +R1103 | | [`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) +R1104 | | [`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) +R1105 | | [`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) +R1106 | | [`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) +R1107 | | [`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) +R1108 | | [`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) +R1109 | | [`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) +R1110 | | [`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) +R1111 | | [`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) +R1112 | | [`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) +R1113 | | [`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) +R1114 | | [`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) +R1115 | | [`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) +R1116 | | [`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) +R1117 | | [`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) +R1118 | | [`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) +R1119 | | [`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) +R1120 | | [`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) +R1121 | | [`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) +R1122 | | [`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) +R1123 | | [`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) +R1124 | | [`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) +R1125 | | [`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) +R1126 | | [`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) +R1127 | | [`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) +R1128 | | [`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) +R1129 | | [`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) +R1130 | | [`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) +R1131 | | [`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) +R1132 | | [`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) +R1133 | | [`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) +R1134 | | [`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) +R1135 | | [`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) +R1136 | | [`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) +R1137 | | [`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) +R1138 | | [`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) +R1139 | | [`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) +R1140 | | [`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) +R1141 | | [`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) +R1142 | | [`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) +R1143 | | [`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) +R1144 | | [`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) +R1145 | | [`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) +R1146 | | [`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) +R1147 | | [`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) +R1148 | | [`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) +R1149 | | [`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) +R1150 | | [`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) +R1151 | | [`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) +R1152 | | [`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) +R1153 | | [`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) +R1154 | | [`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) +R1155 | | [`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) +R1156 | | [`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) +R1157 | | [`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) +R1158 | | [`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) +R1159 | | [`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) +R1160 | | [`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) +R1161 | | [`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) +R1162 | | [`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) +R1163 | | [`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) +R1164 | | [`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) +R1165 | | [`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) +R1166 | | [`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) +R1167 | | [`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) +R1168 | | [`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) +R1169 | | [`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) +R1170 | | [`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) +R1171 | | [`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) +R1172 | | [`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) +R1173 | | [`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) +R1174 | | [`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) +R1175 | | [`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) +R1176 | | [`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) +R1177 | | [`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) +R1178 | | [`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) +R1179 | | [`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) +R1180 | | [`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) +R1181 | | [`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) +R1182 | | [`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) +R1183 | | [`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) +R1184 | | [`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) +R1185 | | [`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) +R1186 | | [`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) +R1187 | | [`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) +R1188 | | [`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) +R1189 | | [`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) +R1190 | | [`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) +R1191 | | [`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) +R1192 | | [`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) +R1193 | | [`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) +R1194 | | [`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) +R1195 | | [`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) +R1196 | | [`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) +R1197 | | [`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) +R1198 | | [`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) +R1199 | | [`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) +R1200 | | [`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) +R1201 | | [`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) +R1202 | | [`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) +R1203 | | [`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) +R1204 | | [`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) +R1205 | | [`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) +R1206 | | [`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) +R1207 | | [`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) +R1208 | | [`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) +R1209 | | [`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) +R1210 | | [`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) +R1211 | | [`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) +R1212 | | [`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) +R1213 | | [`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) +R1214 | | [`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) +R1215 | | [`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) +R1216 | | [`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) +R1217 | | [`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) +R1218 | | [`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) +R1219 | | [`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) +R1220 | | [`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) +R1221 | | [`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) +R1222 | | [`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) +R1223 | | [`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) +R1224 | | [`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) +R1225 | | [`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) +R1226 | | [`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) +R1227 | | [`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) +R1228 | | [`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) +R1229 | | [`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) +R1230 | | [`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) +R1231 | | [`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) +R1232 | | [`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) +R1233 | | [`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) +R1234 | | [`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) +R1235 | | [`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) +R1236 | | [`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) +R1237 | | [`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) +R1238 | | [`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) +R1239 | | [`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) +R1240 | | [`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) +R1241 | | [`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) +R1242 | | [`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) +R1243 | | [`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) +R1244 | | [`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) +R1245 | | [`RenameCpp20Constraints.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1257 | | [`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) +R1258 | | [`RenameCpp20Constraints.cpp`, line 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1260 | | [`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) +R1261 | | [`RenameCpp20Constraints.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1263 | | [`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) +R1264 | | [`RenameCpp20Constraints.cpp`, line 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1266 | | [`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) +R1267 | | [`RenameCpp20Constraints.cpp`, line 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1269 | | [`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) +R1270 | | [`RenameCpp20Constraints.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1272 | | [`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) +R1273 | | [`RenameCpp20Constraints.cpp`, line 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1275 | | [`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) +R1276 | | [`RenameCpp20Constraints.cpp`, line 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1521 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1522 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1523 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1524 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) +R1525 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) +R1526 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) +R1527 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) +R1528 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) +R1529 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) +R1530 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) +R1531 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) +R1532 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) +R1533 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) +R1534 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) +R1535 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) +R1536 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) +R1537 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) +R1538 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) +R1539 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) +R1540 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) +R1541 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) +R1542 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) +R1543 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) +R1544 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) +R1545 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) +R1546 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) +R1547 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) +R1548 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) +R1549 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) +R1550 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) +R1551 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) +R1552 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) +R1553 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) +R1554 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) +R1555 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) +R1556 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) +R1557 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) +R1558 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) +R1559 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) +R1560 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) +R1561 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) +R1562 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) +R1563 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) +R1564 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) +R1565 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) +R1566 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) +R1567 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) +R1568 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) +R1569 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) +R1570 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) +R1571 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) +R1572 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) +R1573 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) +R1574 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) +R1575 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) +R1576 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) +R1577 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) +R1578 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) +R1579 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) ## Reorder Parameters Case| Result | Location | Expected Diff diff --git a/results/annotated/ReSharperCppResults.md b/results/annotated/ReSharperCppResults.md index 6fdbb27..9311a53 100644 --- a/results/annotated/ReSharperCppResults.md +++ b/results/annotated/ReSharperCppResults.md @@ -1527,595 +1527,599 @@ R983 | Pass | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood 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 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) -R1242 | Pass | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) -R1243 | Pass | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) -R1244 | Pass | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) -R1245 | Pass | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) -R1246 | Pass | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) -R1247 | Pass | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) -R1248 | Pass | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) -R1249 | Pass | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) -R1250 | Pass | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) -R1251 | Pass | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) -R1252 | Pass | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [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 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) -R1255 | Pass | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [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 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) -R1258 | Pass | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [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 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) -R1261 | Pass | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [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 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) -R1264 | Pass | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [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 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) -R1267 | Pass | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [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 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) -R1270 | Pass | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [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 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) -R1273 | Pass | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) -R1274 | Pass | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) -R1275 | Pass | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) -R1276 | Pass | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) -R1277 | Pass | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) -R1278 | Pass | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) -R1279 | Pass | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) -R1280 | Pass | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) -R1281 | Pass | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) -R1282 | Pass | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) -R1283 | Pass | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) -R1284 | Pass | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) -R1285 | Pass | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) -R1286 | Pass | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) -R1287 | Pass | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) -R1288 | Pass | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) -R1289 | Pass | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) -R1290 | Pass | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) -R1291 | Pass | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) -R1292 | Pass | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) -R1293 | Pass | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) -R1294 | Pass | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) -R1295 | Pass | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) -R1296 | Pass | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) -R1297 | Pass | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) -R1298 | Pass | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) -R1299 | Pass | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) -R1300 | Pass | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) -R1301 | Pass | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) -R1302 | Pass | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) -R1303 | Pass | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) -R1304 | Pass | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) -R1305 | Pass | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) -R1306 | Pass | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) -R1307 | Pass | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) -R1308 | Pass | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) -R1309 | Pass | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) -R1310 | Pass | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) -R1311 | Pass | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) -R1312 | Pass | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) -R1313 | Pass | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) -R1314 | Pass | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) -R1315 | Pass | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) -R1316 | Pass | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) -R1317 | Pass | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) -R1318 | Pass | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) -R1319 | Pass | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) -R1320 | Pass | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) -R1321 | Pass | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) -R1322 | Pass | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) -R1323 | Pass | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) -R1324 | Pass | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) -R1325 | Pass | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) -R1326 | Pass | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) -R1327 | Pass | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) -R1328 | Pass | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) -R1329 | Pass | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) -R1330 | Pass | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) -R1331 | Pass | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) -R1332 | Pass | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) -R1333 | Pass | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) -R1334 | Pass | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) -R1335 | Pass | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) -R1336 | Pass | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) -R1337 | Pass | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) -R1338 | Pass | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) -R1339 | Pass | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) -R1340 | Pass | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) -R1341 | Pass | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) -R1342 | Pass | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) -R1343 | Pass | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) -R1344 | Pass | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) -R1345 | Pass | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) -R1346 | Pass | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) -R1347 | Pass | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) -R1348 | Pass | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) -R1349 | Pass | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) -R1350 | Pass | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) -R1351 | Pass | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) -R1352 | Pass | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) -R1353 | Pass | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) -R1354 | Pass | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) -R1355 | Pass | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) -R1356 | Pass | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) -R1357 | Pass | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) -R1358 | Pass | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) -R1359 | Pass | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) -R1360 | Pass | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) -R1361 | Pass | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) -R1362 | Pass | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) -R1363 | Pass | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) -R1364 | Pass | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) -R1365 | Pass | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) -R1366 | Pass | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) -R1367 | Pass | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) -R1368 | Pass | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) -R1369 | Pass | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) -R1370 | Pass | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) -R1371 | Pass | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) -R1372 | Pass | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) -R1373 | Pass | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) -R1374 | Pass | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) -R1375 | Pass | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) -R1376 | Pass | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) -R1377 | Pass | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) -R1378 | Pass | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) -R1379 | Pass | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) -R1380 | Pass | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) -R1381 | Pass | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) -R1382 | Pass | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) -R1383 | Pass | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) -R1384 | Pass | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) -R1385 | Pass | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) -R1386 | Pass | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) -R1387 | Pass | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) -R1388 | Pass | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) -R1389 | Pass | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) -R1390 | Pass | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) -R1391 | Pass | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) -R1392 | Pass | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) -R1393 | Pass | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) -R1394 | Pass | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) -R1395 | Pass | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) -R1396 | Pass | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) -R1397 | Pass | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) -R1398 | Pass | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) -R1399 | Pass | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) -R1400 | Pass | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) -R1401 | Pass | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) -R1402 | Pass | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) -R1403 | Pass | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) -R1404 | Pass | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) -R1405 | Pass | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) -R1406 | Pass | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) -R1407 | Pass | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) -R1408 | Pass | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) -R1409 | Pass | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) -R1410 | Pass | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) -R1411 | Pass | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) -R1412 | Pass | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) -R1413 | Pass | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) -R1414 | Pass | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) -R1415 | Pass | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) -R1416 | Pass | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) -R1417 | Pass | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) -R1418 | Pass | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) -R1419 | Pass | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) -R1420 | Pass | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) -R1421 | Pass | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) -R1422 | Pass | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) -R1423 | Pass | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) -R1424 | Pass | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) -R1425 | Pass | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) -R1426 | Pass | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) -R1427 | Pass | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) -R1428 | Pass | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) -R1429 | Pass | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) -R1430 | Pass | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) -R1431 | Pass | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) -R1432 | Pass | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) -R1433 | Pass | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) -R1434 | Pass | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) -R1435 | Pass | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) -R1436 | Pass | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) -R1437 | Pass | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) -R1438 | Pass | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) -R1439 | Pass | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) -R1440 | Pass | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) -R1441 | Pass | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) -R1442 | Pass | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) -R1443 | Pass | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) -R1444 | Pass | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) -R1445 | Pass | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) -R1446 | Pass | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) -R1447 | Pass | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) -R1448 | Pass | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) -R1449 | Pass | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) -R1450 | Pass | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) -R1451 | Pass | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) -R1452 | Pass | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) -R1453 | Pass | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) -R1454 | Pass | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) -R1455 | Pass | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) -R1456 | Pass | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) -R1457 | Pass | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) -R1458 | Pass | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) -R1459 | Pass | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) -R1460 | Pass | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) -R1461 | Pass | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) -R1462 | Pass | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) -R1463 | Pass | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) -R1464 | Pass | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) -R1465 | Pass | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) -R1466 | Pass | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) -R1467 | Pass | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) -R1468 | Pass | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) -R1469 | Pass | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) -R1470 | Pass | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) -R1471 | Pass | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) -R1472 | Pass | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) -R1473 | Pass | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) -R1474 | Pass | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) -R1475 | Pass | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) -R1476 | Pass | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) -R1477 | Pass | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) -R1478 | Pass | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) -R1479 | Pass | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) -R1480 | Pass | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) -R1481 | Pass | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) -R1482 | Pass | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) -R1483 | Pass | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) -R1484 | Pass | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) -R1485 | Pass | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) -R1486 | Pass | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) -R1487 | Pass | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) -R1488 | Pass | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) -R1489 | Pass | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) -R1490 | Pass | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) -R1491 | Pass | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) -R1492 | Pass | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) -R1493 | Pass | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) -R1494 | Pass | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) -R1495 | Pass | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) -R1496 | Pass | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) -R1497 | Pass | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) -R1498 | Pass | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) -R1499 | Pass | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) -R1500 | Pass | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) -R1501 | Pass | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) -R1502 | Pass | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) -R1503 | Pass | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) -R1504 | Pass | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) -R1505 | Pass | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) -R1506 | Pass | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) -R1507 | Pass | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) -R1508 | Pass | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) -R1509 | Pass | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) -R1510 | Pass | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) -R1511 | Pass | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) -R1512 | Pass | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) -R1513 | Pass | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) -R1514 | Pass | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) -R1515 | Pass | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) -R1516 | Pass | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) -R1517 | Pass | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) -R1518 | Pass | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) -R1519 | Pass | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) -R1520 | Pass | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) -R1521 | Pass | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) -R1522 | Pass | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) -R1523 | Pass | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) -R1524 | Pass | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) -R1525 | Pass | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) -R1526 | Pass | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) -R1527 | Pass | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) -R1528 | Pass | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) -R1529 | Pass | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) -R1530 | Pass | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) -R1531 | Pass | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) -R1532 | Pass | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) -R1533 | Pass | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) -R1534 | Pass | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) -R1535 | Pass | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) -R1536 | Pass | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) -R1537 | Pass | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) -R1538 | Pass | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) -R1539 | Pass | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) -R1540 | Pass | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) -R1541 | Pass | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) -R1542 | Pass | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) -R1543 | Pass | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) -R1544 | Pass | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) -R1545 | Pass | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) -R1546 | Pass | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) -R1547 | Pass | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) -R1548 | Pass | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) -R1549 | Pass | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) -R1550 | Pass | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) -R1551 | Pass | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) -R1552 | Pass | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) -R1553 | Pass | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) -R1554 | Pass | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) -R1555 | Pass | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) -R1556 | Pass | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) -R1557 | Pass | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) -R1558 | Pass | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) -R1559 | Pass | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) -R1560 | Pass | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) -R1561 | Pass | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) -R1562 | Pass | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) -R1563 | Pass | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) -R1564 | Pass | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) -R1565 | Pass | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) -R1566 | Pass | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) -R1567 | Pass | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) -R1568 | Pass | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) -R1569 | Pass | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) -R1570 | Pass | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) -R1571 | Pass | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) -R1572 | Pass | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) -R1573 | Pass | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) -R1574 | Pass | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) -R1575 | Pass | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) +R987 | +R988 | +R989 | +R990 | +R991 | 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) +R992 | 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) +R993 | 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) +R994 | 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) +R995 | 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) +R996 | 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) +R997 | 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) +R998 | 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) +R999 | 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) +R1000 | 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) +R1001 | 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) +R1002 | 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) +R1003 | 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) +R1004 | 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) +R1005 | 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) +R1006 | 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) +R1007 | 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) +R1008 | 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) +R1009 | 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) +R1010 | 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) +R1011 | 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) +R1012 | 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) +R1013 | 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) +R1014 | 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) +R1015 | 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) +R1016 | 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) +R1017 | 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) +R1018 | 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) +R1019 | 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) +R1020 | 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) +R1021 | 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) +R1022 | 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) +R1023 | 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) +R1024 | 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) +R1025 | 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) +R1026 | 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) +R1027 | 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) +R1028 | 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) +R1029 | 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) +R1030 | 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) +R1031 | 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) +R1032 | 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) +R1033 | 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) +R1034 | 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) +R1035 | 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) +R1036 | 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) +R1037 | 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) +R1038 | 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) +R1039 | 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) +R1040 | 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) +R1041 | 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) +R1042 | 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) +R1043 | 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) +R1044 | 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) +R1045 | 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) +R1046 | 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) +R1047 | 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) +R1048 | 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) +R1049 | 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) +R1050 | 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) +R1051 | 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) +R1052 | 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) +R1053 | 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) +R1054 | 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) +R1055 | 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) +R1056 | 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) +R1057 | 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) +R1058 | 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) +R1059 | 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) +R1060 | 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) +R1061 | 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) +R1062 | 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) +R1063 | 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) +R1064 | 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) +R1065 | 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) +R1066 | 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) +R1067 | 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) +R1068 | 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) +R1069 | 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) +R1070 | 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) +R1071 | 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) +R1072 | 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) +R1073 | 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) +R1074 | 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) +R1075 | 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) +R1076 | 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) +R1077 | 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) +R1078 | 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) +R1079 | 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) +R1080 | 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) +R1081 | 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) +R1082 | 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) +R1083 | 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) +R1084 | 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) +R1085 | 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) +R1086 | 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) +R1087 | 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) +R1088 | 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) +R1089 | 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) +R1090 | 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) +R1091 | 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) +R1092 | 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) +R1093 | 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) +R1094 | 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) +R1095 | 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) +R1096 | 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) +R1097 | 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) +R1098 | 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) +R1099 | 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) +R1100 | 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) +R1101 | 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) +R1102 | 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) +R1103 | 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) +R1104 | 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) +R1105 | 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) +R1106 | 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) +R1107 | 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) +R1108 | 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) +R1109 | 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) +R1110 | 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) +R1111 | 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) +R1112 | 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) +R1113 | 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) +R1114 | 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) +R1115 | 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) +R1116 | 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) +R1117 | 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) +R1118 | 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) +R1119 | 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) +R1120 | 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) +R1121 | 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) +R1122 | 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) +R1123 | 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) +R1124 | 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) +R1125 | 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) +R1126 | 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) +R1127 | 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) +R1128 | 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) +R1129 | 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) +R1130 | 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) +R1131 | 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) +R1132 | 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) +R1133 | 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) +R1134 | 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) +R1135 | 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) +R1136 | 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) +R1137 | 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) +R1138 | 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) +R1139 | 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) +R1140 | 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) +R1141 | 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) +R1142 | 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) +R1143 | 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) +R1144 | 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) +R1145 | 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) +R1146 | 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) +R1147 | 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) +R1148 | 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) +R1149 | 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) +R1150 | 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) +R1151 | 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) +R1152 | 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) +R1153 | 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) +R1154 | 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) +R1155 | 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) +R1156 | 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) +R1157 | 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) +R1158 | 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) +R1159 | 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) +R1160 | 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) +R1161 | 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) +R1162 | 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) +R1163 | 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) +R1164 | 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) +R1165 | 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) +R1166 | 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) +R1167 | 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) +R1168 | 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) +R1169 | 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) +R1170 | 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) +R1171 | 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) +R1172 | 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) +R1173 | 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) +R1174 | 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) +R1175 | 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) +R1176 | 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) +R1177 | 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) +R1178 | 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) +R1179 | 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) +R1180 | 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) +R1181 | 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) +R1182 | 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) +R1183 | 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) +R1184 | 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) +R1185 | 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) +R1186 | 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) +R1187 | 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) +R1188 | 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) +R1189 | 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) +R1190 | 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) +R1191 | 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) +R1192 | 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) +R1193 | 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) +R1194 | 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) +R1195 | 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) +R1196 | 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) +R1197 | 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) +R1198 | 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) +R1199 | 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) +R1200 | 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) +R1201 | 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) +R1202 | 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) +R1203 | 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) +R1204 | 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) +R1205 | 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) +R1206 | 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) +R1207 | 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) +R1208 | 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) +R1209 | 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) +R1210 | 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) +R1211 | 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) +R1212 | 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) +R1213 | 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) +R1214 | 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) +R1215 | 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) +R1216 | 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) +R1217 | 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) +R1218 | 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) +R1219 | 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) +R1220 | 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) +R1221 | 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) +R1222 | 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) +R1223 | 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) +R1224 | 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) +R1225 | 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) +R1226 | 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) +R1227 | 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) +R1228 | 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) +R1229 | 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) +R1230 | 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) +R1231 | 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) +R1232 | 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) +R1233 | 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) +R1234 | 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) +R1235 | 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) +R1236 | 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) +R1237 | 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) +R1238 | 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) +R1239 | 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) +R1240 | 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) +R1241 | 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) +R1242 | 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) +R1243 | 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) +R1244 | 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) +R1245 | Pass | [`RenameCpp20Constraints.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1246 | Pass | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1247 | Pass | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1248 | Pass | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1249 | Pass | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1250 | Pass | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1251 | Pass | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1252 | Pass | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1253 | Pass | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1254 | Pass | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1255 | Pass | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1256 | Pass | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1257 | 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) +R1258 | Pass | [`RenameCpp20Constraints.cpp`, line 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1259 | Pass | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1260 | 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) +R1261 | Pass | [`RenameCpp20Constraints.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1262 | Pass | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1263 | 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) +R1264 | Pass | [`RenameCpp20Constraints.cpp`, line 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1265 | Pass | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1266 | 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) +R1267 | Pass | [`RenameCpp20Constraints.cpp`, line 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1268 | Pass | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1269 | 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) +R1270 | Pass | [`RenameCpp20Constraints.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1271 | Pass | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1272 | 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) +R1273 | Pass | [`RenameCpp20Constraints.cpp`, line 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1274 | Pass | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1275 | 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) +R1276 | Pass | [`RenameCpp20Constraints.cpp`, line 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1277 | Pass | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1278 | Pass | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1279 | Pass | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1280 | Pass | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1281 | Pass | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1282 | Pass | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1283 | Pass | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1284 | Pass | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1285 | Pass | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1286 | Pass | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1287 | Pass | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1288 | Pass | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1289 | Pass | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1290 | Pass | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1291 | Pass | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1292 | Pass | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1293 | Pass | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1294 | Pass | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1295 | Pass | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1296 | Pass | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1297 | Pass | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1298 | Pass | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1299 | Pass | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1300 | Pass | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1301 | Pass | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1302 | Pass | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1303 | Pass | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1304 | Pass | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1305 | Pass | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1306 | Pass | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1307 | Pass | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1308 | Pass | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1309 | Pass | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1310 | Pass | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1311 | Pass | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1312 | Pass | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1313 | Pass | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1314 | Pass | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1315 | Pass | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1316 | Pass | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1317 | Pass | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1318 | Pass | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1319 | Pass | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1320 | Pass | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1321 | Pass | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1322 | Pass | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1323 | Pass | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1324 | Pass | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1325 | Pass | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1326 | Pass | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1327 | Pass | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1328 | Pass | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1329 | Pass | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1330 | Pass | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1331 | Pass | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1332 | Pass | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1333 | Pass | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1334 | Pass | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1335 | Pass | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1336 | Pass | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1337 | Pass | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1338 | Pass | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1339 | Pass | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1340 | Pass | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1341 | Pass | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1342 | Pass | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1343 | Pass | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1344 | Pass | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1345 | Pass | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1346 | Pass | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1347 | Pass | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1348 | Pass | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1349 | Pass | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1350 | Pass | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1351 | Pass | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1352 | Pass | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1353 | Pass | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1354 | Pass | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1355 | Pass | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1356 | Pass | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1357 | Pass | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1358 | Pass | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1359 | Pass | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1360 | Pass | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1361 | Pass | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1362 | Pass | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1363 | Pass | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1364 | Pass | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1365 | Pass | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1366 | Pass | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1367 | Pass | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1368 | Pass | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1369 | Pass | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1370 | Pass | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1371 | Pass | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1372 | Pass | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1373 | Pass | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1374 | Pass | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1375 | Pass | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1376 | Pass | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1377 | Pass | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1378 | Pass | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1379 | Pass | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1380 | Pass | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1381 | Pass | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1382 | Pass | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1383 | Pass | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1384 | Pass | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1385 | Pass | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1386 | Pass | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1387 | Pass | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1388 | Pass | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1389 | Pass | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1390 | Pass | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1391 | Pass | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1392 | Pass | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1393 | Pass | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1394 | Pass | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1395 | Pass | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1396 | Pass | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1397 | Pass | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1398 | Pass | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1399 | Pass | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1400 | Pass | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1401 | Pass | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1402 | Pass | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1403 | Pass | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1404 | Pass | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1405 | Pass | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1406 | Pass | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1407 | Pass | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1408 | Pass | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1409 | Pass | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1410 | Pass | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1411 | Pass | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1412 | Pass | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1413 | Pass | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1414 | Pass | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1415 | Pass | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1416 | Pass | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1417 | Pass | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1418 | Pass | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1419 | Pass | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1420 | Pass | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1421 | Pass | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1422 | Pass | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1423 | Pass | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1424 | Pass | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1425 | Pass | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1426 | Pass | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1427 | Pass | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1428 | Pass | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1429 | Pass | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1430 | Pass | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1431 | Pass | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1432 | Pass | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1433 | Pass | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1434 | Pass | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1435 | Pass | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1436 | Pass | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1437 | Pass | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1438 | Pass | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1439 | Pass | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1440 | Pass | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1441 | Pass | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1442 | Pass | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1443 | Pass | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1444 | Pass | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1445 | Pass | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1446 | Pass | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1447 | Pass | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1448 | Pass | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1449 | Pass | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1450 | Pass | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1451 | Pass | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1452 | Pass | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1453 | Pass | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1454 | Pass | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1455 | Pass | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1456 | Pass | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1457 | Pass | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1458 | Pass | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1459 | Pass | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1460 | Pass | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1461 | Pass | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1462 | Pass | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1463 | Pass | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1464 | Pass | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1465 | Pass | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1466 | Pass | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1467 | Pass | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1468 | Pass | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1469 | Pass | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1470 | Pass | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1471 | Pass | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1472 | Pass | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1473 | Pass | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1474 | Pass | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1475 | Pass | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1476 | Pass | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1477 | Pass | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1478 | Pass | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1479 | Pass | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1480 | Pass | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1481 | Pass | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1482 | Pass | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1483 | Pass | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1484 | Pass | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1485 | Pass | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1486 | Pass | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1487 | Pass | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1488 | Pass | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1489 | Pass | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1490 | Pass | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1491 | Pass | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1492 | Pass | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1493 | Pass | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1494 | Pass | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1495 | Pass | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1496 | Pass | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1497 | Pass | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1498 | Pass | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1499 | Pass | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1500 | Pass | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1501 | Pass | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1502 | Pass | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1503 | Pass | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1504 | Pass | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1505 | Pass | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1506 | Pass | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1507 | Pass | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1508 | Pass | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1509 | Pass | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1510 | Pass | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1511 | Pass | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1512 | Pass | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1513 | Pass | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1514 | Pass | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1515 | Pass | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1516 | Pass | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1517 | Pass | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1518 | Pass | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1519 | Pass | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1520 | Pass | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1521 | Pass | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1522 | Pass | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1523 | Pass | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1524 | Pass | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) +R1525 | Pass | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) +R1526 | Pass | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) +R1527 | Pass | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) +R1528 | Pass | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) +R1529 | Pass | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) +R1530 | Pass | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) +R1531 | Pass | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) +R1532 | Pass | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) +R1533 | Pass | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) +R1534 | Pass | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) +R1535 | Pass | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) +R1536 | Pass | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) +R1537 | Pass | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) +R1538 | Pass | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) +R1539 | Pass | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) +R1540 | Pass | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) +R1541 | Pass | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) +R1542 | Pass | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) +R1543 | Pass | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) +R1544 | Pass | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) +R1545 | Pass | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) +R1546 | Pass | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) +R1547 | Pass | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) +R1548 | Pass | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) +R1549 | Pass | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) +R1550 | Pass | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) +R1551 | Pass | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) +R1552 | Pass | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) +R1553 | Pass | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) +R1554 | Pass | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) +R1555 | Pass | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) +R1556 | Pass | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) +R1557 | Pass | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) +R1558 | Pass | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) +R1559 | Pass | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) +R1560 | Pass | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) +R1561 | Pass | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) +R1562 | Pass | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) +R1563 | Pass | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) +R1564 | Pass | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) +R1565 | Pass | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) +R1566 | Pass | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) +R1567 | Pass | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) +R1568 | Pass | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) +R1569 | Pass | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) +R1570 | Pass | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) +R1571 | Pass | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) +R1572 | Pass | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) +R1573 | Pass | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) +R1574 | Pass | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) +R1575 | Pass | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) +R1576 | Pass | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) +R1577 | Pass | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) +R1578 | Pass | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) +R1579 | Pass | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) ## Reorder Parameters Case | Result | Location | Expected Diff diff --git a/results/annotated/VisualAssistXResults.md b/results/annotated/VisualAssistXResults.md index d172216..5718504 100644 --- a/results/annotated/VisualAssistXResults.md +++ b/results/annotated/VisualAssistXResults.md @@ -1172,592 +1172,596 @@ R983 | Pass | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood 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 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) -R1242 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) -R1243 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) -R1244 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) -R1245 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) -R1246 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) -R1247 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) -R1248 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) -R1249 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) -R1250 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) -R1251 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) -R1252 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [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 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) -R1255 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [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 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) -R1258 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [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 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) -R1261 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [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 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) -R1264 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [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 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) -R1267 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [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 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) -R1270 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [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 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) -R1273 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) -R1274 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) -R1275 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) -R1276 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) -R1277 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) -R1278 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) -R1279 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) -R1280 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) -R1281 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) -R1282 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) -R1283 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) -R1284 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) -R1285 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) -R1286 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) -R1287 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) -R1288 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) -R1289 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) -R1290 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) -R1291 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) -R1292 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) -R1293 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) -R1294 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) -R1295 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) -R1296 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) -R1297 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) -R1298 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) -R1299 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) -R1300 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) -R1301 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) -R1302 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) -R1303 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) -R1304 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) -R1305 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) -R1306 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) -R1307 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) -R1308 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) -R1309 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) -R1310 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) -R1311 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) -R1312 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) -R1313 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) -R1314 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) -R1315 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) -R1316 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) -R1317 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) -R1318 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) -R1319 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) -R1320 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) -R1321 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) -R1322 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) -R1323 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) -R1324 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) -R1325 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) -R1326 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) -R1327 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) -R1328 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) -R1329 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) -R1330 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) -R1331 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) -R1332 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) -R1333 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) -R1334 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) -R1335 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) -R1336 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) -R1337 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) -R1338 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) -R1339 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) -R1340 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) -R1341 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) -R1342 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) -R1343 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) -R1344 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) -R1345 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) -R1346 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) -R1347 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) -R1348 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) -R1349 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) -R1350 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) -R1351 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) -R1352 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) -R1353 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) -R1354 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) -R1355 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) -R1356 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) -R1357 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) -R1358 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) -R1359 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) -R1360 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) -R1361 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) -R1362 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) -R1363 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) -R1364 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) -R1365 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) -R1366 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) -R1367 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) -R1368 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) -R1369 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) -R1370 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) -R1371 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) -R1372 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) -R1373 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) -R1374 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) -R1375 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) -R1376 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) -R1377 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) -R1378 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) -R1379 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) -R1380 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) -R1381 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) -R1382 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) -R1383 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) -R1384 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) -R1385 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) -R1386 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) -R1387 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) -R1388 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) -R1389 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) -R1390 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) -R1391 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) -R1392 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) -R1393 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) -R1394 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) -R1395 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) -R1396 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) -R1397 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) -R1398 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) -R1399 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) -R1400 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) -R1401 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) -R1402 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) -R1403 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) -R1404 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) -R1405 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) -R1406 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) -R1407 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) -R1408 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) -R1409 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) -R1410 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) -R1411 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) -R1412 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) -R1413 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) -R1414 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) -R1415 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) -R1416 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) -R1417 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) -R1418 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) -R1419 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) -R1420 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) -R1421 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) -R1422 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) -R1423 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) -R1424 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) -R1425 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) -R1426 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) -R1427 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) -R1428 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) -R1429 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) -R1430 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) -R1431 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) -R1432 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) -R1433 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) -R1434 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) -R1435 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) -R1436 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) -R1437 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) -R1438 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) -R1439 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) -R1440 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) -R1441 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) -R1442 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) -R1443 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) -R1444 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) -R1445 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) -R1446 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) -R1447 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) -R1448 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) -R1449 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) -R1450 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) -R1451 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) -R1452 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) -R1453 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) -R1454 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) -R1455 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) -R1456 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) -R1457 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) -R1458 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) -R1459 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) -R1460 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) -R1461 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) -R1462 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) -R1463 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) -R1464 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) -R1465 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) -R1466 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) -R1467 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) -R1468 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) -R1469 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) -R1470 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) -R1471 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) -R1472 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) -R1473 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) -R1474 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) -R1475 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) -R1476 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) -R1477 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) -R1478 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) -R1479 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) -R1480 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) -R1481 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) -R1482 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) -R1483 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) -R1484 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) -R1485 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) -R1486 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) -R1487 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) -R1488 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) -R1489 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) -R1490 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) -R1491 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) -R1492 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) -R1493 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) -R1494 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) -R1495 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) -R1496 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) -R1497 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) -R1498 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) -R1499 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) -R1500 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) -R1501 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) -R1502 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) -R1503 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) -R1504 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) -R1505 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) -R1506 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) -R1507 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) -R1508 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) -R1509 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) -R1510 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) -R1511 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) -R1512 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) -R1513 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) -R1514 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) -R1515 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) -R1516 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) -R1517 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) -R1518 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) -R1519 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) -R1520 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) -R1521 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) -R1522 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) -R1523 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) -R1524 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) -R1525 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) -R1526 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) -R1527 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) -R1528 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) -R1529 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) -R1530 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) -R1531 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) -R1532 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) -R1533 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) -R1534 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) -R1535 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) -R1536 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) -R1537 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) -R1538 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) -R1539 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) -R1540 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) -R1541 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) -R1542 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) -R1543 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) -R1544 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) -R1545 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) -R1546 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) -R1547 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) -R1548 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) -R1549 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) -R1550 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) -R1551 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) -R1552 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) -R1553 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) -R1554 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) -R1555 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) -R1556 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) -R1557 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) -R1558 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) -R1559 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) -R1560 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) -R1561 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) -R1562 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) -R1563 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) -R1564 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) -R1565 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) -R1566 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) -R1567 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) -R1568 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) -R1569 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) -R1570 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) -R1571 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) -R1572 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) -R1573 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) -R1574 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) -R1575 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) +R987 | +R988 | +R989 | +R990 | +R991 | | [`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) +R992 | | [`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) +R993 | | [`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) +R994 | | [`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) +R995 | | [`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) +R996 | | [`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) +R997 | | [`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) +R998 | | [`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) +R999 | | [`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) +R1000 | | [`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) +R1001 | | [`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) +R1002 | | [`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) +R1003 | | [`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) +R1004 | | [`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) +R1005 | | [`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) +R1006 | | [`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) +R1007 | | [`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) +R1008 | | [`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) +R1009 | | [`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) +R1010 | | [`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) +R1011 | | [`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) +R1012 | | [`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) +R1013 | | [`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) +R1014 | | [`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) +R1015 | | [`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) +R1016 | | [`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) +R1017 | | [`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) +R1018 | | [`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) +R1019 | | [`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) +R1020 | | [`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) +R1021 | | [`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) +R1022 | | [`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) +R1023 | | [`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) +R1024 | | [`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) +R1025 | | [`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) +R1026 | | [`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) +R1027 | | [`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) +R1028 | | [`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) +R1029 | | [`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) +R1030 | | [`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) +R1031 | | [`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) +R1032 | | [`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) +R1033 | | [`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) +R1034 | | [`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) +R1035 | | [`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) +R1036 | | [`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) +R1037 | | [`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) +R1038 | | [`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) +R1039 | | [`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) +R1040 | | [`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) +R1041 | | [`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) +R1042 | | [`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) +R1043 | | [`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) +R1044 | | [`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) +R1045 | | [`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) +R1046 | | [`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) +R1047 | | [`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) +R1048 | | [`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) +R1049 | | [`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) +R1050 | | [`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) +R1051 | | [`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) +R1052 | | [`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) +R1053 | | [`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) +R1054 | | [`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) +R1055 | | [`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) +R1056 | | [`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) +R1057 | | [`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) +R1058 | | [`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) +R1059 | | [`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) +R1060 | | [`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) +R1061 | | [`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) +R1062 | | [`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) +R1063 | | [`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) +R1064 | | [`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) +R1065 | | [`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) +R1066 | | [`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) +R1067 | | [`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) +R1068 | | [`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) +R1069 | | [`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) +R1070 | | [`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) +R1071 | | [`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) +R1072 | | [`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) +R1073 | | [`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) +R1074 | | [`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) +R1075 | | [`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) +R1076 | | [`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) +R1077 | | [`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) +R1078 | | [`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) +R1079 | | [`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) +R1080 | | [`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) +R1081 | | [`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) +R1082 | | [`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) +R1083 | | [`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) +R1084 | | [`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) +R1085 | | [`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) +R1086 | | [`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) +R1087 | | [`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) +R1088 | | [`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) +R1089 | | [`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) +R1090 | | [`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) +R1091 | | [`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) +R1092 | | [`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) +R1093 | | [`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) +R1094 | | [`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) +R1095 | | [`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) +R1096 | | [`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) +R1097 | | [`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) +R1098 | | [`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) +R1099 | | [`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) +R1100 | | [`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) +R1101 | | [`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) +R1102 | | [`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) +R1103 | | [`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) +R1104 | | [`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) +R1105 | | [`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) +R1106 | | [`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) +R1107 | | [`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) +R1108 | | [`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) +R1109 | | [`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) +R1110 | | [`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) +R1111 | | [`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) +R1112 | | [`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) +R1113 | | [`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) +R1114 | | [`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) +R1115 | | [`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) +R1116 | | [`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) +R1117 | | [`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) +R1118 | | [`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) +R1119 | | [`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) +R1120 | | [`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) +R1121 | | [`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) +R1122 | | [`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) +R1123 | | [`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) +R1124 | | [`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) +R1125 | | [`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) +R1126 | | [`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) +R1127 | | [`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) +R1128 | | [`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) +R1129 | | [`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) +R1130 | | [`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) +R1131 | | [`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) +R1132 | | [`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) +R1133 | | [`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) +R1134 | | [`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) +R1135 | | [`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) +R1136 | | [`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) +R1137 | | [`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) +R1138 | | [`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) +R1139 | | [`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) +R1140 | | [`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) +R1141 | | [`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) +R1142 | | [`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) +R1143 | | [`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) +R1144 | | [`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) +R1145 | | [`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) +R1146 | | [`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) +R1147 | | [`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) +R1148 | | [`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) +R1149 | | [`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) +R1150 | | [`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) +R1151 | | [`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) +R1152 | | [`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) +R1153 | | [`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) +R1154 | | [`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) +R1155 | | [`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) +R1156 | | [`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) +R1157 | | [`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) +R1158 | | [`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) +R1159 | | [`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) +R1160 | | [`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) +R1161 | | [`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) +R1162 | | [`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) +R1163 | | [`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) +R1164 | | [`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) +R1165 | | [`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) +R1166 | | [`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) +R1167 | | [`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) +R1168 | | [`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) +R1169 | | [`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) +R1170 | | [`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) +R1171 | | [`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) +R1172 | | [`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) +R1173 | | [`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) +R1174 | | [`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) +R1175 | | [`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) +R1176 | | [`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) +R1177 | | [`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) +R1178 | | [`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) +R1179 | | [`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) +R1180 | | [`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) +R1181 | | [`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) +R1182 | | [`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) +R1183 | | [`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) +R1184 | | [`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) +R1185 | | [`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) +R1186 | | [`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) +R1187 | | [`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) +R1188 | | [`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) +R1189 | | [`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) +R1190 | | [`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) +R1191 | | [`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) +R1192 | | [`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) +R1193 | | [`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) +R1194 | | [`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) +R1195 | | [`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) +R1196 | | [`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) +R1197 | | [`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) +R1198 | | [`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) +R1199 | | [`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) +R1200 | | [`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) +R1201 | | [`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) +R1202 | | [`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) +R1203 | | [`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) +R1204 | | [`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) +R1205 | | [`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) +R1206 | | [`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) +R1207 | | [`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) +R1208 | | [`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) +R1209 | | [`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) +R1210 | | [`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) +R1211 | | [`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) +R1212 | | [`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) +R1213 | | [`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) +R1214 | | [`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) +R1215 | | [`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) +R1216 | | [`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) +R1217 | | [`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) +R1218 | | [`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) +R1219 | | [`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) +R1220 | | [`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) +R1221 | | [`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) +R1222 | | [`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) +R1223 | | [`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) +R1224 | | [`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) +R1225 | | [`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) +R1226 | | [`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) +R1227 | | [`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) +R1228 | | [`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) +R1229 | | [`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) +R1230 | | [`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) +R1231 | | [`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) +R1232 | | [`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) +R1233 | | [`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) +R1234 | | [`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) +R1235 | | [`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) +R1236 | | [`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) +R1237 | | [`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) +R1238 | | [`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) +R1239 | | [`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) +R1240 | | [`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) +R1241 | | [`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) +R1242 | | [`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) +R1243 | | [`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) +R1244 | | [`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) +R1245 | | [`RenameCpp20Constraints.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1257 | | [`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) +R1258 | | [`RenameCpp20Constraints.cpp`, line 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1260 | | [`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) +R1261 | | [`RenameCpp20Constraints.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1263 | | [`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) +R1264 | | [`RenameCpp20Constraints.cpp`, line 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1266 | | [`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) +R1267 | | [`RenameCpp20Constraints.cpp`, line 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1269 | | [`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) +R1270 | | [`RenameCpp20Constraints.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1272 | | [`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) +R1273 | | [`RenameCpp20Constraints.cpp`, line 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1275 | | [`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) +R1276 | | [`RenameCpp20Constraints.cpp`, line 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1521 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1522 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1523 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1524 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) +R1525 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) +R1526 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) +R1527 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) +R1528 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) +R1529 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) +R1530 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) +R1531 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) +R1532 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) +R1533 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) +R1534 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) +R1535 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) +R1536 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) +R1537 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) +R1538 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) +R1539 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) +R1540 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) +R1541 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) +R1542 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) +R1543 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) +R1544 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) +R1545 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) +R1546 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) +R1547 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) +R1548 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) +R1549 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) +R1550 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) +R1551 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) +R1552 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) +R1553 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) +R1554 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) +R1555 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) +R1556 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) +R1557 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) +R1558 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) +R1559 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) +R1560 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) +R1561 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) +R1562 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) +R1563 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) +R1564 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) +R1565 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) +R1566 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) +R1567 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) +R1568 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) +R1569 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) +R1570 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) +R1571 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) +R1572 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) +R1573 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) +R1574 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) +R1575 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) +R1576 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) +R1577 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) +R1578 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) +R1579 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) diff --git a/results/annotated/VisualStudioResults.md b/results/annotated/VisualStudioResults.md index add9514..b2f8baf 100644 --- a/results/annotated/VisualStudioResults.md +++ b/results/annotated/VisualStudioResults.md @@ -1370,595 +1370,599 @@ R983 | Pass | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood 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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (not available) | [`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 | Failure (not available) | [`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 | Failure (doesn't select all instances) | [`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 | Failure (doesn't select all instances) | [`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 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) -R1242 | Pass | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) -R1243 | Pass | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) -R1244 | Pass | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) -R1245 | Pass | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) -R1246 | Pass | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) -R1247 | Pass | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) -R1248 | Pass | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) -R1249 | Pass | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) -R1250 | Pass | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) -R1251 | Pass | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) -R1252 | Pass | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [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 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) -R1255 | Pass | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [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 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) -R1258 | Pass | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [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 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) -R1261 | Pass | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [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 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) -R1264 | Pass | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [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 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) -R1267 | Pass | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [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 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) -R1270 | Pass | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [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 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) -R1273 | Pass | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) -R1274 | Pass | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) -R1275 | Pass | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) -R1276 | Pass | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) -R1277 | Pass | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) -R1278 | Pass | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) -R1279 | Pass | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) -R1280 | Pass | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) -R1281 | Pass | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) -R1282 | Pass | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) -R1283 | Pass | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) -R1284 | Pass | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) -R1285 | Pass | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) -R1286 | Pass | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) -R1287 | Pass | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) -R1288 | Pass | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) -R1289 | Pass | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) -R1290 | Pass | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) -R1291 | Pass | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) -R1292 | Pass | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) -R1293 | Pass | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) -R1294 | Pass | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) -R1295 | Pass | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) -R1296 | Pass | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) -R1297 | Pass | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) -R1298 | Pass | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) -R1299 | Pass | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) -R1300 | Pass | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) -R1301 | Pass | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) -R1302 | Pass | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) -R1303 | Pass | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) -R1304 | Pass | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) -R1305 | Pass | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) -R1306 | Pass | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) -R1307 | Pass | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) -R1308 | Pass | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) -R1309 | Pass | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) -R1310 | Pass | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) -R1311 | Pass | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) -R1312 | Pass | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) -R1313 | Pass | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) -R1314 | Pass | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) -R1315 | Pass | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) -R1316 | Pass | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) -R1317 | Pass | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) -R1318 | Pass | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) -R1319 | Pass | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) -R1320 | Pass | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) -R1321 | Pass | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) -R1322 | Pass | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) -R1323 | Pass | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) -R1324 | Pass | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) -R1325 | Pass | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) -R1326 | Pass | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) -R1327 | Pass | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) -R1328 | Pass | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) -R1329 | Pass | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) -R1330 | Pass | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) -R1331 | Pass | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) -R1332 | Pass | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) -R1333 | Pass | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) -R1334 | Pass | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) -R1335 | Pass | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) -R1336 | Pass | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) -R1337 | Pass | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) -R1338 | Pass | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) -R1339 | Pass | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) -R1340 | Pass | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) -R1341 | Pass | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) -R1342 | Pass | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) -R1343 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) -R1344 | Pass | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) -R1345 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) -R1346 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) -R1347 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) -R1348 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) -R1349 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) -R1350 | Pass | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) -R1351 | Pass | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) -R1352 | Pass | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) -R1353 | Pass | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) -R1354 | Pass | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) -R1355 | Pass | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) -R1356 | Pass | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) -R1357 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) -R1358 | Pass | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) -R1359 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) -R1360 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) -R1361 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) -R1362 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) -R1363 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) -R1364 | Pass | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) -R1365 | Pass | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) -R1366 | Pass | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) -R1367 | Pass | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) -R1368 | Pass | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) -R1369 | Pass | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) -R1370 | Pass | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) -R1371 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) -R1372 | Pass | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) -R1373 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) -R1374 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) -R1375 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) -R1376 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) -R1377 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) -R1378 | Pass | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) -R1379 | Pass | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) -R1380 | Pass | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) -R1381 | Pass | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) -R1382 | Pass | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) -R1383 | Pass | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) -R1384 | Pass | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) -R1385 | Pass | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) -R1386 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) -R1387 | Pass | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) -R1388 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) -R1389 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) -R1390 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) -R1391 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) -R1392 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) -R1393 | Pass | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) -R1394 | Pass | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) -R1395 | Pass | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) -R1396 | Pass | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) -R1397 | Pass | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) -R1398 | Pass | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) -R1399 | Pass | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) -R1400 | Pass | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) -R1401 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) -R1402 | Pass | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) -R1403 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) -R1404 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) -R1405 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) -R1406 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) -R1407 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) -R1408 | Pass | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) -R1409 | Pass | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) -R1410 | Pass | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) -R1411 | Pass | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) -R1412 | Pass | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) -R1413 | Pass | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) -R1414 | Pass | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) -R1415 | Pass | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) -R1416 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) -R1417 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) -R1418 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) -R1419 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) -R1420 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) -R1421 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) -R1422 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) -R1423 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) -R1424 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) -R1425 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) -R1426 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) -R1427 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) -R1428 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) -R1429 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) -R1430 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) -R1431 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) -R1432 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) -R1433 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) -R1434 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) -R1435 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) -R1436 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) -R1437 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) -R1438 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) -R1439 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) -R1440 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) -R1441 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) -R1442 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) -R1443 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) -R1444 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) -R1445 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) -R1446 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) -R1447 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) -R1448 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) -R1449 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) -R1450 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) -R1451 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) -R1452 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) -R1453 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) -R1454 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) -R1455 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) -R1456 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) -R1457 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) -R1458 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) -R1459 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) -R1460 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) -R1461 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) -R1462 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) -R1463 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) -R1464 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) -R1465 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) -R1466 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) -R1467 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) -R1468 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) -R1469 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) -R1470 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) -R1471 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) -R1472 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) -R1473 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) -R1474 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) -R1475 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) -R1476 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) -R1477 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) -R1478 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) -R1479 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) -R1480 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) -R1481 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) -R1482 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) -R1483 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) -R1484 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) -R1485 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) -R1486 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) -R1487 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) -R1488 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) -R1489 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) -R1490 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) -R1491 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) -R1492 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) -R1493 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) -R1494 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) -R1495 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) -R1496 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) -R1497 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) -R1498 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) -R1499 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) -R1500 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) -R1501 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) -R1502 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) -R1503 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) -R1504 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) -R1505 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) -R1506 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) -R1507 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) -R1508 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) -R1509 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) -R1510 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) -R1511 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) -R1512 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) -R1513 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) -R1514 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) -R1515 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) -R1516 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) -R1517 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) -R1518 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) -R1519 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) -R1520 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) -R1521 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) -R1522 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) -R1523 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) -R1524 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) -R1525 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) -R1526 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) -R1527 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) -R1528 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) -R1529 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) -R1530 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) -R1531 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) -R1532 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) -R1533 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) -R1534 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) -R1535 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) -R1536 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) -R1537 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) -R1538 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) -R1539 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) -R1540 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) -R1541 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) -R1542 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) -R1543 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) -R1544 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) -R1545 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) -R1546 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) -R1547 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) -R1548 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) -R1549 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) -R1550 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) -R1551 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) -R1552 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) -R1553 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) -R1554 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) -R1555 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) -R1556 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) -R1557 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) -R1558 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) -R1559 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) -R1560 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) -R1561 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) -R1562 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) -R1563 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) -R1564 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) -R1565 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) -R1566 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) -R1567 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) -R1568 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) -R1569 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) -R1570 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) -R1571 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) -R1572 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) -R1573 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) -R1574 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) -R1575 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) +R987 | +R988 | +R989 | +R990 | +R991 | 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) +R992 | 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) +R993 | 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) +R994 | Failure (doesn't select all instances) | [`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) +R995 | Failure (not available) | [`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) +R996 | Failure (not available) | [`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) +R997 | 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) +R998 | 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) +R999 | 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) +R1000 | 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) +R1001 | Failure (doesn't select all instances) | [`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) +R1002 | 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) +R1003 | Failure (doesn't select all instances) | [`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) +R1004 | Failure (not available) | [`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) +R1005 | Failure (not available) | [`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) +R1006 | 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) +R1007 | 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) +R1008 | 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) +R1009 | 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) +R1010 | 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) +R1011 | 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) +R1012 | 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) +R1013 | 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) +R1014 | 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) +R1015 | 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) +R1016 | 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) +R1017 | 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) +R1018 | 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) +R1019 | 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) +R1020 | 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) +R1021 | 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) +R1022 | 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) +R1023 | 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) +R1024 | 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) +R1025 | 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) +R1026 | 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) +R1027 | 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) +R1028 | 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) +R1029 | 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) +R1030 | 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) +R1031 | 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) +R1032 | 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) +R1033 | 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) +R1034 | 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) +R1035 | 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) +R1036 | 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) +R1037 | 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) +R1038 | 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) +R1039 | 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) +R1040 | 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) +R1041 | 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) +R1042 | 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) +R1043 | 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) +R1044 | 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) +R1045 | 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) +R1046 | 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) +R1047 | 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) +R1048 | 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) +R1049 | 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) +R1050 | 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) +R1051 | 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) +R1052 | 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) +R1053 | 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) +R1054 | 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) +R1055 | 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) +R1056 | 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) +R1057 | 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) +R1058 | 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) +R1059 | 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) +R1060 | 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) +R1061 | 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) +R1062 | 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) +R1063 | 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) +R1064 | 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) +R1065 | 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) +R1066 | 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) +R1067 | 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) +R1068 | 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) +R1069 | 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) +R1070 | 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) +R1071 | 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) +R1072 | 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) +R1073 | 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) +R1074 | 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) +R1075 | 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) +R1076 | 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) +R1077 | 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) +R1078 | 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) +R1079 | 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) +R1080 | 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) +R1081 | 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) +R1082 | 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) +R1083 | 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) +R1084 | 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) +R1085 | 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) +R1086 | 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) +R1087 | 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) +R1088 | 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) +R1089 | 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) +R1090 | 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) +R1091 | 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) +R1092 | 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) +R1093 | 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) +R1094 | Failure (doesn't select all instances) | [`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) +R1095 | 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) +R1096 | Failure (doesn't select all instances) | [`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) +R1097 | Failure (not available) | [`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) +R1098 | Failure (not available) | [`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) +R1099 | Failure (doesn't select all instances) | [`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) +R1100 | Failure (doesn't select all instances) | [`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) +R1101 | 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) +R1102 | 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) +R1103 | 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) +R1104 | 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) +R1105 | 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) +R1106 | Failure (doesn't select all instances) | [`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) +R1107 | 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) +R1108 | Failure (doesn't select all instances) | [`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) +R1109 | Failure (not available) | [`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) +R1110 | Failure (not available) | [`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) +R1111 | 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) +R1112 | 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) +R1113 | 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) +R1114 | Failure (doesn't select all instances) | [`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) +R1115 | Failure (doesn't select all instances) | [`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) +R1116 | 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) +R1117 | 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) +R1118 | 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) +R1119 | 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) +R1120 | 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) +R1121 | 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) +R1122 | 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) +R1123 | 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) +R1124 | 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) +R1125 | Failure (doesn't select all instances) | [`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) +R1126 | 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) +R1127 | Failure (doesn't select all instances) | [`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) +R1128 | Failure (not available) | [`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) +R1129 | Failure (not available) | [`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) +R1130 | Failure (doesn't select all instances) | [`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) +R1131 | Failure (doesn't select all instances) | [`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) +R1132 | 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) +R1133 | 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) +R1134 | 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) +R1135 | 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) +R1136 | 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) +R1137 | Failure (doesn't select all instances) | [`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) +R1138 | 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) +R1139 | Failure (doesn't select all instances) | [`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) +R1140 | Failure (not available) | [`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) +R1141 | Failure (not available) | [`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) +R1142 | 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) +R1143 | 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) +R1144 | 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) +R1145 | 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) +R1146 | Failure (doesn't select all instances) | [`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) +R1147 | Failure (doesn't select all instances) | [`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) +R1148 | 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) +R1149 | 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) +R1150 | 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) +R1151 | 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) +R1152 | 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) +R1153 | 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) +R1154 | 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) +R1155 | 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) +R1156 | 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) +R1157 | Failure (doesn't select all instances) | [`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) +R1158 | 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) +R1159 | Failure (doesn't select all instances) | [`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) +R1160 | Failure (not available) | [`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) +R1161 | Failure (not available) | [`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) +R1162 | Failure (doesn't select all instances) | [`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) +R1163 | Failure (doesn't select all instances) | [`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) +R1164 | 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) +R1165 | 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) +R1166 | 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) +R1167 | 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) +R1168 | 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) +R1169 | Failure (doesn't select all instances) | [`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) +R1170 | 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) +R1171 | Failure (doesn't select all instances) | [`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) +R1172 | Failure (not available) | [`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) +R1173 | Failure (not available) | [`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) +R1174 | 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) +R1175 | 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) +R1176 | 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) +R1177 | 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) +R1178 | Failure (doesn't select all instances) | [`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) +R1179 | Failure (doesn't select all instances) | [`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) +R1180 | 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) +R1181 | 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) +R1182 | 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) +R1183 | 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) +R1184 | 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) +R1185 | 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) +R1186 | 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) +R1187 | 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) +R1188 | 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) +R1189 | 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) +R1190 | Failure (doesn't select all instances) | [`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) +R1191 | 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) +R1192 | Failure (doesn't select all instances) | [`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) +R1193 | Failure (not available) | [`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) +R1194 | Failure (not available) | [`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) +R1195 | Failure (doesn't select all instances) | [`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) +R1196 | Failure (doesn't select all instances) | [`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) +R1197 | 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) +R1198 | 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) +R1199 | 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) +R1200 | 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) +R1201 | 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) +R1202 | Failure (doesn't select all instances) | [`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) +R1203 | 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) +R1204 | Failure (doesn't select all instances) | [`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) +R1205 | Failure (not available) | [`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) +R1206 | Failure (not available) | [`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) +R1207 | 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) +R1208 | 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) +R1209 | 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) +R1210 | 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) +R1211 | 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) +R1212 | Failure (doesn't select all instances) | [`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) +R1213 | Failure (doesn't select all instances) | [`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) +R1214 | 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) +R1215 | 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) +R1216 | 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) +R1217 | 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) +R1218 | 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) +R1219 | 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) +R1220 | 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) +R1221 | 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) +R1222 | 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) +R1223 | 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) +R1224 | 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) +R1225 | 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) +R1226 | 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) +R1227 | 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) +R1228 | 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) +R1229 | 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) +R1230 | 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) +R1231 | 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) +R1232 | 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) +R1233 | 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) +R1234 | 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) +R1235 | 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) +R1236 | 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) +R1237 | 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) +R1238 | 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) +R1239 | 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) +R1240 | 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) +R1241 | 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) +R1242 | 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) +R1243 | 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) +R1244 | 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) +R1245 | Pass | [`RenameCpp20Constraints.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1246 | Pass | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1247 | Pass | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1248 | Pass | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1249 | Pass | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1250 | Pass | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1251 | Pass | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1252 | Pass | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1253 | Pass | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1254 | Pass | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1255 | Pass | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1256 | Pass | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1257 | 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) +R1258 | Pass | [`RenameCpp20Constraints.cpp`, line 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1259 | Pass | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1260 | 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) +R1261 | Pass | [`RenameCpp20Constraints.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1262 | Pass | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1263 | 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) +R1264 | Pass | [`RenameCpp20Constraints.cpp`, line 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1265 | Pass | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1266 | 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) +R1267 | Pass | [`RenameCpp20Constraints.cpp`, line 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1268 | Pass | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1269 | 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) +R1270 | Pass | [`RenameCpp20Constraints.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1271 | Pass | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1272 | 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) +R1273 | Pass | [`RenameCpp20Constraints.cpp`, line 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1274 | Pass | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1275 | 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) +R1276 | Pass | [`RenameCpp20Constraints.cpp`, line 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1277 | Pass | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1278 | Pass | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1279 | Pass | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1280 | Pass | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1281 | Pass | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1282 | Pass | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1283 | Pass | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1284 | Pass | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1285 | Pass | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1286 | Pass | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1287 | Pass | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1288 | Pass | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1289 | Pass | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1290 | Pass | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1291 | Pass | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1292 | Pass | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1293 | Pass | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1294 | Pass | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1295 | Pass | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1296 | Pass | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1297 | Pass | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1298 | Pass | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1299 | Pass | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1300 | Pass | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1301 | Pass | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1302 | Pass | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1303 | Pass | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1304 | Pass | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1305 | Pass | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1306 | Pass | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1307 | Pass | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1308 | Pass | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1309 | Pass | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1310 | Pass | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1311 | Pass | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1312 | Pass | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1313 | Pass | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1314 | Pass | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1315 | Pass | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1316 | Pass | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1317 | Pass | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1318 | Pass | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1319 | Pass | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1320 | Pass | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1321 | Pass | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1322 | Pass | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1323 | Pass | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1324 | Pass | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1325 | Pass | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1326 | Pass | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1327 | Pass | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1328 | Pass | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1329 | Pass | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1330 | Pass | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1331 | Pass | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1332 | Pass | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1333 | Pass | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1334 | Pass | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1335 | Pass | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1336 | Pass | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1337 | Pass | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1338 | Pass | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1339 | Pass | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1340 | Pass | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1341 | Pass | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1342 | Pass | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1343 | Pass | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1344 | Pass | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1345 | Pass | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1346 | Pass | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1347 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1348 | Pass | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1349 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1350 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1351 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1352 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1353 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1354 | Pass | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1355 | Pass | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1356 | Pass | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1357 | Pass | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1358 | Pass | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1359 | Pass | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1360 | Pass | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1361 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1362 | Pass | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1363 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1364 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1365 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1366 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1367 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1368 | Pass | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1369 | Pass | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1370 | Pass | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1371 | Pass | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1372 | Pass | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1373 | Pass | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1374 | Pass | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1375 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1376 | Pass | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1377 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1378 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1379 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1380 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1381 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1382 | Pass | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1383 | Pass | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1384 | Pass | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1385 | Pass | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1386 | Pass | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1387 | Pass | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1388 | Pass | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1389 | Pass | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1390 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1391 | Pass | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1392 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1393 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1394 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1395 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1396 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1397 | Pass | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1398 | Pass | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1399 | Pass | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1400 | Pass | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1401 | Pass | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1402 | Pass | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1403 | Pass | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1404 | Pass | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1405 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1406 | Pass | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1407 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1408 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1409 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1410 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1411 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1412 | Pass | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1413 | Pass | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1414 | Pass | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1415 | Pass | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1416 | Pass | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1417 | Pass | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1418 | Pass | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1419 | Pass | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1420 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1422 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1423 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1424 | Failure (not available) | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1425 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1426 | Failure (doesn't select all instances) | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1521 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1522 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1523 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1524 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) +R1525 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) +R1526 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) +R1527 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) +R1528 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) +R1529 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) +R1530 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) +R1531 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) +R1532 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) +R1533 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) +R1534 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) +R1535 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) +R1536 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) +R1537 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) +R1538 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) +R1539 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) +R1540 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) +R1541 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) +R1542 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) +R1543 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) +R1544 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) +R1545 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) +R1546 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) +R1547 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) +R1548 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) +R1549 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) +R1550 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) +R1551 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) +R1552 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) +R1553 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) +R1554 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) +R1555 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) +R1556 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) +R1557 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) +R1558 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) +R1559 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) +R1560 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) +R1561 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) +R1562 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) +R1563 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) +R1564 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) +R1565 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) +R1566 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) +R1567 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) +R1568 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) +R1569 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) +R1570 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) +R1571 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) +R1572 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) +R1573 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) +R1574 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) +R1575 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) +R1576 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) +R1577 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) +R1578 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) +R1579 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) ## Reorder Parameters Case | Result | Location | Expected Diff diff --git a/results/diffs/R1000.txt b/results/diffs/R1000.txt index 056a405..1332e90 100644 --- a/results/diffs/R1000.txt +++ b/results/diffs/R1000.txt @@ -1,18 +1,20 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..2400686 100644 +index 024d6a2..9fcf33d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,11 +66,11 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs +@@ -60,13 +60,13 @@ concept Squareable = requires(T lhs) + // Simple concept with multiple template parameters + // #TEST#: R997 Rename template parameter T + // #TEST#: R998 Rename template parameter U +-template ++template + // #TEST#: R999 Rename concept Multiplicable + // #TEST#: R1000 Rename use of T + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs -concept Multiplicable = requires(T lhs, U rhs) -+concept Multiplicable = requires(T goink, U rhs) ++concept Multiplicable = requires(Goink lhs, U rhs) { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -- lhs * rhs; -+ goink * rhs; - }; - // clang-format on - + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs diff --git a/results/diffs/R1001.txt b/results/diffs/R1001.txt index b001c49..cd02d9c 100644 --- a/results/diffs/R1001.txt +++ b/results/diffs/R1001.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..35ef80b 100644 +index 024d6a2..2400686 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -66,11 +66,11 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs -concept Multiplicable = requires(T lhs, U rhs) -+concept Multiplicable = requires(T lhs, U goink) ++concept Multiplicable = requires(T goink, U rhs) { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs - lhs * rhs; -+ lhs * goink; ++ goink * rhs; }; // clang-format on diff --git a/results/diffs/R1002.txt b/results/diffs/R1002.txt index 040489b..c8706c0 100644 --- a/results/diffs/R1002.txt +++ b/results/diffs/R1002.txt @@ -1,23 +1,20 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..47e8909 100644 +index 024d6a2..da1bd41 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -76,15 +76,15 @@ concept Multiplicable = requires(T lhs, U rhs) - - // single template parameter function with simple constraint on template parameter - // #TEST#: R1002 Rename template parameter T --template -+template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Squareable - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value --T square1(T value) -+Goink square1(Goink value) +@@ -60,13 +60,13 @@ concept Squareable = requires(T lhs) + // Simple concept with multiple template parameters + // #TEST#: R997 Rename template parameter T + // #TEST#: R998 Rename template parameter U +-template ++template + // #TEST#: R999 Rename concept Multiplicable + // #TEST#: R1000 Rename use of T + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Multiplicable = requires(T lhs, Goink rhs) { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs diff --git a/results/diffs/R1003.txt b/results/diffs/R1003.txt index fad60ad..986ecbb 100644 --- a/results/diffs/R1003.txt +++ b/results/diffs/R1003.txt @@ -1,193 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..35ef80b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +@@ -66,11 +66,11 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Multiplicable = requires(T lhs, U goink) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +- lhs * rhs; ++ lhs * goink; + }; + // clang-format on + diff --git a/results/diffs/R1004.txt b/results/diffs/R1004.txt index 040489b..cd02d9c 100644 --- a/results/diffs/R1004.txt +++ b/results/diffs/R1004.txt @@ -1,23 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..47e8909 100644 +index 024d6a2..2400686 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -76,15 +76,15 @@ concept Multiplicable = requires(T lhs, U rhs) - - // single template parameter function with simple constraint on template parameter - // #TEST#: R1002 Rename template parameter T --template -+template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Squareable - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value --T square1(T value) -+Goink square1(Goink value) +@@ -66,11 +66,11 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Multiplicable = requires(T goink, U rhs) { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +- lhs * rhs; ++ goink * rhs; + }; + // clang-format on + diff --git a/results/diffs/R1005.txt b/results/diffs/R1005.txt index 040489b..986ecbb 100644 --- a/results/diffs/R1005.txt +++ b/results/diffs/R1005.txt @@ -1,23 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..47e8909 100644 +index 024d6a2..35ef80b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -76,15 +76,15 @@ concept Multiplicable = requires(T lhs, U rhs) - - // single template parameter function with simple constraint on template parameter - // #TEST#: R1002 Rename template parameter T --template -+template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Squareable - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value --T square1(T value) -+Goink square1(Goink value) +@@ -66,11 +66,11 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Multiplicable = requires(T lhs, U goink) { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +- lhs * rhs; ++ lhs * goink; + }; + // clang-format on + diff --git a/results/diffs/R1006.txt b/results/diffs/R1006.txt index 9dcab73..057ac62 100644 --- a/results/diffs/R1006.txt +++ b/results/diffs/R1006.txt @@ -1,29 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d6783e9 100644 +index 024d6a2..47e8909 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -84,7 +84,7 @@ template - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value +@@ -76,15 +76,15 @@ concept Multiplicable = requires(T lhs, U rhs) + + // single template parameter function with simple constraint on template parameter + // #TEST#: R1006 Rename template parameter T +-template ++template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Squareable + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value -T square1(T value) -+T goink(T value) ++Goink square1(Goink value) { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value -@@ -439,12 +439,12 @@ void f1() - // single template parameter function with simple constraint on template parameter - { - // #TEST#: R1210 Rename function square1 -- REQUIRE_EQUAL(4, square1(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1211 Rename function square1 -- const double d = square1(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1212 Rename function square1 -- const Rope r = square1(Rope{"square"}); -+ const Rope r = goink(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); - } - // single template parameter function with simple constraint on function + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value diff --git a/results/diffs/R1007.txt b/results/diffs/R1007.txt index 040489b..e0b28a0 100644 --- a/results/diffs/R1007.txt +++ b/results/diffs/R1007.txt @@ -1,23 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..47e8909 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -76,15 +76,15 @@ concept Multiplicable = requires(T lhs, U rhs) - - // single template parameter function with simple constraint on template parameter - // #TEST#: R1002 Rename template parameter T --template -+template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T - requires Squareable -+ requires Squareable - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value --T square1(T value) -+Goink square1(Goink value) - { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1008.txt b/results/diffs/R1008.txt index 544b782..057ac62 100644 --- a/results/diffs/R1008.txt +++ b/results/diffs/R1008.txt @@ -1,18 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..bf164fc 100644 +index 024d6a2..47e8909 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -84,11 +84,11 @@ template - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value +@@ -76,15 +76,15 @@ concept Multiplicable = requires(T lhs, U rhs) + + // single template parameter function with simple constraint on template parameter + // #TEST#: R1006 Rename template parameter T +-template ++template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Squareable + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value -T square1(T value) -+T square1(T goink) ++Goink square1(Goink value) { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with simple constraint on function + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value diff --git a/results/diffs/R1009.txt b/results/diffs/R1009.txt index 544b782..057ac62 100644 --- a/results/diffs/R1009.txt +++ b/results/diffs/R1009.txt @@ -1,18 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..bf164fc 100644 +index 024d6a2..47e8909 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -84,11 +84,11 @@ template - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value +@@ -76,15 +76,15 @@ concept Multiplicable = requires(T lhs, U rhs) + + // single template parameter function with simple constraint on template parameter + // #TEST#: R1006 Rename template parameter T +-template ++template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Squareable + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value -T square1(T value) -+T square1(T goink) ++Goink square1(Goink value) { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with simple constraint on function + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value diff --git a/results/diffs/R1010.txt b/results/diffs/R1010.txt index 544b782..2d08e8c 100644 --- a/results/diffs/R1010.txt +++ b/results/diffs/R1010.txt @@ -1,18 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..bf164fc 100644 +index 024d6a2..d6783e9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -84,11 +84,11 @@ template - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value +@@ -84,7 +84,7 @@ template + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value -T square1(T value) -+T square1(T goink) ++T goink(T value) { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with simple constraint on function + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value +@@ -439,12 +439,12 @@ void f1() + // single template parameter function with simple constraint on template parameter + { + // #TEST#: R1214 Rename function square1 +- REQUIRE_EQUAL(4, square1(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1215 Rename function square1 +- const double d = square1(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1216 Rename function square1 +- const Rope r = square1(Rope{"square"}); ++ const Rope r = goink(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } + // single template parameter function with simple constraint on function diff --git a/results/diffs/R1011.txt b/results/diffs/R1011.txt index d5951f3..057ac62 100644 --- a/results/diffs/R1011.txt +++ b/results/diffs/R1011.txt @@ -1,23 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b76efb7 100644 +index 024d6a2..47e8909 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -93,15 +93,15 @@ T square1(T value) +@@ -76,15 +76,15 @@ concept Multiplicable = requires(T lhs, U rhs) - // single template parameter function with simple constraint on function - // #TEST#: R1011 Rename template parameter T + // single template parameter function with simple constraint on template parameter + // #TEST#: R1006 Rename template parameter T -template +template - // #TEST#: R1012 Rename first use of T - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value --T square2(T value) -+Goink square2(Goink value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T - requires Squareable + requires Squareable + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value +-T square1(T value) ++Goink square1(Goink value) { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value diff --git a/results/diffs/R1012.txt b/results/diffs/R1012.txt index d5951f3..784d063 100644 --- a/results/diffs/R1012.txt +++ b/results/diffs/R1012.txt @@ -1,23 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b76efb7 100644 +index 024d6a2..bf164fc 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -93,15 +93,15 @@ T square1(T value) +@@ -84,11 +84,11 @@ template + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value +-T square1(T value) ++T square1(T goink) + { + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with simple constraint on function - // #TEST#: R1011 Rename template parameter T --template -+template - // #TEST#: R1012 Rename first use of T - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value --T square2(T value) -+Goink square2(Goink value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Squareable - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value diff --git a/results/diffs/R1013.txt b/results/diffs/R1013.txt index 31ee397..784d063 100644 --- a/results/diffs/R1013.txt +++ b/results/diffs/R1013.txt @@ -1,29 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b8de295 100644 +index 024d6a2..bf164fc 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -98,7 +98,7 @@ template - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value --T square2(T value) -+T goink(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T - requires Squareable -@@ -450,12 +450,12 @@ void f1() - // single template parameter function with simple constraint on function - { - // #TEST#: R1213 Rename function square2 -- REQUIRE_EQUAL(4, square2(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1214 Rename function square2 -- const double d = square2(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1215 Rename function square2 -- const Rope r = square2(Rope{"square"}); -+ const Rope r = goink(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); - } - // single template parameter function with disjunctive constraint on template parameter +@@ -84,11 +84,11 @@ template + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value +-T square1(T value) ++T square1(T goink) + { + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // single template parameter function with simple constraint on function diff --git a/results/diffs/R1014.txt b/results/diffs/R1014.txt index d5951f3..784d063 100644 --- a/results/diffs/R1014.txt +++ b/results/diffs/R1014.txt @@ -1,23 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b76efb7 100644 +index 024d6a2..bf164fc 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -93,15 +93,15 @@ T square1(T value) +@@ -84,11 +84,11 @@ template + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value +-T square1(T value) ++T square1(T goink) + { + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with simple constraint on function - // #TEST#: R1011 Rename template parameter T --template -+template - // #TEST#: R1012 Rename first use of T - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value --T square2(T value) -+Goink square2(Goink value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Squareable - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value diff --git a/results/diffs/R1015.txt b/results/diffs/R1015.txt index 4aa5e2d..28643d7 100644 --- a/results/diffs/R1015.txt +++ b/results/diffs/R1015.txt @@ -1,21 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..480a218 100644 +index 024d6a2..b76efb7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -98,14 +98,14 @@ template - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value +@@ -93,15 +93,15 @@ T square1(T value) + + // single template parameter function with simple constraint on function + // #TEST#: R1015 Rename template parameter T +-template ++template + // #TEST#: R1016 Rename first use of T + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value -T square2(T value) -+T square2(T goink) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T - requires Squareable ++Goink square2(Goink value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Squareable { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with disjunctive constraint on template parameter + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value diff --git a/results/diffs/R1016.txt b/results/diffs/R1016.txt index fad60ad..28643d7 100644 --- a/results/diffs/R1016.txt +++ b/results/diffs/R1016.txt @@ -1,193 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..b76efb7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T +@@ -93,15 +93,15 @@ T square1(T value) + + // single template parameter function with simple constraint on function + // #TEST#: R1015 Rename template parameter T +-template ++template + // #TEST#: R1016 Rename first use of T + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value +-T square2(T value) ++Goink square2(Goink value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T - requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 ++ requires Squareable { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value diff --git a/results/diffs/R1017.txt b/results/diffs/R1017.txt index d5951f3..6f5103d 100644 --- a/results/diffs/R1017.txt +++ b/results/diffs/R1017.txt @@ -1,23 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b76efb7 100644 +index 024d6a2..b8de295 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -93,15 +93,15 @@ T square1(T value) - - // single template parameter function with simple constraint on function - // #TEST#: R1011 Rename template parameter T --template -+template - // #TEST#: R1012 Rename first use of T - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value +@@ -98,7 +98,7 @@ template + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value -T square2(T value) -+Goink square2(Goink value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Squareable - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value ++T goink(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T + requires Squareable +@@ -450,12 +450,12 @@ void f1() + // single template parameter function with simple constraint on function + { + // #TEST#: R1217 Rename function square2 +- REQUIRE_EQUAL(4, square2(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1218 Rename function square2 +- const double d = square2(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1219 Rename function square2 +- const Rope r = square2(Rope{"square"}); ++ const Rope r = goink(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } + // single template parameter function with disjunctive constraint on template parameter diff --git a/results/diffs/R1018.txt b/results/diffs/R1018.txt index 4aa5e2d..28643d7 100644 --- a/results/diffs/R1018.txt +++ b/results/diffs/R1018.txt @@ -1,21 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..480a218 100644 +index 024d6a2..b76efb7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -98,14 +98,14 @@ template - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value +@@ -93,15 +93,15 @@ T square1(T value) + + // single template parameter function with simple constraint on function + // #TEST#: R1015 Rename template parameter T +-template ++template + // #TEST#: R1016 Rename first use of T + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value -T square2(T value) -+T square2(T goink) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T - requires Squareable ++Goink square2(Goink value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Squareable { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with disjunctive constraint on template parameter + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value diff --git a/results/diffs/R1019.txt b/results/diffs/R1019.txt index 4aa5e2d..ee01f8d 100644 --- a/results/diffs/R1019.txt +++ b/results/diffs/R1019.txt @@ -3,17 +3,17 @@ index 024d6a2..480a218 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -98,14 +98,14 @@ template - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value -T square2(T value) +T square2(T goink) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T requires Squareable { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value - return value * value; + return goink * goink; } diff --git a/results/diffs/R1020.txt b/results/diffs/R1020.txt index 16876bd..e0b28a0 100644 --- a/results/diffs/R1020.txt +++ b/results/diffs/R1020.txt @@ -1,24 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c851221 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -110,16 +110,16 @@ T square2(T value) - - // single template parameter function with disjunctive constraint on template parameter - // #TEST#: R1020 Rename template parameter T --template -+template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T - requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value --T square3(T value) -+Goink square3(Goink value) - { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1021.txt b/results/diffs/R1021.txt index 16876bd..28643d7 100644 --- a/results/diffs/R1021.txt +++ b/results/diffs/R1021.txt @@ -1,24 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c851221 100644 +index 024d6a2..b76efb7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -110,16 +110,16 @@ T square2(T value) +@@ -93,15 +93,15 @@ T square1(T value) - // single template parameter function with disjunctive constraint on template parameter - // #TEST#: R1020 Rename template parameter T + // single template parameter function with simple constraint on function + // #TEST#: R1015 Rename template parameter T -template +template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value --T square3(T value) -+Goink square3(Goink value) + // #TEST#: R1016 Rename first use of T + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value +-T square2(T value) ++Goink square2(Goink value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Squareable { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value diff --git a/results/diffs/R1022.txt b/results/diffs/R1022.txt index fad60ad..ee01f8d 100644 --- a/results/diffs/R1022.txt +++ b/results/diffs/R1022.txt @@ -1,193 +1,21 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..480a218 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +@@ -98,14 +98,14 @@ template + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value +-T square2(T value) ++T square2(T goink) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T + requires Squareable + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // single template parameter function with disjunctive constraint on template parameter diff --git a/results/diffs/R1023.txt b/results/diffs/R1023.txt index 16876bd..ee01f8d 100644 --- a/results/diffs/R1023.txt +++ b/results/diffs/R1023.txt @@ -1,24 +1,21 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c851221 100644 +index 024d6a2..480a218 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -110,16 +110,16 @@ T square2(T value) +@@ -98,14 +98,14 @@ template + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value +-T square2(T value) ++T square2(T goink) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T + requires Squareable + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with disjunctive constraint on template parameter - // #TEST#: R1020 Rename template parameter T --template -+template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value --T square3(T value) -+Goink square3(Goink value) - { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value diff --git a/results/diffs/R1024.txt b/results/diffs/R1024.txt index 16876bd..b8048bf 100644 --- a/results/diffs/R1024.txt +++ b/results/diffs/R1024.txt @@ -5,20 +5,20 @@ index 024d6a2..c851221 100644 @@ -110,16 +110,16 @@ T square2(T value) // single template parameter function with disjunctive constraint on template parameter - // #TEST#: R1020 Rename template parameter T + // #TEST#: R1024 Rename template parameter T -template +template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value -T square3(T value) +Goink square3(Goink value) { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value diff --git a/results/diffs/R1025.txt b/results/diffs/R1025.txt index 5a4e491..b8048bf 100644 --- a/results/diffs/R1025.txt +++ b/results/diffs/R1025.txt @@ -1,29 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d8f51f3 100644 +index 024d6a2..c851221 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -119,7 +119,7 @@ template - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value +@@ -110,16 +110,16 @@ T square2(T value) + + // single template parameter function with disjunctive constraint on template parameter + // #TEST#: R1024 Rename template parameter T +-template ++template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value -T square3(T value) -+T goink(T value) ++Goink square3(Goink value) { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value -@@ -461,12 +461,12 @@ void f1() - // single template parameter function with disjunctive constraint on template parameter - { - // #TEST#: R1216 Rename function square3 -- REQUIRE_EQUAL(4, square3(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1217 Rename function square3 -- const double d = square3(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1218 Rename function square3 -- const Rope r = square3(Rope{"square"}); -+ const Rope r = goink(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); - } - // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value diff --git a/results/diffs/R1026.txt b/results/diffs/R1026.txt index 16876bd..e0b28a0 100644 --- a/results/diffs/R1026.txt +++ b/results/diffs/R1026.txt @@ -1,24 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c851221 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -110,16 +110,16 @@ T square2(T value) - - // single template parameter function with disjunctive constraint on template parameter - // #TEST#: R1020 Rename template parameter T --template -+template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T - requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value --T square3(T value) -+Goink square3(Goink value) - { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1027.txt b/results/diffs/R1027.txt index 1580c8c..b8048bf 100644 --- a/results/diffs/R1027.txt +++ b/results/diffs/R1027.txt @@ -1,18 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..34b2e57 100644 +index 024d6a2..c851221 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -119,11 +119,11 @@ template - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value +@@ -110,16 +110,16 @@ T square2(T value) + + // single template parameter function with disjunctive constraint on template parameter + // #TEST#: R1024 Rename template parameter T +-template ++template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value -T square3(T value) -+T square3(T goink) ++Goink square3(Goink value) { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value diff --git a/results/diffs/R1028.txt b/results/diffs/R1028.txt index 1580c8c..b8048bf 100644 --- a/results/diffs/R1028.txt +++ b/results/diffs/R1028.txt @@ -1,18 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..34b2e57 100644 +index 024d6a2..c851221 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -119,11 +119,11 @@ template - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value +@@ -110,16 +110,16 @@ T square2(T value) + + // single template parameter function with disjunctive constraint on template parameter + // #TEST#: R1024 Rename template parameter T +-template ++template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value -T square3(T value) -+T square3(T goink) ++Goink square3(Goink value) { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value diff --git a/results/diffs/R1029.txt b/results/diffs/R1029.txt index 1580c8c..f3dd19b 100644 --- a/results/diffs/R1029.txt +++ b/results/diffs/R1029.txt @@ -1,18 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..34b2e57 100644 +index 024d6a2..d8f51f3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -119,11 +119,11 @@ template - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value +@@ -119,7 +119,7 @@ template + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value -T square3(T value) -+T square3(T goink) ++T goink(T value) { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value +@@ -461,12 +461,12 @@ void f1() + // single template parameter function with disjunctive constraint on template parameter + { + // #TEST#: R1220 Rename function square3 +- REQUIRE_EQUAL(4, square3(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1221 Rename function square3 +- const double d = square3(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1222 Rename function square3 +- const Rope r = square3(Rope{"square"}); ++ const Rope r = goink(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } + // single template parameter function with conjunctive constraint on template parameter diff --git a/results/diffs/R1030.txt b/results/diffs/R1030.txt index 61bf51f..b8048bf 100644 --- a/results/diffs/R1030.txt +++ b/results/diffs/R1030.txt @@ -1,24 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..eb825d6 100644 +index 024d6a2..c851221 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -128,16 +128,16 @@ T square3(T value) +@@ -110,16 +110,16 @@ T square2(T value) - // single template parameter function with conjunctive constraint on template parameter - // #TEST#: R1030 Rename template parameter T + // single template parameter function with disjunctive constraint on template parameter + // #TEST#: R1024 Rename template parameter T -template +template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value --T square4(T value) -+Goink square4(Goink value) + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value +-T square3(T value) ++Goink square3(Goink value) { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value diff --git a/results/diffs/R1031.txt b/results/diffs/R1031.txt index 61bf51f..82064f3 100644 --- a/results/diffs/R1031.txt +++ b/results/diffs/R1031.txt @@ -1,24 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..eb825d6 100644 +index 024d6a2..34b2e57 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -128,16 +128,16 @@ T square3(T value) +@@ -119,11 +119,11 @@ template + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value +-T square3(T value) ++T square3(T goink) + { + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with conjunctive constraint on template parameter - // #TEST#: R1030 Rename template parameter T --template -+template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value --T square4(T value) -+Goink square4(Goink value) - { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value diff --git a/results/diffs/R1032.txt b/results/diffs/R1032.txt index fad60ad..82064f3 100644 --- a/results/diffs/R1032.txt +++ b/results/diffs/R1032.txt @@ -1,193 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..34b2e57 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +@@ -119,11 +119,11 @@ template + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value +-T square3(T value) ++T square3(T goink) + { + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // single template parameter function with conjunctive constraint on template parameter diff --git a/results/diffs/R1033.txt b/results/diffs/R1033.txt index 61bf51f..82064f3 100644 --- a/results/diffs/R1033.txt +++ b/results/diffs/R1033.txt @@ -1,24 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..eb825d6 100644 +index 024d6a2..34b2e57 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -128,16 +128,16 @@ T square3(T value) +@@ -119,11 +119,11 @@ template + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value +-T square3(T value) ++T square3(T goink) + { + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with conjunctive constraint on template parameter - // #TEST#: R1030 Rename template parameter T --template -+template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value --T square4(T value) -+Goink square4(Goink value) - { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value diff --git a/results/diffs/R1034.txt b/results/diffs/R1034.txt index 61bf51f..2725b87 100644 --- a/results/diffs/R1034.txt +++ b/results/diffs/R1034.txt @@ -5,20 +5,20 @@ index 024d6a2..eb825d6 100644 @@ -128,16 +128,16 @@ T square3(T value) // single template parameter function with conjunctive constraint on template parameter - // #TEST#: R1030 Rename template parameter T + // #TEST#: R1034 Rename template parameter T -template +template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value -T square4(T value) +Goink square4(Goink value) { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value diff --git a/results/diffs/R1035.txt b/results/diffs/R1035.txt index 29c02ed..2725b87 100644 --- a/results/diffs/R1035.txt +++ b/results/diffs/R1035.txt @@ -1,25 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..dff4ced 100644 +index 024d6a2..eb825d6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -137,7 +137,7 @@ template - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value +@@ -128,16 +128,16 @@ T square3(T value) + + // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1034 Rename template parameter T +-template ++template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value -T square4(T value) -+T goink(T value) ++Goink square4(Goink value) { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value -@@ -472,9 +472,9 @@ void f1() - // single template parameter function with conjunctive constraint on template parameter - { - // #TEST#: R1219 Rename function square4 -- REQUIRE_EQUAL(4, square4(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1220 Rename function square4 -- const double d = square4(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic - } + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value diff --git a/results/diffs/R1036.txt b/results/diffs/R1036.txt index 61bf51f..e0b28a0 100644 --- a/results/diffs/R1036.txt +++ b/results/diffs/R1036.txt @@ -1,24 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..eb825d6 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -128,16 +128,16 @@ T square3(T value) - - // single template parameter function with conjunctive constraint on template parameter - // #TEST#: R1030 Rename template parameter T --template -+template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T - requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value --T square4(T value) -+Goink square4(Goink value) - { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1037.txt b/results/diffs/R1037.txt index 90a6b24..2725b87 100644 --- a/results/diffs/R1037.txt +++ b/results/diffs/R1037.txt @@ -1,18 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e400fbd 100644 +index 024d6a2..eb825d6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -137,11 +137,11 @@ template - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value +@@ -128,16 +128,16 @@ T square3(T value) + + // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1034 Rename template parameter T +-template ++template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value -T square4(T value) -+T square4(T goink) ++Goink square4(Goink value) { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with disjunctive constraint on function + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value diff --git a/results/diffs/R1038.txt b/results/diffs/R1038.txt index 90a6b24..2725b87 100644 --- a/results/diffs/R1038.txt +++ b/results/diffs/R1038.txt @@ -1,18 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e400fbd 100644 +index 024d6a2..eb825d6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -137,11 +137,11 @@ template - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value +@@ -128,16 +128,16 @@ T square3(T value) + + // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1034 Rename template parameter T +-template ++template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value -T square4(T value) -+T square4(T goink) ++Goink square4(Goink value) { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with disjunctive constraint on function + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value diff --git a/results/diffs/R1039.txt b/results/diffs/R1039.txt index 90a6b24..e52a5ce 100644 --- a/results/diffs/R1039.txt +++ b/results/diffs/R1039.txt @@ -1,18 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e400fbd 100644 +index 024d6a2..dff4ced 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -137,11 +137,11 @@ template - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value +@@ -137,7 +137,7 @@ template + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value -T square4(T value) -+T square4(T goink) ++T goink(T value) { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with disjunctive constraint on function + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value +@@ -472,9 +472,9 @@ void f1() + // single template parameter function with conjunctive constraint on template parameter + { + // #TEST#: R1223 Rename function square4 +- REQUIRE_EQUAL(4, square4(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1224 Rename function square4 +- const double d = square4(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic + } diff --git a/results/diffs/R1040.txt b/results/diffs/R1040.txt index 0d21cad..2725b87 100644 --- a/results/diffs/R1040.txt +++ b/results/diffs/R1040.txt @@ -1,24 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..33b5fb8 100644 +index 024d6a2..eb825d6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -146,16 +146,16 @@ T square4(T value) +@@ -128,16 +128,16 @@ T square3(T value) - // single template parameter function with disjunctive constraint on function - // #TEST#: R1040 Rename template parameter T + // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1034 Rename template parameter T -template +template - // #TEST#: R1041 Rename first use of T - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value --T square5(T value) -+Goink square5(Goink value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value +-T square4(T value) ++Goink square4(Goink value) { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value diff --git a/results/diffs/R1041.txt b/results/diffs/R1041.txt index 0d21cad..702f18b 100644 --- a/results/diffs/R1041.txt +++ b/results/diffs/R1041.txt @@ -1,24 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..33b5fb8 100644 +index 024d6a2..e400fbd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -146,16 +146,16 @@ T square4(T value) +@@ -137,11 +137,11 @@ template + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value +-T square4(T value) ++T square4(T goink) + { + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with disjunctive constraint on function - // #TEST#: R1040 Rename template parameter T --template -+template - // #TEST#: R1041 Rename first use of T - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value --T square5(T value) -+Goink square5(Goink value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value diff --git a/results/diffs/R1042.txt b/results/diffs/R1042.txt index 2a599b3..702f18b 100644 --- a/results/diffs/R1042.txt +++ b/results/diffs/R1042.txt @@ -1,29 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d6c9747 100644 +index 024d6a2..e400fbd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -151,7 +151,7 @@ template - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value --T square5(T value) -+T goink(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -@@ -481,12 +481,12 @@ void f1() - // single template parameter function with disjunctive constraint on function - { - // #TEST#: R1221 Rename function square5 -- REQUIRE_EQUAL(4, square5(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1222 Rename function square5 -- const double d = square5(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1223 Rename function square5 -- const Rope r = square5(Rope{"square"}); -+ const Rope r = goink(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); - } - // single template parameter function with conjunctive constraint on function +@@ -137,11 +137,11 @@ template + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value +-T square4(T value) ++T square4(T goink) + { + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // single template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1043.txt b/results/diffs/R1043.txt index 0d21cad..702f18b 100644 --- a/results/diffs/R1043.txt +++ b/results/diffs/R1043.txt @@ -1,24 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..33b5fb8 100644 +index 024d6a2..e400fbd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -146,16 +146,16 @@ T square4(T value) +@@ -137,11 +137,11 @@ template + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value +-T square4(T value) ++T square4(T goink) + { + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with disjunctive constraint on function - // #TEST#: R1040 Rename template parameter T --template -+template - // #TEST#: R1041 Rename first use of T - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value --T square5(T value) -+Goink square5(Goink value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value diff --git a/results/diffs/R1044.txt b/results/diffs/R1044.txt index dd30a0c..8cfaade 100644 --- a/results/diffs/R1044.txt +++ b/results/diffs/R1044.txt @@ -1,22 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..6c54958 100644 +index 024d6a2..33b5fb8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -151,7 +151,7 @@ template - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value +@@ -146,16 +146,16 @@ T square4(T value) + + // single template parameter function with disjunctive constraint on function + // #TEST#: R1044 Rename template parameter T +-template ++template + // #TEST#: R1045 Rename first use of T + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value -T square5(T value) -+T square5(T goink) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -@@ -159,7 +159,7 @@ T square5(T value) ++Goink square5(Goink value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with conjunctive constraint on function + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value diff --git a/results/diffs/R1045.txt b/results/diffs/R1045.txt index 0d21cad..8cfaade 100644 --- a/results/diffs/R1045.txt +++ b/results/diffs/R1045.txt @@ -5,20 +5,20 @@ index 024d6a2..33b5fb8 100644 @@ -146,16 +146,16 @@ T square4(T value) // single template parameter function with disjunctive constraint on function - // #TEST#: R1040 Rename template parameter T + // #TEST#: R1044 Rename template parameter T -template +template - // #TEST#: R1041 Rename first use of T - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value + // #TEST#: R1045 Rename first use of T + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value -T square5(T value) +Goink square5(Goink value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value diff --git a/results/diffs/R1046.txt b/results/diffs/R1046.txt index fad60ad..b6fc9ef 100644 --- a/results/diffs/R1046.txt +++ b/results/diffs/R1046.txt @@ -1,193 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..d6c9747 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +@@ -151,7 +151,7 @@ template + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value +-T square5(T value) ++T goink(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +@@ -481,12 +481,12 @@ void f1() + // single template parameter function with disjunctive constraint on function + { + // #TEST#: R1225 Rename function square5 +- REQUIRE_EQUAL(4, square5(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1226 Rename function square5 +- const double d = square5(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1227 Rename function square5 +- const Rope r = square5(Rope{"square"}); ++ const Rope r = goink(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } + // single template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1047.txt b/results/diffs/R1047.txt index 0d21cad..8cfaade 100644 --- a/results/diffs/R1047.txt +++ b/results/diffs/R1047.txt @@ -5,20 +5,20 @@ index 024d6a2..33b5fb8 100644 @@ -146,16 +146,16 @@ T square4(T value) // single template parameter function with disjunctive constraint on function - // #TEST#: R1040 Rename template parameter T + // #TEST#: R1044 Rename template parameter T -template +template - // #TEST#: R1041 Rename first use of T - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value + // #TEST#: R1045 Rename first use of T + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value -T square5(T value) +Goink square5(Goink value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value diff --git a/results/diffs/R1048.txt b/results/diffs/R1048.txt index dd30a0c..05b9fe2 100644 --- a/results/diffs/R1048.txt +++ b/results/diffs/R1048.txt @@ -3,18 +3,18 @@ index 024d6a2..6c54958 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -151,7 +151,7 @@ template - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value -T square5(T value) +T square5(T goink) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T @@ -159,7 +159,7 @@ T square5(T value) { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value - return value * value; + return goink * goink; } diff --git a/results/diffs/R1049.txt b/results/diffs/R1049.txt index dd30a0c..8cfaade 100644 --- a/results/diffs/R1049.txt +++ b/results/diffs/R1049.txt @@ -1,22 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..6c54958 100644 +index 024d6a2..33b5fb8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -151,7 +151,7 @@ template - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value +@@ -146,16 +146,16 @@ T square4(T value) + + // single template parameter function with disjunctive constraint on function + // #TEST#: R1044 Rename template parameter T +-template ++template + // #TEST#: R1045 Rename first use of T + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value -T square5(T value) -+T square5(T goink) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -@@ -159,7 +159,7 @@ T square5(T value) ++Goink square5(Goink value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with conjunctive constraint on function + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value diff --git a/results/diffs/R1050.txt b/results/diffs/R1050.txt index 2bd1dd5..e0b28a0 100644 --- a/results/diffs/R1050.txt +++ b/results/diffs/R1050.txt @@ -1,24 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..607baf7 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -164,16 +164,16 @@ T square5(T value) - - // single template parameter function with conjunctive constraint on function - // #TEST#: R1050 Rename template parameter T --template -+template - // #TEST#: R1051 Rename first use of T - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value --T square6(T value) -+Goink square6(Goink value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T - requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value diff --git a/results/diffs/R1051.txt b/results/diffs/R1051.txt index 2bd1dd5..8cfaade 100644 --- a/results/diffs/R1051.txt +++ b/results/diffs/R1051.txt @@ -1,24 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..607baf7 100644 +index 024d6a2..33b5fb8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -164,16 +164,16 @@ T square5(T value) +@@ -146,16 +146,16 @@ T square4(T value) - // single template parameter function with conjunctive constraint on function - // #TEST#: R1050 Rename template parameter T + // single template parameter function with disjunctive constraint on function + // #TEST#: R1044 Rename template parameter T -template +template - // #TEST#: R1051 Rename first use of T - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value --T square6(T value) -+Goink square6(Goink value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable + // #TEST#: R1045 Rename first use of T + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value +-T square5(T value) ++Goink square5(Goink value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value diff --git a/results/diffs/R1052.txt b/results/diffs/R1052.txt index 666e260..05b9fe2 100644 --- a/results/diffs/R1052.txt +++ b/results/diffs/R1052.txt @@ -1,25 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d41a4d9 100644 +index 024d6a2..6c54958 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -169,7 +169,7 @@ template - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value --T square6(T value) -+T goink(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -@@ -492,9 +492,9 @@ void f1() - // single template parameter function with conjunctive constraint on function - { - // #TEST#: R1224 Rename function square6 -- REQUIRE_EQUAL(4, square6(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1225 Rename function square6 -- const double d = square6(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic - } +@@ -151,7 +151,7 @@ template + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value +-T square5(T value) ++T square5(T goink) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +@@ -159,7 +159,7 @@ T square5(T value) + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // single template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1053.txt b/results/diffs/R1053.txt index 2bd1dd5..05b9fe2 100644 --- a/results/diffs/R1053.txt +++ b/results/diffs/R1053.txt @@ -1,24 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..607baf7 100644 +index 024d6a2..6c54958 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -164,16 +164,16 @@ T square5(T value) +@@ -151,7 +151,7 @@ template + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value +-T square5(T value) ++T square5(T goink) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +@@ -159,7 +159,7 @@ T square5(T value) + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with conjunctive constraint on function - // #TEST#: R1050 Rename template parameter T --template -+template - // #TEST#: R1051 Rename first use of T - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value --T square6(T value) -+Goink square6(Goink value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value diff --git a/results/diffs/R1054.txt b/results/diffs/R1054.txt index c7bebd9..412cb41 100644 --- a/results/diffs/R1054.txt +++ b/results/diffs/R1054.txt @@ -1,22 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..7b3f0d1 100644 +index 024d6a2..607baf7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -169,7 +169,7 @@ template - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value +@@ -164,16 +164,16 @@ T square5(T value) + + // single template parameter function with conjunctive constraint on function + // #TEST#: R1054 Rename template parameter T +-template ++template + // #TEST#: R1055 Rename first use of T + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value -T square6(T value) -+T square6(T goink) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -@@ -177,7 +177,7 @@ T square6(T value) ++Goink square6(Goink value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with combined constraint on template parameter + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value diff --git a/results/diffs/R1055.txt b/results/diffs/R1055.txt index 2bd1dd5..412cb41 100644 --- a/results/diffs/R1055.txt +++ b/results/diffs/R1055.txt @@ -5,20 +5,20 @@ index 024d6a2..607baf7 100644 @@ -164,16 +164,16 @@ T square5(T value) // single template parameter function with conjunctive constraint on function - // #TEST#: R1050 Rename template parameter T + // #TEST#: R1054 Rename template parameter T -template +template - // #TEST#: R1051 Rename first use of T - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value + // #TEST#: R1055 Rename first use of T + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value -T square6(T value) +Goink square6(Goink value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value diff --git a/results/diffs/R1056.txt b/results/diffs/R1056.txt index fad60ad..d733cf5 100644 --- a/results/diffs/R1056.txt +++ b/results/diffs/R1056.txt @@ -1,193 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..d41a4d9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +@@ -169,7 +169,7 @@ template + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value +-T square6(T value) ++T goink(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +@@ -492,9 +492,9 @@ void f1() + // single template parameter function with conjunctive constraint on function + { + // #TEST#: R1228 Rename function square6 +- REQUIRE_EQUAL(4, square6(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1229 Rename function square6 +- const double d = square6(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic + } diff --git a/results/diffs/R1057.txt b/results/diffs/R1057.txt index 2bd1dd5..412cb41 100644 --- a/results/diffs/R1057.txt +++ b/results/diffs/R1057.txt @@ -5,20 +5,20 @@ index 024d6a2..607baf7 100644 @@ -164,16 +164,16 @@ T square5(T value) // single template parameter function with conjunctive constraint on function - // #TEST#: R1050 Rename template parameter T + // #TEST#: R1054 Rename template parameter T -template +template - // #TEST#: R1051 Rename first use of T - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value + // #TEST#: R1055 Rename first use of T + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value -T square6(T value) +Goink square6(Goink value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value diff --git a/results/diffs/R1058.txt b/results/diffs/R1058.txt index c7bebd9..0c69bd3 100644 --- a/results/diffs/R1058.txt +++ b/results/diffs/R1058.txt @@ -3,18 +3,18 @@ index 024d6a2..7b3f0d1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -169,7 +169,7 @@ template - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value -T square6(T value) +T square6(T goink) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T @@ -177,7 +177,7 @@ T square6(T value) { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value - return value * value; + return goink * goink; } diff --git a/results/diffs/R1059.txt b/results/diffs/R1059.txt index c7bebd9..412cb41 100644 --- a/results/diffs/R1059.txt +++ b/results/diffs/R1059.txt @@ -1,22 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..7b3f0d1 100644 +index 024d6a2..607baf7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -169,7 +169,7 @@ template - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value +@@ -164,16 +164,16 @@ T square5(T value) + + // single template parameter function with conjunctive constraint on function + // #TEST#: R1054 Rename template parameter T +-template ++template + // #TEST#: R1055 Rename first use of T + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value -T square6(T value) -+T square6(T goink) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -@@ -177,7 +177,7 @@ T square6(T value) ++Goink square6(Goink value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with combined constraint on template parameter + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value diff --git a/results/diffs/R1060.txt b/results/diffs/R1060.txt index 6fc474a..e0b28a0 100644 --- a/results/diffs/R1060.txt +++ b/results/diffs/R1060.txt @@ -1,25 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e974bde 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -182,17 +182,17 @@ T square6(T value) - - // single template parameter function with combined constraint on template parameter - // #TEST#: R1060 Rename template parameter T --template -+template - // #TEST#: R1061 Rename first use of T - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value --T square7(T value) -+Goink square7(Goink value) - { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1061.txt b/results/diffs/R1061.txt index 6fc474a..412cb41 100644 --- a/results/diffs/R1061.txt +++ b/results/diffs/R1061.txt @@ -1,25 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e974bde 100644 +index 024d6a2..607baf7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -182,17 +182,17 @@ T square6(T value) +@@ -164,16 +164,16 @@ T square5(T value) - // single template parameter function with combined constraint on template parameter - // #TEST#: R1060 Rename template parameter T + // single template parameter function with conjunctive constraint on function + // #TEST#: R1054 Rename template parameter T -template +template - // #TEST#: R1061 Rename first use of T - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value --T square7(T value) -+Goink square7(Goink value) + // #TEST#: R1055 Rename first use of T + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value +-T square6(T value) ++Goink square6(Goink value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value diff --git a/results/diffs/R1062.txt b/results/diffs/R1062.txt index 6fc474a..0c69bd3 100644 --- a/results/diffs/R1062.txt +++ b/results/diffs/R1062.txt @@ -1,25 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e974bde 100644 +index 024d6a2..7b3f0d1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -182,17 +182,17 @@ T square6(T value) +@@ -169,7 +169,7 @@ template + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value +-T square6(T value) ++T square6(T goink) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +@@ -177,7 +177,7 @@ T square6(T value) + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with combined constraint on template parameter - // #TEST#: R1060 Rename template parameter T --template -+template - // #TEST#: R1061 Rename first use of T - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value --T square7(T value) -+Goink square7(Goink value) - { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value diff --git a/results/diffs/R1063.txt b/results/diffs/R1063.txt index fad60ad..0c69bd3 100644 --- a/results/diffs/R1063.txt +++ b/results/diffs/R1063.txt @@ -1,193 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..7b3f0d1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +@@ -169,7 +169,7 @@ template + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value +-T square6(T value) ++T square6(T goink) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +@@ -177,7 +177,7 @@ T square6(T value) + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // single template parameter function with combined constraint on template parameter diff --git a/results/diffs/R1064.txt b/results/diffs/R1064.txt index 6fc474a..a0cc3a2 100644 --- a/results/diffs/R1064.txt +++ b/results/diffs/R1064.txt @@ -5,21 +5,21 @@ index 024d6a2..e974bde 100644 @@ -182,17 +182,17 @@ T square6(T value) // single template parameter function with combined constraint on template parameter - // #TEST#: R1060 Rename template parameter T + // #TEST#: R1064 Rename template parameter T -template +template - // #TEST#: R1061 Rename first use of T - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T + // #TEST#: R1065 Rename first use of T + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value -T square7(T value) +Goink square7(Goink value) { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value diff --git a/results/diffs/R1065.txt b/results/diffs/R1065.txt index 6fc474a..a0cc3a2 100644 --- a/results/diffs/R1065.txt +++ b/results/diffs/R1065.txt @@ -5,21 +5,21 @@ index 024d6a2..e974bde 100644 @@ -182,17 +182,17 @@ T square6(T value) // single template parameter function with combined constraint on template parameter - // #TEST#: R1060 Rename template parameter T + // #TEST#: R1064 Rename template parameter T -template +template - // #TEST#: R1061 Rename first use of T - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T + // #TEST#: R1065 Rename first use of T + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value -T square7(T value) +Goink square7(Goink value) { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value diff --git a/results/diffs/R1066.txt b/results/diffs/R1066.txt index 502953d..a0cc3a2 100644 --- a/results/diffs/R1066.txt +++ b/results/diffs/R1066.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e02246d 100644 +index 024d6a2..e974bde 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -192,7 +192,7 @@ template - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value +@@ -182,17 +182,17 @@ T square6(T value) + + // single template parameter function with combined constraint on template parameter + // #TEST#: R1064 Rename template parameter T +-template ++template + // #TEST#: R1065 Rename first use of T + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value -T square7(T value) -+T goink(T value) ++Goink square7(Goink value) { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value -@@ -501,9 +501,9 @@ void f1() - // single template parameter function with combined constraint on template parameter - { - // #TEST#: R1226 Rename function square7 -- REQUIRE_EQUAL(4, square7(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1227 Rename function square7 -- const double d = square7(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic - } + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value diff --git a/results/diffs/R1067.txt b/results/diffs/R1067.txt index 6fc474a..e0b28a0 100644 --- a/results/diffs/R1067.txt +++ b/results/diffs/R1067.txt @@ -1,25 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e974bde 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -182,17 +182,17 @@ T square6(T value) - - // single template parameter function with combined constraint on template parameter - // #TEST#: R1060 Rename template parameter T --template -+template - // #TEST#: R1061 Rename first use of T - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value --T square7(T value) -+Goink square7(Goink value) - { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1068.txt b/results/diffs/R1068.txt index 85ce98a..a0cc3a2 100644 --- a/results/diffs/R1068.txt +++ b/results/diffs/R1068.txt @@ -1,18 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8b9e9b3 100644 +index 024d6a2..e974bde 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -192,11 +192,11 @@ template - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value +@@ -182,17 +182,17 @@ T square6(T value) + + // single template parameter function with combined constraint on template parameter + // #TEST#: R1064 Rename template parameter T +-template ++template + // #TEST#: R1065 Rename first use of T + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value -T square7(T value) -+T square7(T goink) ++Goink square7(Goink value) { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with combined constraint on function + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value diff --git a/results/diffs/R1069.txt b/results/diffs/R1069.txt index 85ce98a..a0cc3a2 100644 --- a/results/diffs/R1069.txt +++ b/results/diffs/R1069.txt @@ -1,18 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8b9e9b3 100644 +index 024d6a2..e974bde 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -192,11 +192,11 @@ template - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value +@@ -182,17 +182,17 @@ T square6(T value) + + // single template parameter function with combined constraint on template parameter + // #TEST#: R1064 Rename template parameter T +-template ++template + // #TEST#: R1065 Rename first use of T + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value -T square7(T value) -+T square7(T goink) ++Goink square7(Goink value) { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with combined constraint on function + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value diff --git a/results/diffs/R1070.txt b/results/diffs/R1070.txt index 85ce98a..2cade1a 100644 --- a/results/diffs/R1070.txt +++ b/results/diffs/R1070.txt @@ -1,18 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8b9e9b3 100644 +index 024d6a2..e02246d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -192,11 +192,11 @@ template - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value +@@ -192,7 +192,7 @@ template + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value -T square7(T value) -+T square7(T goink) ++T goink(T value) { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // single template parameter function with combined constraint on function + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value +@@ -501,9 +501,9 @@ void f1() + // single template parameter function with combined constraint on template parameter + { + // #TEST#: R1230 Rename function square7 +- REQUIRE_EQUAL(4, square7(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1231 Rename function square7 +- const double d = square7(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic + } diff --git a/results/diffs/R1071.txt b/results/diffs/R1071.txt index dc4c12e..a0cc3a2 100644 --- a/results/diffs/R1071.txt +++ b/results/diffs/R1071.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..388f5f8 100644 +index 024d6a2..e974bde 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -201,17 +201,17 @@ T square7(T value) +@@ -182,17 +182,17 @@ T square6(T value) - // single template parameter function with combined constraint on function - // #TEST#: R1071 Rename template parameter T + // single template parameter function with combined constraint on template parameter + // #TEST#: R1064 Rename template parameter T -template +template - // #TEST#: R1072 Rename first use of T - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value --T square8(T value) -+Goink square8(Goink value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T + // #TEST#: R1065 Rename first use of T + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value +-T square7(T value) ++Goink square7(Goink value) { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value diff --git a/results/diffs/R1072.txt b/results/diffs/R1072.txt index dc4c12e..609b2bd 100644 --- a/results/diffs/R1072.txt +++ b/results/diffs/R1072.txt @@ -1,25 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..388f5f8 100644 +index 024d6a2..8b9e9b3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -201,17 +201,17 @@ T square7(T value) +@@ -192,11 +192,11 @@ template + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value +-T square7(T value) ++T square7(T goink) + { + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with combined constraint on function - // #TEST#: R1071 Rename template parameter T --template -+template - // #TEST#: R1072 Rename first use of T - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value --T square8(T value) -+Goink square8(Goink value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value diff --git a/results/diffs/R1073.txt b/results/diffs/R1073.txt index 23e10cb..609b2bd 100644 --- a/results/diffs/R1073.txt +++ b/results/diffs/R1073.txt @@ -1,25 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..26b846d 100644 +index 024d6a2..8b9e9b3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -206,7 +206,7 @@ template - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value --T square8(T value) -+T goink(T value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable -@@ -510,9 +510,9 @@ void f1() - // single template parameter function with combined constraint on function - { - // #TEST#: R1228 Rename function square8 -- REQUIRE_EQUAL(4, square8(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1229 Rename function square8 -- const double d = square8(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic - } +@@ -192,11 +192,11 @@ template + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value +-T square7(T value) ++T square7(T goink) + { + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // single template parameter function with combined constraint on function diff --git a/results/diffs/R1074.txt b/results/diffs/R1074.txt index dc4c12e..609b2bd 100644 --- a/results/diffs/R1074.txt +++ b/results/diffs/R1074.txt @@ -1,25 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..388f5f8 100644 +index 024d6a2..8b9e9b3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -201,17 +201,17 @@ T square7(T value) +@@ -192,11 +192,11 @@ template + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value +-T square7(T value) ++T square7(T goink) + { + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value +- return value * value; ++ return goink * goink; + } // single template parameter function with combined constraint on function - // #TEST#: R1071 Rename template parameter T --template -+template - // #TEST#: R1072 Rename first use of T - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value --T square8(T value) -+Goink square8(Goink value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value diff --git a/results/diffs/R1075.txt b/results/diffs/R1075.txt index 32e20fe..c0ef5bf 100644 --- a/results/diffs/R1075.txt +++ b/results/diffs/R1075.txt @@ -1,22 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e9bc23d 100644 +index 024d6a2..388f5f8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -206,7 +206,7 @@ template - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value +@@ -201,17 +201,17 @@ T square7(T value) + + // single template parameter function with combined constraint on function + // #TEST#: R1075 Rename template parameter T +-template ++template + // #TEST#: R1076 Rename first use of T + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value -T square8(T value) -+T square8(T goink) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable -@@ -215,7 +215,7 @@ T square8(T value) ++Goink square8(Goink value) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // multiple template parameter function with simple constraint on template parameters + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value diff --git a/results/diffs/R1076.txt b/results/diffs/R1076.txt index dc4c12e..c0ef5bf 100644 --- a/results/diffs/R1076.txt +++ b/results/diffs/R1076.txt @@ -5,21 +5,21 @@ index 024d6a2..388f5f8 100644 @@ -201,17 +201,17 @@ T square7(T value) // single template parameter function with combined constraint on function - // #TEST#: R1071 Rename template parameter T + // #TEST#: R1075 Rename template parameter T -template +template - // #TEST#: R1072 Rename first use of T - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value + // #TEST#: R1076 Rename first use of T + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value -T square8(T value) +Goink square8(Goink value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value diff --git a/results/diffs/R1077.txt b/results/diffs/R1077.txt index dc4c12e..11ad12f 100644 --- a/results/diffs/R1077.txt +++ b/results/diffs/R1077.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..388f5f8 100644 +index 024d6a2..26b846d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -201,17 +201,17 @@ T square7(T value) - - // single template parameter function with combined constraint on function - // #TEST#: R1071 Rename template parameter T --template -+template - // #TEST#: R1072 Rename first use of T - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value +@@ -206,7 +206,7 @@ template + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value -T square8(T value) -+Goink square8(Goink value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value ++T goink(T value) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable +@@ -510,9 +510,9 @@ void f1() + // single template parameter function with combined constraint on function + { + // #TEST#: R1232 Rename function square8 +- REQUIRE_EQUAL(4, square8(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1233 Rename function square8 +- const double d = square8(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic + } diff --git a/results/diffs/R1078.txt b/results/diffs/R1078.txt index fad60ad..c0ef5bf 100644 --- a/results/diffs/R1078.txt +++ b/results/diffs/R1078.txt @@ -1,193 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..388f5f8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T +@@ -201,17 +201,17 @@ T square7(T value) + + // single template parameter function with combined constraint on function + // #TEST#: R1075 Rename template parameter T +-template ++template + // #TEST#: R1076 Rename first use of T + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value +-T square8(T value) ++Goink square8(Goink value) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value diff --git a/results/diffs/R1079.txt b/results/diffs/R1079.txt index dc4c12e..4e53b6a 100644 --- a/results/diffs/R1079.txt +++ b/results/diffs/R1079.txt @@ -1,25 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..388f5f8 100644 +index 024d6a2..e9bc23d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -201,17 +201,17 @@ T square7(T value) - - // single template parameter function with combined constraint on function - // #TEST#: R1071 Rename template parameter T --template -+template - // #TEST#: R1072 Rename first use of T - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value +@@ -206,7 +206,7 @@ template + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value -T square8(T value) -+Goink square8(Goink value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++T square8(T goink) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable +@@ -215,7 +215,7 @@ T square8(T value) { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // multiple template parameter function with simple constraint on template parameters diff --git a/results/diffs/R1080.txt b/results/diffs/R1080.txt index 32e20fe..c0ef5bf 100644 --- a/results/diffs/R1080.txt +++ b/results/diffs/R1080.txt @@ -1,22 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e9bc23d 100644 +index 024d6a2..388f5f8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -206,7 +206,7 @@ template - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value +@@ -201,17 +201,17 @@ T square7(T value) + + // single template parameter function with combined constraint on function + // #TEST#: R1075 Rename template parameter T +-template ++template + // #TEST#: R1076 Rename first use of T + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value -T square8(T value) -+T square8(T goink) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable -@@ -215,7 +215,7 @@ T square8(T value) ++Goink square8(Goink value) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // multiple template parameter function with simple constraint on template parameters + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value diff --git a/results/diffs/R1081.txt b/results/diffs/R1081.txt index 32e20fe..c0ef5bf 100644 --- a/results/diffs/R1081.txt +++ b/results/diffs/R1081.txt @@ -1,22 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e9bc23d 100644 +index 024d6a2..388f5f8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -206,7 +206,7 @@ template - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value +@@ -201,17 +201,17 @@ T square7(T value) + + // single template parameter function with combined constraint on function + // #TEST#: R1075 Rename template parameter T +-template ++template + // #TEST#: R1076 Rename first use of T + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value -T square8(T value) -+T square8(T goink) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable -@@ -215,7 +215,7 @@ T square8(T value) ++Goink square8(Goink value) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -- return value * value; -+ return goink * goink; - } - - // multiple template parameter function with simple constraint on template parameters + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value diff --git a/results/diffs/R1082.txt b/results/diffs/R1082.txt index a64b121..e0b28a0 100644 --- a/results/diffs/R1082.txt +++ b/results/diffs/R1082.txt @@ -1,27 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e3f6c02 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -222,11 +222,11 @@ T square8(T value) - // #TEST#: R1082 Rename template parameter T - // #TEST#: R1083 Rename template parameter U - // #TEST#: R1084 Rename use of T --template -+template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Multiplicable - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs --auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product1(Goink lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1083.txt b/results/diffs/R1083.txt index cb55563..c0ef5bf 100644 --- a/results/diffs/R1083.txt +++ b/results/diffs/R1083.txt @@ -1,27 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..9f934ee 100644 +index 024d6a2..388f5f8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -222,11 +222,11 @@ T square8(T value) - // #TEST#: R1082 Rename template parameter T - // #TEST#: R1083 Rename template parameter U - // #TEST#: R1084 Rename use of T --template -+template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Multiplicable - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs --auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product1(T lhs, Goink rhs) -> decltype(lhs * rhs) +@@ -201,17 +201,17 @@ T square7(T value) + + // single template parameter function with combined constraint on function + // #TEST#: R1075 Rename template parameter T +-template ++template + // #TEST#: R1076 Rename first use of T + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value +-T square8(T value) ++Goink square8(Goink value) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value diff --git a/results/diffs/R1084.txt b/results/diffs/R1084.txt index a64b121..4e53b6a 100644 --- a/results/diffs/R1084.txt +++ b/results/diffs/R1084.txt @@ -1,27 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e3f6c02 100644 +index 024d6a2..e9bc23d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -222,11 +222,11 @@ T square8(T value) - // #TEST#: R1082 Rename template parameter T - // #TEST#: R1083 Rename template parameter U - // #TEST#: R1084 Rename use of T --template -+template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Multiplicable - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs --auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product1(Goink lhs, U rhs) -> decltype(lhs * rhs) +@@ -206,7 +206,7 @@ template + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value +-T square8(T value) ++T square8(T goink) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable +@@ -215,7 +215,7 @@ T square8(T value) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // multiple template parameter function with simple constraint on template parameters diff --git a/results/diffs/R1085.txt b/results/diffs/R1085.txt index 13a8d1e..4e53b6a 100644 --- a/results/diffs/R1085.txt +++ b/results/diffs/R1085.txt @@ -1,193 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f44d43b 100644 +index 024d6a2..e9bc23d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -206,7 +206,7 @@ template + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value +-T square8(T value) ++T square8(T goink) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable +@@ -215,7 +215,7 @@ T square8(T value) + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +- return value * value; ++ return goink * goink; + } + + // multiple template parameter function with simple constraint on template parameters diff --git a/results/diffs/R1086.txt b/results/diffs/R1086.txt index a64b121..f89b648 100644 --- a/results/diffs/R1086.txt +++ b/results/diffs/R1086.txt @@ -3,25 +3,25 @@ index 024d6a2..e3f6c02 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -222,11 +222,11 @@ T square8(T value) - // #TEST#: R1082 Rename template parameter T - // #TEST#: R1083 Rename template parameter U - // #TEST#: R1084 Rename use of T + // #TEST#: R1086 Rename template parameter T + // #TEST#: R1087 Rename template parameter U + // #TEST#: R1088 Rename use of T -template +template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U - requires Multiplicable + requires Multiplicable - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs @@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) +auto product1(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs diff --git a/results/diffs/R1087.txt b/results/diffs/R1087.txt index cb55563..fa3f1f0 100644 --- a/results/diffs/R1087.txt +++ b/results/diffs/R1087.txt @@ -3,25 +3,25 @@ index 024d6a2..9f934ee 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -222,11 +222,11 @@ T square8(T value) - // #TEST#: R1082 Rename template parameter T - // #TEST#: R1083 Rename template parameter U - // #TEST#: R1084 Rename use of T + // #TEST#: R1086 Rename template parameter T + // #TEST#: R1087 Rename template parameter U + // #TEST#: R1088 Rename use of T -template +template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U - requires Multiplicable + requires Multiplicable - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs @@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) +auto product1(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs diff --git a/results/diffs/R1088.txt b/results/diffs/R1088.txt index 4fd4339..f89b648 100644 --- a/results/diffs/R1088.txt +++ b/results/diffs/R1088.txt @@ -1,29 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..26ffe94 100644 +index 024d6a2..e3f6c02 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp +@@ -222,11 +222,11 @@ T square8(T value) + // #TEST#: R1086 Rename template parameter T + // #TEST#: R1087 Rename template parameter U + // #TEST#: R1088 Rename use of T +-template ++template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Multiplicable + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs @@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product1(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs -@@ -520,12 +520,12 @@ void f1() - // multiple template parameter function with simple constraint on template parameters - { - // #TEST#: R1230 Rename function product1 -- REQUIRE_EQUAL(6.0, product1(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1231 Rename function product1 -- const double d = product1(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // #TEST#: R1232 Rename function product1 -- const Rope r = product1(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } - // multiple template parameter function with simple constraint on function + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs diff --git a/results/diffs/R1089.txt b/results/diffs/R1089.txt index a64b121..1d062b9 100644 --- a/results/diffs/R1089.txt +++ b/results/diffs/R1089.txt @@ -1,27 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e3f6c02 100644 +index 024d6a2..f44d43b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -222,11 +222,11 @@ T square8(T value) - // #TEST#: R1082 Rename template parameter T - // #TEST#: R1083 Rename template parameter U - // #TEST#: R1084 Rename use of T --template -+template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U - requires Multiplicable -+ requires Multiplicable - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs --auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product1(Goink lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1090.txt b/results/diffs/R1090.txt index 15364f4..f89b648 100644 --- a/results/diffs/R1090.txt +++ b/results/diffs/R1090.txt @@ -1,18 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c8f57a1 100644 +index 024d6a2..e3f6c02 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -234,11 +234,11 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs +@@ -222,11 +222,11 @@ T square8(T value) + // #TEST#: R1086 Rename template parameter T + // #TEST#: R1087 Rename template parameter U + // #TEST#: R1088 Rename use of T +-template ++template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Multiplicable + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -234,7 +234,7 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product1(T goink, U rhs) -> decltype(goink * rhs) ++auto product1(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with simple constraint on function + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs diff --git a/results/diffs/R1091.txt b/results/diffs/R1091.txt index cb55563..fa3f1f0 100644 --- a/results/diffs/R1091.txt +++ b/results/diffs/R1091.txt @@ -3,25 +3,25 @@ index 024d6a2..9f934ee 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -222,11 +222,11 @@ T square8(T value) - // #TEST#: R1082 Rename template parameter T - // #TEST#: R1083 Rename template parameter U - // #TEST#: R1084 Rename use of T + // #TEST#: R1086 Rename template parameter T + // #TEST#: R1087 Rename template parameter U + // #TEST#: R1088 Rename use of T -template +template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U - requires Multiplicable + requires Multiplicable - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs @@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) +auto product1(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs diff --git a/results/diffs/R1092.txt b/results/diffs/R1092.txt index fc798e5..c27d711 100644 --- a/results/diffs/R1092.txt +++ b/results/diffs/R1092.txt @@ -1,18 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..91fc0d6 100644 +index 024d6a2..26ffe94 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -234,11 +234,11 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs +@@ -234,7 +234,7 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product1(T lhs, U goink) -> decltype(lhs * goink) ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with simple constraint on function + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs +@@ -520,12 +520,12 @@ void f1() + // multiple template parameter function with simple constraint on template parameters + { + // #TEST#: R1234 Rename function product1 +- REQUIRE_EQUAL(6.0, product1(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1235 Rename function product1 +- const double d = product1(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // #TEST#: R1236 Rename function product1 +- const Rope r = product1(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } + // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1093.txt b/results/diffs/R1093.txt index 15364f4..f89b648 100644 --- a/results/diffs/R1093.txt +++ b/results/diffs/R1093.txt @@ -1,18 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c8f57a1 100644 +index 024d6a2..e3f6c02 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -234,11 +234,11 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs +@@ -222,11 +222,11 @@ T square8(T value) + // #TEST#: R1086 Rename template parameter T + // #TEST#: R1087 Rename template parameter U + // #TEST#: R1088 Rename use of T +-template ++template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Multiplicable + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -234,7 +234,7 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product1(T goink, U rhs) -> decltype(goink * rhs) ++auto product1(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with simple constraint on function + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs diff --git a/results/diffs/R1094.txt b/results/diffs/R1094.txt index fc798e5..7ed75a3 100644 --- a/results/diffs/R1094.txt +++ b/results/diffs/R1094.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..91fc0d6 100644 +index 024d6a2..c8f57a1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -234,11 +234,11 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product1(T lhs, U goink) -> decltype(lhs * goink) ++auto product1(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1095.txt b/results/diffs/R1095.txt index 15364f4..fa3f1f0 100644 --- a/results/diffs/R1095.txt +++ b/results/diffs/R1095.txt @@ -1,18 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c8f57a1 100644 +index 024d6a2..9f934ee 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -234,11 +234,11 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs +@@ -222,11 +222,11 @@ T square8(T value) + // #TEST#: R1086 Rename template parameter T + // #TEST#: R1087 Rename template parameter U + // #TEST#: R1088 Rename use of T +-template ++template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Multiplicable + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -234,7 +234,7 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product1(T goink, U rhs) -> decltype(goink * rhs) ++auto product1(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with simple constraint on function + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs diff --git a/results/diffs/R1096.txt b/results/diffs/R1096.txt index fc798e5..7ce41e2 100644 --- a/results/diffs/R1096.txt +++ b/results/diffs/R1096.txt @@ -3,14 +3,14 @@ index 024d6a2..91fc0d6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -234,11 +234,11 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs -auto product1(T lhs, U rhs) -> decltype(lhs * rhs) +auto product1(T lhs, U goink) -> decltype(lhs * goink) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1097.txt b/results/diffs/R1097.txt index 82f0e4d..7ed75a3 100644 --- a/results/diffs/R1097.txt +++ b/results/diffs/R1097.txt @@ -1,28 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..89446b1 100644 +index 024d6a2..c8f57a1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1097 Rename template parameter T - // #TEST#: R1098 Rename template parameter U - // #TEST#: R1099 Rename use of T --template -+template - // #TEST#: R1100 Rename function product2 - // #TEST#: R1101 Rename use of T - // #TEST#: R1102 Rename parameter lhs -@@ -253,11 +253,11 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs --auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Multiplicable +@@ -234,11 +234,11 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs +-auto product1(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product1(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs - + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1098.txt b/results/diffs/R1098.txt index b4cc111..7ce41e2 100644 --- a/results/diffs/R1098.txt +++ b/results/diffs/R1098.txt @@ -1,28 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..cce421b 100644 +index 024d6a2..91fc0d6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1097 Rename template parameter T - // #TEST#: R1098 Rename template parameter U - // #TEST#: R1099 Rename use of T --template -+template - // #TEST#: R1100 Rename function product2 - // #TEST#: R1101 Rename use of T - // #TEST#: R1102 Rename parameter lhs -@@ -253,11 +253,11 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs --auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Multiplicable +@@ -234,11 +234,11 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs +-auto product1(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product1(T lhs, U goink) -> decltype(lhs * goink) { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs - + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1099.txt b/results/diffs/R1099.txt index 82f0e4d..7ed75a3 100644 --- a/results/diffs/R1099.txt +++ b/results/diffs/R1099.txt @@ -1,28 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..89446b1 100644 +index 024d6a2..c8f57a1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1097 Rename template parameter T - // #TEST#: R1098 Rename template parameter U - // #TEST#: R1099 Rename use of T --template -+template - // #TEST#: R1100 Rename function product2 - // #TEST#: R1101 Rename use of T - // #TEST#: R1102 Rename parameter lhs -@@ -253,11 +253,11 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs --auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Multiplicable +@@ -234,11 +234,11 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs +-auto product1(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product1(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs - + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1100.txt b/results/diffs/R1100.txt index 102ac3f..7ce41e2 100644 --- a/results/diffs/R1100.txt +++ b/results/diffs/R1100.txt @@ -1,30 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..2ca8006 100644 +index 024d6a2..91fc0d6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs --auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -@@ -531,12 +531,12 @@ void f1() - // multiple template parameter function with simple constraint on function - { - // #TEST#: R1233 Rename function product2 -- REQUIRE_EQUAL(6.0, product2(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1234 Rename function product2 -- const double d = product2(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // #TEST#: R1235 Rename function product2 -- const Rope r = product2(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } - // multiple template parameter function with disjunctive constraint on template parameters - +@@ -234,11 +234,11 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs +-auto product1(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product1(T lhs, U goink) -> decltype(lhs * goink) + { + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1101.txt b/results/diffs/R1101.txt index 82f0e4d..b5fe929 100644 --- a/results/diffs/R1101.txt +++ b/results/diffs/R1101.txt @@ -3,26 +3,26 @@ index 024d6a2..89446b1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1097 Rename template parameter T - // #TEST#: R1098 Rename template parameter U - // #TEST#: R1099 Rename use of T + // #TEST#: R1101 Rename template parameter T + // #TEST#: R1102 Rename template parameter U + // #TEST#: R1103 Rename use of T -template +template - // #TEST#: R1100 Rename function product2 - // #TEST#: R1101 Rename use of T - // #TEST#: R1102 Rename parameter lhs + // #TEST#: R1104 Rename function product2 + // #TEST#: R1105 Rename use of T + // #TEST#: R1106 Rename parameter lhs @@ -253,11 +253,11 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs -auto product2(T lhs, U rhs) -> decltype(lhs * rhs) +auto product2(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U - requires Multiplicable + requires Multiplicable { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs diff --git a/results/diffs/R1102.txt b/results/diffs/R1102.txt index c82db71..6f55312 100644 --- a/results/diffs/R1102.txt +++ b/results/diffs/R1102.txt @@ -1,23 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ac23fa1 100644 +index 024d6a2..cce421b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs +@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1101 Rename template parameter T + // #TEST#: R1102 Rename template parameter U + // #TEST#: R1103 Rename use of T +-template ++template + // #TEST#: R1104 Rename function product2 + // #TEST#: R1105 Rename use of T + // #TEST#: R1106 Rename parameter lhs +@@ -253,11 +253,11 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs -auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -@@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product2(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Multiplicable { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with disjunctive constraint on template parameters + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs diff --git a/results/diffs/R1103.txt b/results/diffs/R1103.txt index b4cc111..b5fe929 100644 --- a/results/diffs/R1103.txt +++ b/results/diffs/R1103.txt @@ -1,28 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..cce421b 100644 +index 024d6a2..89446b1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1097 Rename template parameter T - // #TEST#: R1098 Rename template parameter U - // #TEST#: R1099 Rename use of T + // #TEST#: R1101 Rename template parameter T + // #TEST#: R1102 Rename template parameter U + // #TEST#: R1103 Rename use of T -template -+template - // #TEST#: R1100 Rename function product2 - // #TEST#: R1101 Rename use of T - // #TEST#: R1102 Rename parameter lhs ++template + // #TEST#: R1104 Rename function product2 + // #TEST#: R1105 Rename use of T + // #TEST#: R1106 Rename parameter lhs @@ -253,11 +253,11 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs -auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U ++auto product2(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U - requires Multiplicable -+ requires Multiplicable ++ requires Multiplicable { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs diff --git a/results/diffs/R1104.txt b/results/diffs/R1104.txt index c998bd7..5ffc0b2 100644 --- a/results/diffs/R1104.txt +++ b/results/diffs/R1104.txt @@ -1,23 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e3dbaac 100644 +index 024d6a2..2ca8006 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs -auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -@@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with disjunctive constraint on template parameters ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +@@ -531,12 +531,12 @@ void f1() + // multiple template parameter function with simple constraint on function + { + // #TEST#: R1237 Rename function product2 +- REQUIRE_EQUAL(6.0, product2(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1238 Rename function product2 +- const double d = product2(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // #TEST#: R1239 Rename function product2 +- const Rope r = product2(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } + // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1105.txt b/results/diffs/R1105.txt index c82db71..b5fe929 100644 --- a/results/diffs/R1105.txt +++ b/results/diffs/R1105.txt @@ -1,23 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ac23fa1 100644 +index 024d6a2..89446b1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs +@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1101 Rename template parameter T + // #TEST#: R1102 Rename template parameter U + // #TEST#: R1103 Rename use of T +-template ++template + // #TEST#: R1104 Rename function product2 + // #TEST#: R1105 Rename use of T + // #TEST#: R1106 Rename parameter lhs +@@ -253,11 +253,11 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs -auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -@@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product2(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Multiplicable { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with disjunctive constraint on template parameters + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs diff --git a/results/diffs/R1106.txt b/results/diffs/R1106.txt index c998bd7..4998804 100644 --- a/results/diffs/R1106.txt +++ b/results/diffs/R1106.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e3dbaac 100644 +index 024d6a2..ac23fa1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs -auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U ++auto product2(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U @@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1107.txt b/results/diffs/R1107.txt index eb89983..6f55312 100644 --- a/results/diffs/R1107.txt +++ b/results/diffs/R1107.txt @@ -1,194 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f44d43b 100644 +index 024d6a2..cce421b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U +@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1101 Rename template parameter T + // #TEST#: R1102 Rename template parameter U + // #TEST#: R1103 Rename use of T +-template ++template + // #TEST#: R1104 Rename function product2 + // #TEST#: R1105 Rename use of T + // #TEST#: R1106 Rename parameter lhs +@@ -253,11 +253,11 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs +-auto product2(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product2(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U - requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 ++ requires Multiplicable { - // #TEST#: R1508 Rename use of T + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs diff --git a/results/diffs/R1108.txt b/results/diffs/R1108.txt index 82f0e4d..1efa542 100644 --- a/results/diffs/R1108.txt +++ b/results/diffs/R1108.txt @@ -1,28 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..89446b1 100644 +index 024d6a2..e3dbaac 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1097 Rename template parameter T - // #TEST#: R1098 Rename template parameter U - // #TEST#: R1099 Rename use of T --template -+template - // #TEST#: R1100 Rename function product2 - // #TEST#: R1101 Rename use of T - // #TEST#: R1102 Rename parameter lhs -@@ -253,11 +253,11 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs +@@ -253,7 +253,7 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs -auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Multiplicable ++auto product2(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +@@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1109.txt b/results/diffs/R1109.txt index b4cc111..4998804 100644 --- a/results/diffs/R1109.txt +++ b/results/diffs/R1109.txt @@ -1,28 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..cce421b 100644 +index 024d6a2..ac23fa1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1097 Rename template parameter T - // #TEST#: R1098 Rename template parameter U - // #TEST#: R1099 Rename use of T --template -+template - // #TEST#: R1100 Rename function product2 - // #TEST#: R1101 Rename use of T - // #TEST#: R1102 Rename parameter lhs -@@ -253,11 +253,11 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs +@@ -253,7 +253,7 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs -auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Multiplicable ++auto product2(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +@@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1110.txt b/results/diffs/R1110.txt index c82db71..1efa542 100644 --- a/results/diffs/R1110.txt +++ b/results/diffs/R1110.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ac23fa1 100644 +index 024d6a2..e3dbaac 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs -auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U ++auto product2(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U @@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs - return lhs * rhs; -+ return goink * rhs; ++ return lhs * goink; } // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1111.txt b/results/diffs/R1111.txt index c998bd7..ea51ee5 100644 --- a/results/diffs/R1111.txt +++ b/results/diffs/R1111.txt @@ -1,23 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e3dbaac 100644 +index 024d6a2..f44d43b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs --auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product2(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -@@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with disjunctive constraint on template parameters +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1112.txt b/results/diffs/R1112.txt index d3792e5..b5fe929 100644 --- a/results/diffs/R1112.txt +++ b/results/diffs/R1112.txt @@ -1,29 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..0b5267e 100644 +index 024d6a2..89446b1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1112 Rename template parameter T - // #TEST#: R1113 Rename template parameter U - // #TEST#: R1114 Rename use of T +@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1101 Rename template parameter T + // #TEST#: R1102 Rename template parameter U + // #TEST#: R1103 Rename use of T -template +template - // #TEST#: R1115 Rename first use of T - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs --auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1104 Rename function product2 + // #TEST#: R1105 Rename use of T + // #TEST#: R1106 Rename parameter lhs +@@ -253,11 +253,11 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs +-auto product2(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product2(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Multiplicable { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs diff --git a/results/diffs/R1113.txt b/results/diffs/R1113.txt index f12710d..6f55312 100644 --- a/results/diffs/R1113.txt +++ b/results/diffs/R1113.txt @@ -1,29 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..69e6a8a 100644 +index 024d6a2..cce421b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1112 Rename template parameter T - // #TEST#: R1113 Rename template parameter U - // #TEST#: R1114 Rename use of T +@@ -245,7 +245,7 @@ auto product1(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1101 Rename template parameter T + // #TEST#: R1102 Rename template parameter U + // #TEST#: R1103 Rename use of T -template +template - // #TEST#: R1115 Rename first use of T - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs --auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1104 Rename function product2 + // #TEST#: R1105 Rename use of T + // #TEST#: R1106 Rename parameter lhs +@@ -253,11 +253,11 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs +-auto product2(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product2(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Multiplicable { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs diff --git a/results/diffs/R1114.txt b/results/diffs/R1114.txt index d3792e5..4998804 100644 --- a/results/diffs/R1114.txt +++ b/results/diffs/R1114.txt @@ -1,29 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..0b5267e 100644 +index 024d6a2..ac23fa1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1112 Rename template parameter T - // #TEST#: R1113 Rename template parameter U - // #TEST#: R1114 Rename use of T --template -+template - // #TEST#: R1115 Rename first use of T - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs --auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) +@@ -253,7 +253,7 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs +-auto product2(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product2(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +@@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1115.txt b/results/diffs/R1115.txt index d3792e5..1efa542 100644 --- a/results/diffs/R1115.txt +++ b/results/diffs/R1115.txt @@ -1,29 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..0b5267e 100644 +index 024d6a2..e3dbaac 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1112 Rename template parameter T - // #TEST#: R1113 Rename template parameter U - // #TEST#: R1114 Rename use of T --template -+template - // #TEST#: R1115 Rename first use of T - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs --auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) +@@ -253,7 +253,7 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs +-auto product2(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product2(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +@@ -261,7 +261,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1116.txt b/results/diffs/R1116.txt index eb89983..a530b57 100644 --- a/results/diffs/R1116.txt +++ b/results/diffs/R1116.txt @@ -1,194 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f44d43b 100644 +index 024d6a2..0b5267e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U +@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1116 Rename template parameter T + // #TEST#: R1117 Rename template parameter U + // #TEST#: R1118 Rename use of T +-template ++template + // #TEST#: R1119 Rename first use of T + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T ++ requires std::is_arithmetic_v || Multiplicable + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -281,7 +281,7 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs +-auto product3(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) + { + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs diff --git a/results/diffs/R1117.txt b/results/diffs/R1117.txt index d3792e5..0095e1f 100644 --- a/results/diffs/R1117.txt +++ b/results/diffs/R1117.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..0b5267e 100644 +index 024d6a2..69e6a8a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1112 Rename template parameter T - // #TEST#: R1113 Rename template parameter U - // #TEST#: R1114 Rename use of T + // #TEST#: R1116 Rename template parameter T + // #TEST#: R1117 Rename template parameter U + // #TEST#: R1118 Rename use of T -template -+template - // #TEST#: R1115 Rename first use of T - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U ++template + // #TEST#: R1119 Rename first use of T + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs ++ requires std::is_arithmetic_v || Multiplicable + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs @@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) ++auto product3(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs diff --git a/results/diffs/R1118.txt b/results/diffs/R1118.txt index f12710d..a530b57 100644 --- a/results/diffs/R1118.txt +++ b/results/diffs/R1118.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..69e6a8a 100644 +index 024d6a2..0b5267e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1112 Rename template parameter T - // #TEST#: R1113 Rename template parameter U - // #TEST#: R1114 Rename use of T + // #TEST#: R1116 Rename template parameter T + // #TEST#: R1117 Rename template parameter U + // #TEST#: R1118 Rename use of T -template -+template - // #TEST#: R1115 Rename first use of T - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U ++template + // #TEST#: R1119 Rename first use of T + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs ++ requires std::is_arithmetic_v || Multiplicable + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs @@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(T lhs, Goink rhs) -> decltype(lhs * rhs) ++auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs diff --git a/results/diffs/R1119.txt b/results/diffs/R1119.txt index ff1c5ff..a530b57 100644 --- a/results/diffs/R1119.txt +++ b/results/diffs/R1119.txt @@ -1,30 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..96f77bd 100644 +index 024d6a2..0b5267e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp +@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1116 Rename template parameter T + // #TEST#: R1117 Rename template parameter U + // #TEST#: R1118 Rename use of T +-template ++template + // #TEST#: R1119 Rename first use of T + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs @@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs -@@ -542,12 +542,12 @@ void f1() - // multiple template parameter function with disjunctive constraint on template parameters - { - // #TEST#: R1236 Rename function product3 -- REQUIRE_EQUAL(6.0, product3(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1237 Rename function product3 -- const double d = product3(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // #TEST#: R1238 Rename function product3 -- const Rope r = product3(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } - // multiple template parameter function with disjunctive constraint on function + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs diff --git a/results/diffs/R1120.txt b/results/diffs/R1120.txt index d3792e5..ea51ee5 100644 --- a/results/diffs/R1120.txt +++ b/results/diffs/R1120.txt @@ -1,29 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..0b5267e 100644 +index 024d6a2..f44d43b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1112 Rename template parameter T - // #TEST#: R1113 Rename template parameter U - // #TEST#: R1114 Rename use of T --template -+template - // #TEST#: R1115 Rename first use of T - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs --auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1121.txt b/results/diffs/R1121.txt index f8ba4d2..a530b57 100644 --- a/results/diffs/R1121.txt +++ b/results/diffs/R1121.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..50a524b 100644 +index 024d6a2..0b5267e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -281,11 +281,11 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs +@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1116 Rename template parameter T + // #TEST#: R1117 Rename template parameter U + // #TEST#: R1118 Rename use of T +-template ++template + // #TEST#: R1119 Rename first use of T + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -281,7 +281,7 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(T goink, U rhs) -> decltype(goink * rhs) ++auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with disjunctive constraint on function + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs diff --git a/results/diffs/R1122.txt b/results/diffs/R1122.txt index f12710d..0095e1f 100644 --- a/results/diffs/R1122.txt +++ b/results/diffs/R1122.txt @@ -3,27 +3,27 @@ index 024d6a2..69e6a8a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1112 Rename template parameter T - // #TEST#: R1113 Rename template parameter U - // #TEST#: R1114 Rename use of T + // #TEST#: R1116 Rename template parameter T + // #TEST#: R1117 Rename template parameter U + // #TEST#: R1118 Rename use of T -template +template - // #TEST#: R1115 Rename first use of T - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U + // #TEST#: R1119 Rename first use of T + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U - requires std::is_arithmetic_v || Multiplicable + requires std::is_arithmetic_v || Multiplicable - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs @@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) +auto product3(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs diff --git a/results/diffs/R1123.txt b/results/diffs/R1123.txt index c67a660..097ce73 100644 --- a/results/diffs/R1123.txt +++ b/results/diffs/R1123.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..6ae459c 100644 +index 024d6a2..96f77bd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -281,11 +281,11 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs +@@ -281,7 +281,7 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(T lhs, U goink) -> decltype(lhs * goink) ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with disjunctive constraint on function + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs +@@ -542,12 +542,12 @@ void f1() + // multiple template parameter function with disjunctive constraint on template parameters + { + // #TEST#: R1240 Rename function product3 +- REQUIRE_EQUAL(6.0, product3(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1241 Rename function product3 +- const double d = product3(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // #TEST#: R1242 Rename function product3 +- const Rope r = product3(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } + // multiple template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1124.txt b/results/diffs/R1124.txt index f8ba4d2..a530b57 100644 --- a/results/diffs/R1124.txt +++ b/results/diffs/R1124.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..50a524b 100644 +index 024d6a2..0b5267e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -281,11 +281,11 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs +@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1116 Rename template parameter T + // #TEST#: R1117 Rename template parameter U + // #TEST#: R1118 Rename use of T +-template ++template + // #TEST#: R1119 Rename first use of T + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -281,7 +281,7 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(T goink, U rhs) -> decltype(goink * rhs) ++auto product3(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with disjunctive constraint on function + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs diff --git a/results/diffs/R1125.txt b/results/diffs/R1125.txt index c67a660..b56b15c 100644 --- a/results/diffs/R1125.txt +++ b/results/diffs/R1125.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..6ae459c 100644 +index 024d6a2..50a524b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -281,11 +281,11 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(T lhs, U goink) -> decltype(lhs * goink) ++auto product3(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } // multiple template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1126.txt b/results/diffs/R1126.txt index f8ba4d2..0095e1f 100644 --- a/results/diffs/R1126.txt +++ b/results/diffs/R1126.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..50a524b 100644 +index 024d6a2..69e6a8a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -281,11 +281,11 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs +@@ -268,12 +268,12 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1116 Rename template parameter T + // #TEST#: R1117 Rename template parameter U + // #TEST#: R1118 Rename use of T +-template ++template + // #TEST#: R1119 Rename first use of T + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -281,7 +281,7 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product3(T goink, U rhs) -> decltype(goink * rhs) ++auto product3(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with disjunctive constraint on function + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs diff --git a/results/diffs/R1127.txt b/results/diffs/R1127.txt index c67a660..ae8a279 100644 --- a/results/diffs/R1127.txt +++ b/results/diffs/R1127.txt @@ -3,14 +3,14 @@ index 024d6a2..6ae459c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -281,11 +281,11 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs -auto product3(T lhs, U rhs) -> decltype(lhs * rhs) +auto product3(T lhs, U goink) -> decltype(lhs * goink) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1128.txt b/results/diffs/R1128.txt index b819302..b56b15c 100644 --- a/results/diffs/R1128.txt +++ b/results/diffs/R1128.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8adfc35 100644 +index 024d6a2..50a524b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1128 Rename template parameter T - // #TEST#: R1129 Rename template parameter U - // #TEST#: R1130 Rename use of T --template -+template - // #TEST#: R1131 Rename function product4 - // #TEST#: R1132 Rename use of T - // #TEST#: R1133 Rename parameter lhs -@@ -300,12 +300,12 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs --auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable +@@ -281,11 +281,11 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs +-auto product3(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product3(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1129.txt b/results/diffs/R1129.txt index e2c79ad..ae8a279 100644 --- a/results/diffs/R1129.txt +++ b/results/diffs/R1129.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..566e349 100644 +index 024d6a2..6ae459c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1128 Rename template parameter T - // #TEST#: R1129 Rename template parameter U - // #TEST#: R1130 Rename use of T --template -+template - // #TEST#: R1131 Rename function product4 - // #TEST#: R1132 Rename use of T - // #TEST#: R1133 Rename parameter lhs -@@ -300,12 +300,12 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs --auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable +@@ -281,11 +281,11 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs +-auto product3(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product3(T lhs, U goink) -> decltype(lhs * goink) { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1130.txt b/results/diffs/R1130.txt index b819302..b56b15c 100644 --- a/results/diffs/R1130.txt +++ b/results/diffs/R1130.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8adfc35 100644 +index 024d6a2..50a524b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1128 Rename template parameter T - // #TEST#: R1129 Rename template parameter U - // #TEST#: R1130 Rename use of T --template -+template - // #TEST#: R1131 Rename function product4 - // #TEST#: R1132 Rename use of T - // #TEST#: R1133 Rename parameter lhs -@@ -300,12 +300,12 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs --auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable +@@ -281,11 +281,11 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs +-auto product3(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product3(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1131.txt b/results/diffs/R1131.txt index a13a67f..ae8a279 100644 --- a/results/diffs/R1131.txt +++ b/results/diffs/R1131.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..a5fd447 100644 +index 024d6a2..6ae459c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs --auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T -@@ -553,11 +553,11 @@ void f1() - // multiple template parameter function with disjunctive constraint on function - { - // #TEST#: R1239 Rename function product4 -- REQUIRE_EQUAL(6.0, product4(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1240 Rename function product4 -- const double d = product4(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); -- const Rope r = product4(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } - // multiple template parameter function with conjunctive constraint on template parameters +@@ -281,11 +281,11 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs +-auto product3(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product3(T lhs, U goink) -> decltype(lhs * goink) + { + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1132.txt b/results/diffs/R1132.txt index b819302..338dd7b 100644 --- a/results/diffs/R1132.txt +++ b/results/diffs/R1132.txt @@ -3,27 +3,27 @@ index 024d6a2..8adfc35 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1128 Rename template parameter T - // #TEST#: R1129 Rename template parameter U - // #TEST#: R1130 Rename use of T + // #TEST#: R1132 Rename template parameter T + // #TEST#: R1133 Rename template parameter U + // #TEST#: R1134 Rename use of T -template +template - // #TEST#: R1131 Rename function product4 - // #TEST#: R1132 Rename use of T - // #TEST#: R1133 Rename parameter lhs + // #TEST#: R1135 Rename function product4 + // #TEST#: R1136 Rename use of T + // #TEST#: R1137 Rename parameter lhs @@ -300,12 +300,12 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) +auto product4(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U - requires std::is_arithmetic_v || Multiplicable + requires std::is_arithmetic_v || Multiplicable { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs diff --git a/results/diffs/R1133.txt b/results/diffs/R1133.txt index 9e7f945..b445867 100644 --- a/results/diffs/R1133.txt +++ b/results/diffs/R1133.txt @@ -1,23 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..891a756 100644 +index 024d6a2..566e349 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs +@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1132 Rename template parameter T + // #TEST#: R1133 Rename template parameter U + // #TEST#: R1134 Rename use of T +-template ++template + // #TEST#: R1135 Rename function product4 + // #TEST#: R1136 Rename use of T + // #TEST#: R1137 Rename parameter lhs +@@ -300,12 +300,12 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T -@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product4(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with conjunctive constraint on template parameters + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs diff --git a/results/diffs/R1134.txt b/results/diffs/R1134.txt index e2c79ad..338dd7b 100644 --- a/results/diffs/R1134.txt +++ b/results/diffs/R1134.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..566e349 100644 +index 024d6a2..8adfc35 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1128 Rename template parameter T - // #TEST#: R1129 Rename template parameter U - // #TEST#: R1130 Rename use of T + // #TEST#: R1132 Rename template parameter T + // #TEST#: R1133 Rename template parameter U + // #TEST#: R1134 Rename use of T -template -+template - // #TEST#: R1131 Rename function product4 - // #TEST#: R1132 Rename use of T - // #TEST#: R1133 Rename parameter lhs ++template + // #TEST#: R1135 Rename function product4 + // #TEST#: R1136 Rename use of T + // #TEST#: R1137 Rename parameter lhs @@ -300,12 +300,12 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U ++auto product4(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs diff --git a/results/diffs/R1135.txt b/results/diffs/R1135.txt index c26d349..a956a2c 100644 --- a/results/diffs/R1135.txt +++ b/results/diffs/R1135.txt @@ -1,23 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8443b6f 100644 +index 024d6a2..a5fd447 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T -@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with conjunctive constraint on template parameters ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T +@@ -553,11 +553,11 @@ void f1() + // multiple template parameter function with disjunctive constraint on function + { + // #TEST#: R1243 Rename function product4 +- REQUIRE_EQUAL(6.0, product4(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1244 Rename function product4 +- const double d = product4(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); +- const Rope r = product4(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } + // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1136.txt b/results/diffs/R1136.txt index 9e7f945..338dd7b 100644 --- a/results/diffs/R1136.txt +++ b/results/diffs/R1136.txt @@ -1,23 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..891a756 100644 +index 024d6a2..8adfc35 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs +@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1132 Rename template parameter T + // #TEST#: R1133 Rename template parameter U + // #TEST#: R1134 Rename use of T +-template ++template + // #TEST#: R1135 Rename function product4 + // #TEST#: R1136 Rename use of T + // #TEST#: R1137 Rename parameter lhs +@@ -300,12 +300,12 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T -@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product4(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with conjunctive constraint on template parameters + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs diff --git a/results/diffs/R1137.txt b/results/diffs/R1137.txt index c26d349..2e0dfbe 100644 --- a/results/diffs/R1137.txt +++ b/results/diffs/R1137.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8443b6f 100644 +index 024d6a2..891a756 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T ++auto product4(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T @@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1138.txt b/results/diffs/R1138.txt index b819302..b445867 100644 --- a/results/diffs/R1138.txt +++ b/results/diffs/R1138.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8adfc35 100644 +index 024d6a2..566e349 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1128 Rename template parameter T - // #TEST#: R1129 Rename template parameter U - // #TEST#: R1130 Rename use of T + // #TEST#: R1132 Rename template parameter T + // #TEST#: R1133 Rename template parameter U + // #TEST#: R1134 Rename use of T -template -+template - // #TEST#: R1131 Rename function product4 - // #TEST#: R1132 Rename use of T - // #TEST#: R1133 Rename parameter lhs ++template + // #TEST#: R1135 Rename function product4 + // #TEST#: R1136 Rename use of T + // #TEST#: R1137 Rename parameter lhs @@ -300,12 +300,12 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U ++auto product4(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs diff --git a/results/diffs/R1139.txt b/results/diffs/R1139.txt index eb89983..d04bd53 100644 --- a/results/diffs/R1139.txt +++ b/results/diffs/R1139.txt @@ -1,194 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f44d43b 100644 +index 024d6a2..8443b6f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -300,7 +300,7 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs +-auto product4(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product4(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T +@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1140.txt b/results/diffs/R1140.txt index b819302..2e0dfbe 100644 --- a/results/diffs/R1140.txt +++ b/results/diffs/R1140.txt @@ -1,29 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8adfc35 100644 +index 024d6a2..891a756 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1128 Rename template parameter T - // #TEST#: R1129 Rename template parameter U - // #TEST#: R1130 Rename use of T --template -+template - // #TEST#: R1131 Rename function product4 - // #TEST#: R1132 Rename use of T - // #TEST#: R1133 Rename parameter lhs -@@ -300,12 +300,12 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs +@@ -300,7 +300,7 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++auto product4(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T +@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1141.txt b/results/diffs/R1141.txt index e2c79ad..d04bd53 100644 --- a/results/diffs/R1141.txt +++ b/results/diffs/R1141.txt @@ -1,29 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..566e349 100644 +index 024d6a2..8443b6f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1128 Rename template parameter T - // #TEST#: R1129 Rename template parameter U - // #TEST#: R1130 Rename use of T --template -+template - // #TEST#: R1131 Rename function product4 - // #TEST#: R1132 Rename use of T - // #TEST#: R1133 Rename parameter lhs -@@ -300,12 +300,12 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs +@@ -300,7 +300,7 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++auto product4(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T +@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1142.txt b/results/diffs/R1142.txt index 9e7f945..338dd7b 100644 --- a/results/diffs/R1142.txt +++ b/results/diffs/R1142.txt @@ -1,23 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..891a756 100644 +index 024d6a2..8adfc35 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs +@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1132 Rename template parameter T + // #TEST#: R1133 Rename template parameter U + // #TEST#: R1134 Rename use of T +-template ++template + // #TEST#: R1135 Rename function product4 + // #TEST#: R1136 Rename use of T + // #TEST#: R1137 Rename parameter lhs +@@ -300,12 +300,12 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs -auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T -@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product4(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with conjunctive constraint on template parameters + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs diff --git a/results/diffs/R1143.txt b/results/diffs/R1143.txt index c26d349..ea51ee5 100644 --- a/results/diffs/R1143.txt +++ b/results/diffs/R1143.txt @@ -1,23 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8443b6f 100644 +index 024d6a2..f44d43b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs --auto product4(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product4(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T -@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with conjunctive constraint on template parameters +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1144.txt b/results/diffs/R1144.txt index d043c04..338dd7b 100644 --- a/results/diffs/R1144.txt +++ b/results/diffs/R1144.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e943a8a 100644 +index 024d6a2..8adfc35 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1144 Rename template parameter T - // #TEST#: R1145 Rename template parameter U - // #TEST#: R1146 Rename use of T +@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1132 Rename template parameter T + // #TEST#: R1133 Rename template parameter U + // #TEST#: R1134 Rename use of T -template +template - // #TEST#: R1147 Rename first use of T - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs --auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1135 Rename function product4 + // #TEST#: R1136 Rename use of T + // #TEST#: R1137 Rename parameter lhs +@@ -300,12 +300,12 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs +-auto product4(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product4(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs diff --git a/results/diffs/R1145.txt b/results/diffs/R1145.txt index 495a7d1..b445867 100644 --- a/results/diffs/R1145.txt +++ b/results/diffs/R1145.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..40817ff 100644 +index 024d6a2..566e349 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1144 Rename template parameter T - // #TEST#: R1145 Rename template parameter U - // #TEST#: R1146 Rename use of T +@@ -292,7 +292,7 @@ auto product3(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1132 Rename template parameter T + // #TEST#: R1133 Rename template parameter U + // #TEST#: R1134 Rename use of T -template +template - // #TEST#: R1147 Rename first use of T - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs --auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1135 Rename function product4 + // #TEST#: R1136 Rename use of T + // #TEST#: R1137 Rename parameter lhs +@@ -300,12 +300,12 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs +-auto product4(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product4(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs diff --git a/results/diffs/R1146.txt b/results/diffs/R1146.txt index d043c04..2e0dfbe 100644 --- a/results/diffs/R1146.txt +++ b/results/diffs/R1146.txt @@ -1,29 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e943a8a 100644 +index 024d6a2..891a756 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1144 Rename template parameter T - // #TEST#: R1145 Rename template parameter U - // #TEST#: R1146 Rename use of T --template -+template - // #TEST#: R1147 Rename first use of T - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs --auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) +@@ -300,7 +300,7 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs +-auto product4(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product4(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T +@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1147.txt b/results/diffs/R1147.txt index d043c04..d04bd53 100644 --- a/results/diffs/R1147.txt +++ b/results/diffs/R1147.txt @@ -1,29 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e943a8a 100644 +index 024d6a2..8443b6f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1144 Rename template parameter T - // #TEST#: R1145 Rename template parameter U - // #TEST#: R1146 Rename use of T --template -+template - // #TEST#: R1147 Rename first use of T - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs --auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) +@@ -300,7 +300,7 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs +-auto product4(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product4(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T +@@ -309,7 +309,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1148.txt b/results/diffs/R1148.txt index eb89983..92f1dcb 100644 --- a/results/diffs/R1148.txt +++ b/results/diffs/R1148.txt @@ -1,194 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f44d43b 100644 +index 024d6a2..e943a8a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U +@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1148 Rename template parameter T + // #TEST#: R1149 Rename template parameter U + // #TEST#: R1150 Rename use of T +-template ++template + // #TEST#: R1151 Rename first use of T + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T ++ requires std::is_arithmetic_v && Multiplicable + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -329,7 +329,7 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs +-auto product5(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) + { + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs diff --git a/results/diffs/R1149.txt b/results/diffs/R1149.txt index d043c04..eabff92 100644 --- a/results/diffs/R1149.txt +++ b/results/diffs/R1149.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e943a8a 100644 +index 024d6a2..40817ff 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1144 Rename template parameter T - // #TEST#: R1145 Rename template parameter U - // #TEST#: R1146 Rename use of T + // #TEST#: R1148 Rename template parameter T + // #TEST#: R1149 Rename template parameter U + // #TEST#: R1150 Rename use of T -template -+template - // #TEST#: R1147 Rename first use of T - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U ++template + // #TEST#: R1151 Rename first use of T + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs ++ requires std::is_arithmetic_v && Multiplicable + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs @@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) ++auto product5(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs diff --git a/results/diffs/R1150.txt b/results/diffs/R1150.txt index 495a7d1..92f1dcb 100644 --- a/results/diffs/R1150.txt +++ b/results/diffs/R1150.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..40817ff 100644 +index 024d6a2..e943a8a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1144 Rename template parameter T - // #TEST#: R1145 Rename template parameter U - // #TEST#: R1146 Rename use of T + // #TEST#: R1148 Rename template parameter T + // #TEST#: R1149 Rename template parameter U + // #TEST#: R1150 Rename use of T -template -+template - // #TEST#: R1147 Rename first use of T - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U ++template + // #TEST#: R1151 Rename first use of T + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs ++ requires std::is_arithmetic_v && Multiplicable + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs @@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(T lhs, Goink rhs) -> decltype(lhs * rhs) ++auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs diff --git a/results/diffs/R1151.txt b/results/diffs/R1151.txt index 47c5f35..92f1dcb 100644 --- a/results/diffs/R1151.txt +++ b/results/diffs/R1151.txt @@ -1,26 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..100c088 100644 +index 024d6a2..e943a8a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp +@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1148 Rename template parameter T + // #TEST#: R1149 Rename template parameter U + // #TEST#: R1150 Rename use of T +-template ++template + // #TEST#: R1151 Rename first use of T + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs @@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs -@@ -563,9 +563,9 @@ void f1() - // multiple template parameter function with conjunctive constraint on template parameters - { - // #TEST#: R1242 Rename function product5 -- REQUIRE_EQUAL(6.0, product5(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1243 Rename function product5 -- const double d = product5(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // Rope is not std::is_arithmetic - } + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs diff --git a/results/diffs/R1152.txt b/results/diffs/R1152.txt index d043c04..ea51ee5 100644 --- a/results/diffs/R1152.txt +++ b/results/diffs/R1152.txt @@ -1,29 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e943a8a 100644 +index 024d6a2..f44d43b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1144 Rename template parameter T - // #TEST#: R1145 Rename template parameter U - // #TEST#: R1146 Rename use of T --template -+template - // #TEST#: R1147 Rename first use of T - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs --auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1153.txt b/results/diffs/R1153.txt index fee0deb..92f1dcb 100644 --- a/results/diffs/R1153.txt +++ b/results/diffs/R1153.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..2bb58dd 100644 +index 024d6a2..e943a8a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -329,11 +329,11 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs +@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1148 Rename template parameter T + // #TEST#: R1149 Rename template parameter U + // #TEST#: R1150 Rename use of T +-template ++template + // #TEST#: R1151 Rename first use of T + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -329,7 +329,7 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(T goink, U rhs) -> decltype(goink * rhs) ++auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with conjunctive constraint on function + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs diff --git a/results/diffs/R1154.txt b/results/diffs/R1154.txt index 495a7d1..eabff92 100644 --- a/results/diffs/R1154.txt +++ b/results/diffs/R1154.txt @@ -3,27 +3,27 @@ index 024d6a2..40817ff 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1144 Rename template parameter T - // #TEST#: R1145 Rename template parameter U - // #TEST#: R1146 Rename use of T + // #TEST#: R1148 Rename template parameter T + // #TEST#: R1149 Rename template parameter U + // #TEST#: R1150 Rename use of T -template +template - // #TEST#: R1147 Rename first use of T - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U + // #TEST#: R1151 Rename first use of T + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U - requires std::is_arithmetic_v && Multiplicable + requires std::is_arithmetic_v && Multiplicable - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs @@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) +auto product5(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs diff --git a/results/diffs/R1155.txt b/results/diffs/R1155.txt index db7f010..9f4bb63 100644 --- a/results/diffs/R1155.txt +++ b/results/diffs/R1155.txt @@ -1,19 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d190592 100644 +index 024d6a2..100c088 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -329,11 +329,11 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs +@@ -329,7 +329,7 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(T lhs, U goink) -> decltype(lhs * goink) ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with conjunctive constraint on function + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs +@@ -563,9 +563,9 @@ void f1() + // multiple template parameter function with conjunctive constraint on template parameters + { + // #TEST#: R1246 Rename function product5 +- REQUIRE_EQUAL(6.0, product5(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1247 Rename function product5 +- const double d = product5(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // Rope is not std::is_arithmetic + } diff --git a/results/diffs/R1156.txt b/results/diffs/R1156.txt index fee0deb..92f1dcb 100644 --- a/results/diffs/R1156.txt +++ b/results/diffs/R1156.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..2bb58dd 100644 +index 024d6a2..e943a8a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -329,11 +329,11 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs +@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1148 Rename template parameter T + // #TEST#: R1149 Rename template parameter U + // #TEST#: R1150 Rename use of T +-template ++template + // #TEST#: R1151 Rename first use of T + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -329,7 +329,7 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(T goink, U rhs) -> decltype(goink * rhs) ++auto product5(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with conjunctive constraint on function + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs diff --git a/results/diffs/R1157.txt b/results/diffs/R1157.txt index db7f010..3e70c99 100644 --- a/results/diffs/R1157.txt +++ b/results/diffs/R1157.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d190592 100644 +index 024d6a2..2bb58dd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -329,11 +329,11 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(T lhs, U goink) -> decltype(lhs * goink) ++auto product5(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } // multiple template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1158.txt b/results/diffs/R1158.txt index fee0deb..eabff92 100644 --- a/results/diffs/R1158.txt +++ b/results/diffs/R1158.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..2bb58dd 100644 +index 024d6a2..40817ff 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -329,11 +329,11 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs +@@ -316,12 +316,12 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1148 Rename template parameter T + // #TEST#: R1149 Rename template parameter U + // #TEST#: R1150 Rename use of T +-template ++template + // #TEST#: R1151 Rename first use of T + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -329,7 +329,7 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product5(T goink, U rhs) -> decltype(goink * rhs) ++auto product5(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with conjunctive constraint on function + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs diff --git a/results/diffs/R1159.txt b/results/diffs/R1159.txt index db7f010..c528b49 100644 --- a/results/diffs/R1159.txt +++ b/results/diffs/R1159.txt @@ -3,14 +3,14 @@ index 024d6a2..d190592 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -329,11 +329,11 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs -auto product5(T lhs, U rhs) -> decltype(lhs * rhs) +auto product5(T lhs, U goink) -> decltype(lhs * goink) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1160.txt b/results/diffs/R1160.txt index 6eb0bd5..3e70c99 100644 --- a/results/diffs/R1160.txt +++ b/results/diffs/R1160.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e8a660c 100644 +index 024d6a2..2bb58dd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1160 Rename template parameter T - // #TEST#: R1161 Rename template parameter U - // #TEST#: R1162 Rename use of T --template -+template - // #TEST#: R1163 Rename function product6 - // #TEST#: R1164 Rename use of T - // #TEST#: R1165 Rename parameter lhs -@@ -348,12 +348,12 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs --auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable +@@ -329,11 +329,11 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs +-auto product5(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product5(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1161.txt b/results/diffs/R1161.txt index d5258f3..c528b49 100644 --- a/results/diffs/R1161.txt +++ b/results/diffs/R1161.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..6b4c4a2 100644 +index 024d6a2..d190592 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1160 Rename template parameter T - // #TEST#: R1161 Rename template parameter U - // #TEST#: R1162 Rename use of T --template -+template - // #TEST#: R1163 Rename function product6 - // #TEST#: R1164 Rename use of T - // #TEST#: R1165 Rename parameter lhs -@@ -348,12 +348,12 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs --auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable +@@ -329,11 +329,11 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs +-auto product5(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product5(T lhs, U goink) -> decltype(lhs * goink) { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1162.txt b/results/diffs/R1162.txt index 6eb0bd5..3e70c99 100644 --- a/results/diffs/R1162.txt +++ b/results/diffs/R1162.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e8a660c 100644 +index 024d6a2..2bb58dd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1160 Rename template parameter T - // #TEST#: R1161 Rename template parameter U - // #TEST#: R1162 Rename use of T --template -+template - // #TEST#: R1163 Rename function product6 - // #TEST#: R1164 Rename use of T - // #TEST#: R1165 Rename parameter lhs -@@ -348,12 +348,12 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs --auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable +@@ -329,11 +329,11 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs +-auto product5(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product5(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1163.txt b/results/diffs/R1163.txt index 7d2e1af..c528b49 100644 --- a/results/diffs/R1163.txt +++ b/results/diffs/R1163.txt @@ -1,26 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8497913 100644 +index 024d6a2..d190592 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -348,7 +348,7 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs --auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T -@@ -572,9 +572,9 @@ void f1() - // multiple template parameter function with conjunctive constraint on function - { - // #TEST#: R1244 Rename function product6 -- REQUIRE_EQUAL(6.0, product6(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1245 Rename function product6 -- const double d = product6(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // Rope is not std::is_arithmetic - } +@@ -329,11 +329,11 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs +-auto product5(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product5(T lhs, U goink) -> decltype(lhs * goink) + { + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1164.txt b/results/diffs/R1164.txt index 6eb0bd5..25c3ce8 100644 --- a/results/diffs/R1164.txt +++ b/results/diffs/R1164.txt @@ -3,27 +3,27 @@ index 024d6a2..e8a660c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1160 Rename template parameter T - // #TEST#: R1161 Rename template parameter U - // #TEST#: R1162 Rename use of T + // #TEST#: R1164 Rename template parameter T + // #TEST#: R1165 Rename template parameter U + // #TEST#: R1166 Rename use of T -template +template - // #TEST#: R1163 Rename function product6 - // #TEST#: R1164 Rename use of T - // #TEST#: R1165 Rename parameter lhs + // #TEST#: R1167 Rename function product6 + // #TEST#: R1168 Rename use of T + // #TEST#: R1169 Rename parameter lhs @@ -348,12 +348,12 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) +auto product6(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U - requires std::is_arithmetic_v && Multiplicable + requires std::is_arithmetic_v && Multiplicable { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs diff --git a/results/diffs/R1165.txt b/results/diffs/R1165.txt index 40e5db1..1951a2a 100644 --- a/results/diffs/R1165.txt +++ b/results/diffs/R1165.txt @@ -1,23 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..bf6d43c 100644 +index 024d6a2..6b4c4a2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -348,7 +348,7 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs +@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1164 Rename template parameter T + // #TEST#: R1165 Rename template parameter U + // #TEST#: R1166 Rename use of T +-template ++template + // #TEST#: R1167 Rename function product6 + // #TEST#: R1168 Rename use of T + // #TEST#: R1169 Rename parameter lhs +@@ -348,12 +348,12 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T -@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product6(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with combined constraint on template parameters + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs diff --git a/results/diffs/R1166.txt b/results/diffs/R1166.txt index d5258f3..25c3ce8 100644 --- a/results/diffs/R1166.txt +++ b/results/diffs/R1166.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..6b4c4a2 100644 +index 024d6a2..e8a660c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1160 Rename template parameter T - // #TEST#: R1161 Rename template parameter U - // #TEST#: R1162 Rename use of T + // #TEST#: R1164 Rename template parameter T + // #TEST#: R1165 Rename template parameter U + // #TEST#: R1166 Rename use of T -template -+template - // #TEST#: R1163 Rename function product6 - // #TEST#: R1164 Rename use of T - // #TEST#: R1165 Rename parameter lhs ++template + // #TEST#: R1167 Rename function product6 + // #TEST#: R1168 Rename use of T + // #TEST#: R1169 Rename parameter lhs @@ -348,12 +348,12 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U ++auto product6(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs diff --git a/results/diffs/R1167.txt b/results/diffs/R1167.txt index 29b1a3d..8ef6a04 100644 --- a/results/diffs/R1167.txt +++ b/results/diffs/R1167.txt @@ -1,23 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..42a9da9 100644 +index 024d6a2..8497913 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -348,7 +348,7 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T -@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with combined constraint on template parameters ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T +@@ -572,9 +572,9 @@ void f1() + // multiple template parameter function with conjunctive constraint on function + { + // #TEST#: R1248 Rename function product6 +- REQUIRE_EQUAL(6.0, product6(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1249 Rename function product6 +- const double d = product6(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // Rope is not std::is_arithmetic + } diff --git a/results/diffs/R1168.txt b/results/diffs/R1168.txt index 40e5db1..25c3ce8 100644 --- a/results/diffs/R1168.txt +++ b/results/diffs/R1168.txt @@ -1,23 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..bf6d43c 100644 +index 024d6a2..e8a660c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -348,7 +348,7 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs +@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1164 Rename template parameter T + // #TEST#: R1165 Rename template parameter U + // #TEST#: R1166 Rename use of T +-template ++template + // #TEST#: R1167 Rename function product6 + // #TEST#: R1168 Rename use of T + // #TEST#: R1169 Rename parameter lhs +@@ -348,12 +348,12 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T -@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product6(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with combined constraint on template parameters + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs diff --git a/results/diffs/R1169.txt b/results/diffs/R1169.txt index 29b1a3d..c8f294c 100644 --- a/results/diffs/R1169.txt +++ b/results/diffs/R1169.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..42a9da9 100644 +index 024d6a2..bf6d43c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -348,7 +348,7 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T ++auto product6(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T @@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } // multiple template parameter function with combined constraint on template parameters diff --git a/results/diffs/R1170.txt b/results/diffs/R1170.txt index 6eb0bd5..1951a2a 100644 --- a/results/diffs/R1170.txt +++ b/results/diffs/R1170.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e8a660c 100644 +index 024d6a2..6b4c4a2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1160 Rename template parameter T - // #TEST#: R1161 Rename template parameter U - // #TEST#: R1162 Rename use of T + // #TEST#: R1164 Rename template parameter T + // #TEST#: R1165 Rename template parameter U + // #TEST#: R1166 Rename use of T -template -+template - // #TEST#: R1163 Rename function product6 - // #TEST#: R1164 Rename use of T - // #TEST#: R1165 Rename parameter lhs ++template + // #TEST#: R1167 Rename function product6 + // #TEST#: R1168 Rename use of T + // #TEST#: R1169 Rename parameter lhs @@ -348,12 +348,12 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U ++auto product6(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs diff --git a/results/diffs/R1171.txt b/results/diffs/R1171.txt index eb89983..f05f38c 100644 --- a/results/diffs/R1171.txt +++ b/results/diffs/R1171.txt @@ -1,194 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f44d43b 100644 +index 024d6a2..42a9da9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -348,7 +348,7 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs +-auto product6(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product6(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T +@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with combined constraint on template parameters diff --git a/results/diffs/R1172.txt b/results/diffs/R1172.txt index 6eb0bd5..c8f294c 100644 --- a/results/diffs/R1172.txt +++ b/results/diffs/R1172.txt @@ -1,29 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e8a660c 100644 +index 024d6a2..bf6d43c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1160 Rename template parameter T - // #TEST#: R1161 Rename template parameter U - // #TEST#: R1162 Rename use of T --template -+template - // #TEST#: R1163 Rename function product6 - // #TEST#: R1164 Rename use of T - // #TEST#: R1165 Rename parameter lhs -@@ -348,12 +348,12 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs +@@ -348,7 +348,7 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++auto product6(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T +@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with combined constraint on template parameters diff --git a/results/diffs/R1173.txt b/results/diffs/R1173.txt index d5258f3..f05f38c 100644 --- a/results/diffs/R1173.txt +++ b/results/diffs/R1173.txt @@ -1,29 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..6b4c4a2 100644 +index 024d6a2..42a9da9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1160 Rename template parameter T - // #TEST#: R1161 Rename template parameter U - // #TEST#: R1162 Rename use of T --template -+template - // #TEST#: R1163 Rename function product6 - // #TEST#: R1164 Rename use of T - // #TEST#: R1165 Rename parameter lhs -@@ -348,12 +348,12 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs +@@ -348,7 +348,7 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++auto product6(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T +@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with combined constraint on template parameters diff --git a/results/diffs/R1174.txt b/results/diffs/R1174.txt index 40e5db1..25c3ce8 100644 --- a/results/diffs/R1174.txt +++ b/results/diffs/R1174.txt @@ -1,23 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..bf6d43c 100644 +index 024d6a2..e8a660c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -348,7 +348,7 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs +@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1164 Rename template parameter T + // #TEST#: R1165 Rename template parameter U + // #TEST#: R1166 Rename use of T +-template ++template + // #TEST#: R1167 Rename function product6 + // #TEST#: R1168 Rename use of T + // #TEST#: R1169 Rename parameter lhs +@@ -348,12 +348,12 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs -auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T -@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product6(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with combined constraint on template parameters + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs diff --git a/results/diffs/R1175.txt b/results/diffs/R1175.txt index 29b1a3d..ea51ee5 100644 --- a/results/diffs/R1175.txt +++ b/results/diffs/R1175.txt @@ -1,23 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..42a9da9 100644 +index 024d6a2..f44d43b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -348,7 +348,7 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs --auto product6(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product6(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T -@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with combined constraint on template parameters +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1176.txt b/results/diffs/R1176.txt index 3303668..25c3ce8 100644 --- a/results/diffs/R1176.txt +++ b/results/diffs/R1176.txt @@ -1,30 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b93850c 100644 +index 024d6a2..e8a660c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1176 Rename template parameter T - // #TEST#: R1177 Rename template parameter U - // #TEST#: R1178 Rename use of T +@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1164 Rename template parameter T + // #TEST#: R1165 Rename template parameter U + // #TEST#: R1166 Rename use of T -template +template - // #TEST#: R1179 Rename first use of T - // #TEST#: R1180 Rename first use of U - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs --auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1167 Rename function product6 + // #TEST#: R1168 Rename use of T + // #TEST#: R1169 Rename parameter lhs +@@ -348,12 +348,12 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs +-auto product6(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product6(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs diff --git a/results/diffs/R1177.txt b/results/diffs/R1177.txt index ba08d9e..1951a2a 100644 --- a/results/diffs/R1177.txt +++ b/results/diffs/R1177.txt @@ -1,30 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c60af8b 100644 +index 024d6a2..6b4c4a2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1176 Rename template parameter T - // #TEST#: R1177 Rename template parameter U - // #TEST#: R1178 Rename use of T +@@ -340,7 +340,7 @@ auto product5(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1164 Rename template parameter T + // #TEST#: R1165 Rename template parameter U + // #TEST#: R1166 Rename use of T -template +template - // #TEST#: R1179 Rename first use of T - // #TEST#: R1180 Rename first use of U - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs --auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1167 Rename function product6 + // #TEST#: R1168 Rename use of T + // #TEST#: R1169 Rename parameter lhs +@@ -348,12 +348,12 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs +-auto product6(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product6(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs diff --git a/results/diffs/R1178.txt b/results/diffs/R1178.txt index 3303668..c8f294c 100644 --- a/results/diffs/R1178.txt +++ b/results/diffs/R1178.txt @@ -1,30 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b93850c 100644 +index 024d6a2..bf6d43c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1176 Rename template parameter T - // #TEST#: R1177 Rename template parameter U - // #TEST#: R1178 Rename use of T --template -+template - // #TEST#: R1179 Rename first use of T - // #TEST#: R1180 Rename first use of U - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs --auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(Goink lhs, U rhs) -> decltype(lhs * rhs) +@@ -348,7 +348,7 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs +-auto product6(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product6(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T +@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with combined constraint on template parameters diff --git a/results/diffs/R1179.txt b/results/diffs/R1179.txt index 3303668..f05f38c 100644 --- a/results/diffs/R1179.txt +++ b/results/diffs/R1179.txt @@ -1,30 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b93850c 100644 +index 024d6a2..42a9da9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1176 Rename template parameter T - // #TEST#: R1177 Rename template parameter U - // #TEST#: R1178 Rename use of T --template -+template - // #TEST#: R1179 Rename first use of T - // #TEST#: R1180 Rename first use of U - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs --auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(Goink lhs, U rhs) -> decltype(lhs * rhs) +@@ -348,7 +348,7 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs +-auto product6(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product6(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T +@@ -357,7 +357,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with combined constraint on template parameters diff --git a/results/diffs/R1180.txt b/results/diffs/R1180.txt index ba08d9e..ba191e7 100644 --- a/results/diffs/R1180.txt +++ b/results/diffs/R1180.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c60af8b 100644 +index 024d6a2..b93850c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1176 Rename template parameter T - // #TEST#: R1177 Rename template parameter U - // #TEST#: R1178 Rename use of T + // #TEST#: R1180 Rename template parameter T + // #TEST#: R1181 Rename template parameter U + // #TEST#: R1182 Rename use of T -template -+template - // #TEST#: R1179 Rename first use of T - // #TEST#: R1180 Rename first use of U - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U ++template + // #TEST#: R1183 Rename first use of T + // #TEST#: R1184 Rename first use of U + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs @@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(T lhs, Goink rhs) -> decltype(lhs * rhs) ++auto product7(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs diff --git a/results/diffs/R1181.txt b/results/diffs/R1181.txt index eb89983..06170a8 100644 --- a/results/diffs/R1181.txt +++ b/results/diffs/R1181.txt @@ -1,194 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f44d43b 100644 +index 024d6a2..c60af8b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U +@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1180 Rename template parameter T + // #TEST#: R1181 Rename template parameter U + // #TEST#: R1182 Rename use of T +-template ++template + // #TEST#: R1183 Rename first use of T + // #TEST#: R1184 Rename first use of U + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -378,7 +378,7 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs +-auto product7(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product7(T lhs, Goink rhs) -> decltype(lhs * rhs) + { + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs diff --git a/results/diffs/R1182.txt b/results/diffs/R1182.txt index 3303668..ba191e7 100644 --- a/results/diffs/R1182.txt +++ b/results/diffs/R1182.txt @@ -3,28 +3,28 @@ index 024d6a2..b93850c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1176 Rename template parameter T - // #TEST#: R1177 Rename template parameter U - // #TEST#: R1178 Rename use of T + // #TEST#: R1180 Rename template parameter T + // #TEST#: R1181 Rename template parameter U + // #TEST#: R1182 Rename use of T -template +template - // #TEST#: R1179 Rename first use of T - // #TEST#: R1180 Rename first use of U - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U + // #TEST#: R1183 Rename first use of T + // #TEST#: R1184 Rename first use of U + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs @@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) +auto product7(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs diff --git a/results/diffs/R1183.txt b/results/diffs/R1183.txt index ba08d9e..ba191e7 100644 --- a/results/diffs/R1183.txt +++ b/results/diffs/R1183.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..c60af8b 100644 +index 024d6a2..b93850c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1176 Rename template parameter T - // #TEST#: R1177 Rename template parameter U - // #TEST#: R1178 Rename use of T + // #TEST#: R1180 Rename template parameter T + // #TEST#: R1181 Rename template parameter U + // #TEST#: R1182 Rename use of T -template -+template - // #TEST#: R1179 Rename first use of T - // #TEST#: R1180 Rename first use of U - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U ++template + // #TEST#: R1183 Rename first use of T + // #TEST#: R1184 Rename first use of U + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs @@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(T lhs, Goink rhs) -> decltype(lhs * rhs) ++auto product7(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs diff --git a/results/diffs/R1184.txt b/results/diffs/R1184.txt index 475a5ec..06170a8 100644 --- a/results/diffs/R1184.txt +++ b/results/diffs/R1184.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..db99631 100644 +index 024d6a2..c60af8b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp +@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1180 Rename template parameter T + // #TEST#: R1181 Rename template parameter U + // #TEST#: R1182 Rename use of T +-template ++template + // #TEST#: R1183 Rename first use of T + // #TEST#: R1184 Rename first use of U + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs @@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product7(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs -@@ -581,12 +581,12 @@ void f1() - // multiple template parameter function with combined constraint on template parameters - { - // #TEST#: R1246 Rename function product7 -- REQUIRE_EQUAL(6.0, product7(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1247 Rename function product7 -- const double d = product7(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // #TEST#: R1248 Rename function product7 -- const Rope r = product7(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } - // multiple template parameter function with combined constraint on function + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs diff --git a/results/diffs/R1185.txt b/results/diffs/R1185.txt index 3303668..ea51ee5 100644 --- a/results/diffs/R1185.txt +++ b/results/diffs/R1185.txt @@ -1,30 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b93850c 100644 +index 024d6a2..f44d43b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1176 Rename template parameter T - // #TEST#: R1177 Rename template parameter U - // #TEST#: R1178 Rename use of T --template -+template - // #TEST#: R1179 Rename first use of T - // #TEST#: R1180 Rename first use of U - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs --auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(Goink lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1186.txt b/results/diffs/R1186.txt index fbae6f5..ba191e7 100644 --- a/results/diffs/R1186.txt +++ b/results/diffs/R1186.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..fe1dd3c 100644 +index 024d6a2..b93850c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -378,11 +378,11 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs +@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1180 Rename template parameter T + // #TEST#: R1181 Rename template parameter U + // #TEST#: R1182 Rename use of T +-template ++template + // #TEST#: R1183 Rename first use of T + // #TEST#: R1184 Rename first use of U + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -378,7 +378,7 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(T goink, U rhs) -> decltype(goink * rhs) ++auto product7(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with combined constraint on function + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs diff --git a/results/diffs/R1187.txt b/results/diffs/R1187.txt index ba08d9e..06170a8 100644 --- a/results/diffs/R1187.txt +++ b/results/diffs/R1187.txt @@ -3,28 +3,28 @@ index 024d6a2..c60af8b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1176 Rename template parameter T - // #TEST#: R1177 Rename template parameter U - // #TEST#: R1178 Rename use of T + // #TEST#: R1180 Rename template parameter T + // #TEST#: R1181 Rename template parameter U + // #TEST#: R1182 Rename use of T -template +template - // #TEST#: R1179 Rename first use of T - // #TEST#: R1180 Rename first use of U - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U + // #TEST#: R1183 Rename first use of T + // #TEST#: R1184 Rename first use of U + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs @@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) +auto product7(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs diff --git a/results/diffs/R1188.txt b/results/diffs/R1188.txt index 7b617bf..bd85e65 100644 --- a/results/diffs/R1188.txt +++ b/results/diffs/R1188.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5194e39 100644 +index 024d6a2..db99631 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -378,11 +378,11 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs +@@ -378,7 +378,7 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(T lhs, U goink) -> decltype(lhs * goink) ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // multiple template parameter function with combined constraint on function + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs +@@ -581,12 +581,12 @@ void f1() + // multiple template parameter function with combined constraint on template parameters + { + // #TEST#: R1250 Rename function product7 +- REQUIRE_EQUAL(6.0, product7(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1251 Rename function product7 +- const double d = product7(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // #TEST#: R1252 Rename function product7 +- const Rope r = product7(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } + // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1189.txt b/results/diffs/R1189.txt index fbae6f5..ba191e7 100644 --- a/results/diffs/R1189.txt +++ b/results/diffs/R1189.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..fe1dd3c 100644 +index 024d6a2..b93850c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -378,11 +378,11 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs +@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1180 Rename template parameter T + // #TEST#: R1181 Rename template parameter U + // #TEST#: R1182 Rename use of T +-template ++template + // #TEST#: R1183 Rename first use of T + // #TEST#: R1184 Rename first use of U + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -378,7 +378,7 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(T goink, U rhs) -> decltype(goink * rhs) ++auto product7(Goink lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with combined constraint on function + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs diff --git a/results/diffs/R1190.txt b/results/diffs/R1190.txt index 7b617bf..a11c527 100644 --- a/results/diffs/R1190.txt +++ b/results/diffs/R1190.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5194e39 100644 +index 024d6a2..fe1dd3c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -378,11 +378,11 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(T lhs, U goink) -> decltype(lhs * goink) ++auto product7(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1191.txt b/results/diffs/R1191.txt index fbae6f5..06170a8 100644 --- a/results/diffs/R1191.txt +++ b/results/diffs/R1191.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..fe1dd3c 100644 +index 024d6a2..c60af8b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -378,11 +378,11 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs +@@ -364,13 +364,13 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1180 Rename template parameter T + // #TEST#: R1181 Rename template parameter U + // #TEST#: R1182 Rename use of T +-template ++template + // #TEST#: R1183 Rename first use of T + // #TEST#: R1184 Rename first use of U + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -378,7 +378,7 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product7(T goink, U rhs) -> decltype(goink * rhs) ++auto product7(T lhs, Goink rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // multiple template parameter function with combined constraint on function + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs diff --git a/results/diffs/R1192.txt b/results/diffs/R1192.txt index 7b617bf..dd436db 100644 --- a/results/diffs/R1192.txt +++ b/results/diffs/R1192.txt @@ -3,14 +3,14 @@ index 024d6a2..5194e39 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -378,11 +378,11 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs -auto product7(T lhs, U rhs) -> decltype(lhs * rhs) +auto product7(T lhs, U goink) -> decltype(lhs * goink) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1193.txt b/results/diffs/R1193.txt index ee20174..a11c527 100644 --- a/results/diffs/R1193.txt +++ b/results/diffs/R1193.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b891749 100644 +index 024d6a2..fe1dd3c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1193 Rename template parameter T - // #TEST#: R1194 Rename template parameter U - // #TEST#: R1195 Rename use of T --template -+template - // #TEST#: R1196 Rename function product8 - // #TEST#: R1197 Rename use of T - // #TEST#: R1198 Rename parameter lhs -@@ -397,13 +397,13 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs --auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable +@@ -378,11 +378,11 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs +-auto product7(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product7(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1194.txt b/results/diffs/R1194.txt index 9a3369e..dd436db 100644 --- a/results/diffs/R1194.txt +++ b/results/diffs/R1194.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..363b27c 100644 +index 024d6a2..5194e39 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1193 Rename template parameter T - // #TEST#: R1194 Rename template parameter U - // #TEST#: R1195 Rename use of T --template -+template - // #TEST#: R1196 Rename function product8 - // #TEST#: R1197 Rename use of T - // #TEST#: R1198 Rename parameter lhs -@@ -397,13 +397,13 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs --auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable +@@ -378,11 +378,11 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs +-auto product7(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product7(T lhs, U goink) -> decltype(lhs * goink) { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1195.txt b/results/diffs/R1195.txt index ee20174..a11c527 100644 --- a/results/diffs/R1195.txt +++ b/results/diffs/R1195.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b891749 100644 +index 024d6a2..fe1dd3c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1193 Rename template parameter T - // #TEST#: R1194 Rename template parameter U - // #TEST#: R1195 Rename use of T --template -+template - // #TEST#: R1196 Rename function product8 - // #TEST#: R1197 Rename use of T - // #TEST#: R1198 Rename parameter lhs -@@ -397,13 +397,13 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs --auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable +@@ -378,11 +378,11 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs +-auto product7(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product7(T goink, U rhs) -> decltype(goink * rhs) { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1196.txt b/results/diffs/R1196.txt index 0ec4ca6..dd436db 100644 --- a/results/diffs/R1196.txt +++ b/results/diffs/R1196.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f9e644c 100644 +index 024d6a2..5194e39 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs --auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable -@@ -592,12 +592,12 @@ void f1() - // multiple template parameter function with combined constraint on function - { - // #TEST#: R1249 Rename function product8 -- REQUIRE_EQUAL(6.0, product8(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1250 Rename function product8 -- const double d = product8(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // #TEST#: R1251 Rename function product8 -- const Rope r = product8(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } +@@ -378,11 +378,11 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs +-auto product7(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product7(T lhs, U goink) -> decltype(lhs * goink) + { + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; } + + // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1197.txt b/results/diffs/R1197.txt index ee20174..620e954 100644 --- a/results/diffs/R1197.txt +++ b/results/diffs/R1197.txt @@ -3,28 +3,28 @@ index 024d6a2..b891749 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1193 Rename template parameter T - // #TEST#: R1194 Rename template parameter U - // #TEST#: R1195 Rename use of T + // #TEST#: R1197 Rename template parameter T + // #TEST#: R1198 Rename template parameter U + // #TEST#: R1199 Rename use of T -template +template - // #TEST#: R1196 Rename function product8 - // #TEST#: R1197 Rename use of T - // #TEST#: R1198 Rename parameter lhs + // #TEST#: R1200 Rename function product8 + // #TEST#: R1201 Rename use of T + // #TEST#: R1202 Rename parameter lhs @@ -397,13 +397,13 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) +auto product8(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable + requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs diff --git a/results/diffs/R1198.txt b/results/diffs/R1198.txt index 6e45d06..b6217bc 100644 --- a/results/diffs/R1198.txt +++ b/results/diffs/R1198.txt @@ -1,23 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ae22f3a 100644 +index 024d6a2..363b27c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs +@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1197 Rename template parameter T + // #TEST#: R1198 Rename template parameter U + // #TEST#: R1199 Rename use of T +-template ++template + // #TEST#: R1200 Rename function product8 + // #TEST#: R1201 Rename use of T + // #TEST#: R1202 Rename parameter lhs +@@ -397,13 +397,13 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable -@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product8(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // Simple constraint expressions via require clauses + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs diff --git a/results/diffs/R1199.txt b/results/diffs/R1199.txt index 9a3369e..620e954 100644 --- a/results/diffs/R1199.txt +++ b/results/diffs/R1199.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..363b27c 100644 +index 024d6a2..b891749 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1193 Rename template parameter T - // #TEST#: R1194 Rename template parameter U - // #TEST#: R1195 Rename use of T + // #TEST#: R1197 Rename template parameter T + // #TEST#: R1198 Rename template parameter U + // #TEST#: R1199 Rename use of T -template -+template - // #TEST#: R1196 Rename function product8 - // #TEST#: R1197 Rename use of T - // #TEST#: R1198 Rename parameter lhs ++template + // #TEST#: R1200 Rename function product8 + // #TEST#: R1201 Rename use of T + // #TEST#: R1202 Rename parameter lhs @@ -397,13 +397,13 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U ++auto product8(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs diff --git a/results/diffs/R1200.txt b/results/diffs/R1200.txt index e04f04b..1f0af61 100644 --- a/results/diffs/R1200.txt +++ b/results/diffs/R1200.txt @@ -1,23 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..62c85ec 100644 +index 024d6a2..f9e644c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable -@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable +@@ -592,12 +592,12 @@ void f1() + // multiple template parameter function with combined constraint on function + { + // #TEST#: R1253 Rename function product8 +- REQUIRE_EQUAL(6.0, product8(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1254 Rename function product8 +- const double d = product8(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // #TEST#: R1255 Rename function product8 +- const Rope r = product8(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } } - - // Simple constraint expressions via require clauses diff --git a/results/diffs/R1201.txt b/results/diffs/R1201.txt index 6e45d06..620e954 100644 --- a/results/diffs/R1201.txt +++ b/results/diffs/R1201.txt @@ -1,23 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ae22f3a 100644 +index 024d6a2..b891749 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs +@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1197 Rename template parameter T + // #TEST#: R1198 Rename template parameter U + // #TEST#: R1199 Rename use of T +-template ++template + // #TEST#: R1200 Rename function product8 + // #TEST#: R1201 Rename use of T + // #TEST#: R1202 Rename parameter lhs +@@ -397,13 +397,13 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable -@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product8(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // Simple constraint expressions via require clauses + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs diff --git a/results/diffs/R1202.txt b/results/diffs/R1202.txt index e04f04b..07d9ea6 100644 --- a/results/diffs/R1202.txt +++ b/results/diffs/R1202.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..62c85ec 100644 +index 024d6a2..ae22f3a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable ++auto product8(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable @@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } // Simple constraint expressions via require clauses diff --git a/results/diffs/R1203.txt b/results/diffs/R1203.txt index ee20174..b6217bc 100644 --- a/results/diffs/R1203.txt +++ b/results/diffs/R1203.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b891749 100644 +index 024d6a2..363b27c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1193 Rename template parameter T - // #TEST#: R1194 Rename template parameter U - // #TEST#: R1195 Rename use of T + // #TEST#: R1197 Rename template parameter T + // #TEST#: R1198 Rename template parameter U + // #TEST#: R1199 Rename use of T -template -+template - // #TEST#: R1196 Rename function product8 - // #TEST#: R1197 Rename use of T - // #TEST#: R1198 Rename parameter lhs ++template + // #TEST#: R1200 Rename function product8 + // #TEST#: R1201 Rename use of T + // #TEST#: R1202 Rename parameter lhs @@ -397,13 +397,13 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U ++auto product8(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs diff --git a/results/diffs/R1204.txt b/results/diffs/R1204.txt index 9a3369e..2f436b5 100644 --- a/results/diffs/R1204.txt +++ b/results/diffs/R1204.txt @@ -1,30 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..363b27c 100644 +index 024d6a2..62c85ec 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1193 Rename template parameter T - // #TEST#: R1194 Rename template parameter U - // #TEST#: R1195 Rename use of T --template -+template - // #TEST#: R1196 Rename function product8 - // #TEST#: R1197 Rename use of T - // #TEST#: R1198 Rename parameter lhs -@@ -397,13 +397,13 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs +@@ -397,7 +397,7 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++auto product8(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable +@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // Simple constraint expressions via require clauses diff --git a/results/diffs/R1205.txt b/results/diffs/R1205.txt index eb89983..07d9ea6 100644 --- a/results/diffs/R1205.txt +++ b/results/diffs/R1205.txt @@ -1,194 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f44d43b 100644 +index 024d6a2..ae22f3a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -397,7 +397,7 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs +-auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product8(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable +@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // Simple constraint expressions via require clauses diff --git a/results/diffs/R1206.txt b/results/diffs/R1206.txt index ee20174..2f436b5 100644 --- a/results/diffs/R1206.txt +++ b/results/diffs/R1206.txt @@ -1,30 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b891749 100644 +index 024d6a2..62c85ec 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1193 Rename template parameter T - // #TEST#: R1194 Rename template parameter U - // #TEST#: R1195 Rename use of T --template -+template - // #TEST#: R1196 Rename function product8 - // #TEST#: R1197 Rename use of T - // #TEST#: R1198 Rename parameter lhs -@@ -397,13 +397,13 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs +@@ -397,7 +397,7 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(Goink lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++auto product8(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable +@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // Simple constraint expressions via require clauses diff --git a/results/diffs/R1207.txt b/results/diffs/R1207.txt index 9a3369e..620e954 100644 --- a/results/diffs/R1207.txt +++ b/results/diffs/R1207.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..363b27c 100644 +index 024d6a2..b891749 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1193 Rename template parameter T - // #TEST#: R1194 Rename template parameter U - // #TEST#: R1195 Rename use of T + // #TEST#: R1197 Rename template parameter T + // #TEST#: R1198 Rename template parameter U + // #TEST#: R1199 Rename use of T -template -+template - // #TEST#: R1196 Rename function product8 - // #TEST#: R1197 Rename use of T - // #TEST#: R1198 Rename parameter lhs ++template + // #TEST#: R1200 Rename function product8 + // #TEST#: R1201 Rename use of T + // #TEST#: R1202 Rename parameter lhs @@ -397,13 +397,13 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T lhs, Goink rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U ++auto product8(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U - requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs diff --git a/results/diffs/R1208.txt b/results/diffs/R1208.txt index 6e45d06..b6217bc 100644 --- a/results/diffs/R1208.txt +++ b/results/diffs/R1208.txt @@ -1,23 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ae22f3a 100644 +index 024d6a2..363b27c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs +@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1197 Rename template parameter T + // #TEST#: R1198 Rename template parameter U + // #TEST#: R1199 Rename use of T +-template ++template + // #TEST#: R1200 Rename function product8 + // #TEST#: R1201 Rename use of T + // #TEST#: R1202 Rename parameter lhs +@@ -397,13 +397,13 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs -auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T goink, U rhs) -> decltype(goink * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable -@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product8(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -- return lhs * rhs; -+ return goink * rhs; - } - - // Simple constraint expressions via require clauses + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs diff --git a/results/diffs/R1209.txt b/results/diffs/R1209.txt index e04f04b..ea51ee5 100644 --- a/results/diffs/R1209.txt +++ b/results/diffs/R1209.txt @@ -1,23 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..62c85ec 100644 +index 024d6a2..f44d43b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs --auto product8(T lhs, U rhs) -> decltype(lhs * rhs) -+auto product8(T lhs, U goink) -> decltype(lhs * goink) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable -@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -- return lhs * rhs; -+ return lhs * goink; - } - - // Simple constraint expressions via require clauses +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1210.txt b/results/diffs/R1210.txt index 0cc4471..620e954 100644 --- a/results/diffs/R1210.txt +++ b/results/diffs/R1210.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d6783e9 100644 +index 024d6a2..b891749 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -84,7 +84,7 @@ template - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value --T square1(T value) -+T goink(T value) +@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1197 Rename template parameter T + // #TEST#: R1198 Rename template parameter U + // #TEST#: R1199 Rename use of T +-template ++template + // #TEST#: R1200 Rename function product8 + // #TEST#: R1201 Rename use of T + // #TEST#: R1202 Rename parameter lhs +@@ -397,13 +397,13 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs +-auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product8(Goink lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value -@@ -439,12 +439,12 @@ void f1() - // single template parameter function with simple constraint on template parameter - { - // #TEST#: R1210 Rename function square1 -- REQUIRE_EQUAL(4, square1(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1211 Rename function square1 -- const double d = square1(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1212 Rename function square1 -- const Rope r = square1(Rope{"square"}); -+ const Rope r = goink(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); - } - // single template parameter function with simple constraint on function + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs diff --git a/results/diffs/R1211.txt b/results/diffs/R1211.txt index 0cc4471..b6217bc 100644 --- a/results/diffs/R1211.txt +++ b/results/diffs/R1211.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d6783e9 100644 +index 024d6a2..363b27c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -84,7 +84,7 @@ template - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value --T square1(T value) -+T goink(T value) +@@ -389,7 +389,7 @@ auto product7(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1197 Rename template parameter T + // #TEST#: R1198 Rename template parameter U + // #TEST#: R1199 Rename use of T +-template ++template + // #TEST#: R1200 Rename function product8 + // #TEST#: R1201 Rename use of T + // #TEST#: R1202 Rename parameter lhs +@@ -397,13 +397,13 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs +-auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product8(T lhs, Goink rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value -@@ -439,12 +439,12 @@ void f1() - // single template parameter function with simple constraint on template parameter - { - // #TEST#: R1210 Rename function square1 -- REQUIRE_EQUAL(4, square1(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1211 Rename function square1 -- const double d = square1(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1212 Rename function square1 -- const Rope r = square1(Rope{"square"}); -+ const Rope r = goink(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); - } - // single template parameter function with simple constraint on function + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs diff --git a/results/diffs/R1212.txt b/results/diffs/R1212.txt index 0cc4471..07d9ea6 100644 --- a/results/diffs/R1212.txt +++ b/results/diffs/R1212.txt @@ -1,30 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d6783e9 100644 +index 024d6a2..ae22f3a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -84,7 +84,7 @@ template - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T - // #TEST#: R1008 Rename parameter value --T square1(T value) -+T goink(T value) +@@ -397,7 +397,7 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs +-auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product8(T goink, U rhs) -> decltype(goink * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable +@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1009 Rename first use of value - // #TEST#: R1010 Rename second use of value -@@ -439,12 +439,12 @@ void f1() - // single template parameter function with simple constraint on template parameter - { - // #TEST#: R1210 Rename function square1 -- REQUIRE_EQUAL(4, square1(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1211 Rename function square1 -- const double d = square1(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1212 Rename function square1 -- const Rope r = square1(Rope{"square"}); -+ const Rope r = goink(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); - } - // single template parameter function with simple constraint on function + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +- return lhs * rhs; ++ return goink * rhs; + } + + // Simple constraint expressions via require clauses diff --git a/results/diffs/R1213.txt b/results/diffs/R1213.txt index 08f5ad3..2f436b5 100644 --- a/results/diffs/R1213.txt +++ b/results/diffs/R1213.txt @@ -1,30 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b8de295 100644 +index 024d6a2..62c85ec 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -98,7 +98,7 @@ template - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value --T square2(T value) -+T goink(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T - requires Squareable -@@ -450,12 +450,12 @@ void f1() - // single template parameter function with simple constraint on function - { - // #TEST#: R1213 Rename function square2 -- REQUIRE_EQUAL(4, square2(2)); -+ REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1214 Rename function square2 -- const double d = square2(2.0); -+ const double d = goink(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1215 Rename function square2 -- const Rope r = square2(Rope{"square"}); -+ const Rope r = goink(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); - } - // single template parameter function with disjunctive constraint on template parameter +@@ -397,7 +397,7 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs +-auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto product8(T lhs, U goink) -> decltype(lhs * goink) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable +@@ -407,7 +407,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +- return lhs * rhs; ++ return lhs * goink; + } + + // Simple constraint expressions via require clauses diff --git a/results/diffs/R1214.txt b/results/diffs/R1214.txt index 08f5ad3..8144d23 100644 --- a/results/diffs/R1214.txt +++ b/results/diffs/R1214.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b8de295 100644 +index 024d6a2..d6783e9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -98,7 +98,7 @@ template - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value --T square2(T value) +@@ -84,7 +84,7 @@ template + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value +-T square1(T value) +T goink(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T - requires Squareable -@@ -450,12 +450,12 @@ void f1() - // single template parameter function with simple constraint on function + { + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value +@@ -439,12 +439,12 @@ void f1() + // single template parameter function with simple constraint on template parameter { - // #TEST#: R1213 Rename function square2 -- REQUIRE_EQUAL(4, square2(2)); + // #TEST#: R1214 Rename function square1 +- REQUIRE_EQUAL(4, square1(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1214 Rename function square2 -- const double d = square2(2.0); + // #TEST#: R1215 Rename function square1 +- const double d = square1(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1215 Rename function square2 -- const Rope r = square2(Rope{"square"}); + // #TEST#: R1216 Rename function square1 +- const Rope r = square1(Rope{"square"}); + const Rope r = goink(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } - // single template parameter function with disjunctive constraint on template parameter + // single template parameter function with simple constraint on function diff --git a/results/diffs/R1215.txt b/results/diffs/R1215.txt index 08f5ad3..8144d23 100644 --- a/results/diffs/R1215.txt +++ b/results/diffs/R1215.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..b8de295 100644 +index 024d6a2..d6783e9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -98,7 +98,7 @@ template - // #TEST#: R1013 Rename function square2 - // #TEST#: R1014 Rename second use of T - // #TEST#: R1015 Rename parameter value --T square2(T value) +@@ -84,7 +84,7 @@ template + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value +-T square1(T value) +T goink(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T - requires Squareable -@@ -450,12 +450,12 @@ void f1() - // single template parameter function with simple constraint on function + { + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value +@@ -439,12 +439,12 @@ void f1() + // single template parameter function with simple constraint on template parameter { - // #TEST#: R1213 Rename function square2 -- REQUIRE_EQUAL(4, square2(2)); + // #TEST#: R1214 Rename function square1 +- REQUIRE_EQUAL(4, square1(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1214 Rename function square2 -- const double d = square2(2.0); + // #TEST#: R1215 Rename function square1 +- const double d = square1(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1215 Rename function square2 -- const Rope r = square2(Rope{"square"}); + // #TEST#: R1216 Rename function square1 +- const Rope r = square1(Rope{"square"}); + const Rope r = goink(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } - // single template parameter function with disjunctive constraint on template parameter + // single template parameter function with simple constraint on function diff --git a/results/diffs/R1216.txt b/results/diffs/R1216.txt index 13c82c9..8144d23 100644 --- a/results/diffs/R1216.txt +++ b/results/diffs/R1216.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d8f51f3 100644 +index 024d6a2..d6783e9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -119,7 +119,7 @@ template - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value --T square3(T value) +@@ -84,7 +84,7 @@ template + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T + // #TEST#: R1012 Rename parameter value +-T square1(T value) +T goink(T value) { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value -@@ -461,12 +461,12 @@ void f1() - // single template parameter function with disjunctive constraint on template parameter + // #TEST#: R1013 Rename first use of value + // #TEST#: R1014 Rename second use of value +@@ -439,12 +439,12 @@ void f1() + // single template parameter function with simple constraint on template parameter { - // #TEST#: R1216 Rename function square3 -- REQUIRE_EQUAL(4, square3(2)); + // #TEST#: R1214 Rename function square1 +- REQUIRE_EQUAL(4, square1(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1217 Rename function square3 -- const double d = square3(2.0); + // #TEST#: R1215 Rename function square1 +- const double d = square1(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1218 Rename function square3 -- const Rope r = square3(Rope{"square"}); + // #TEST#: R1216 Rename function square1 +- const Rope r = square1(Rope{"square"}); + const Rope r = goink(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } - // single template parameter function with conjunctive constraint on template parameter + // single template parameter function with simple constraint on function diff --git a/results/diffs/R1217.txt b/results/diffs/R1217.txt index 13c82c9..d4b9603 100644 --- a/results/diffs/R1217.txt +++ b/results/diffs/R1217.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d8f51f3 100644 +index 024d6a2..b8de295 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -119,7 +119,7 @@ template - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value --T square3(T value) +@@ -98,7 +98,7 @@ template + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value +-T square2(T value) +T goink(T value) - { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value -@@ -461,12 +461,12 @@ void f1() - // single template parameter function with disjunctive constraint on template parameter + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T + requires Squareable +@@ -450,12 +450,12 @@ void f1() + // single template parameter function with simple constraint on function { - // #TEST#: R1216 Rename function square3 -- REQUIRE_EQUAL(4, square3(2)); + // #TEST#: R1217 Rename function square2 +- REQUIRE_EQUAL(4, square2(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1217 Rename function square3 -- const double d = square3(2.0); + // #TEST#: R1218 Rename function square2 +- const double d = square2(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1218 Rename function square3 -- const Rope r = square3(Rope{"square"}); + // #TEST#: R1219 Rename function square2 +- const Rope r = square2(Rope{"square"}); + const Rope r = goink(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } - // single template parameter function with conjunctive constraint on template parameter + // single template parameter function with disjunctive constraint on template parameter diff --git a/results/diffs/R1218.txt b/results/diffs/R1218.txt index 13c82c9..d4b9603 100644 --- a/results/diffs/R1218.txt +++ b/results/diffs/R1218.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d8f51f3 100644 +index 024d6a2..b8de295 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -119,7 +119,7 @@ template - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T - // #TEST#: R1027 Rename parameter value --T square3(T value) +@@ -98,7 +98,7 @@ template + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value +-T square2(T value) +T goink(T value) - { - // #TEST#: R1028 Rename first use of value - // #TEST#: R1029 Rename second use of value -@@ -461,12 +461,12 @@ void f1() - // single template parameter function with disjunctive constraint on template parameter + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T + requires Squareable +@@ -450,12 +450,12 @@ void f1() + // single template parameter function with simple constraint on function { - // #TEST#: R1216 Rename function square3 -- REQUIRE_EQUAL(4, square3(2)); + // #TEST#: R1217 Rename function square2 +- REQUIRE_EQUAL(4, square2(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1217 Rename function square3 -- const double d = square3(2.0); + // #TEST#: R1218 Rename function square2 +- const double d = square2(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1218 Rename function square3 -- const Rope r = square3(Rope{"square"}); + // #TEST#: R1219 Rename function square2 +- const Rope r = square2(Rope{"square"}); + const Rope r = goink(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } - // single template parameter function with conjunctive constraint on template parameter + // single template parameter function with disjunctive constraint on template parameter diff --git a/results/diffs/R1219.txt b/results/diffs/R1219.txt index b466fac..d4b9603 100644 --- a/results/diffs/R1219.txt +++ b/results/diffs/R1219.txt @@ -1,26 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..dff4ced 100644 +index 024d6a2..b8de295 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -137,7 +137,7 @@ template - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value --T square4(T value) +@@ -98,7 +98,7 @@ template + // #TEST#: R1017 Rename function square2 + // #TEST#: R1018 Rename second use of T + // #TEST#: R1019 Rename parameter value +-T square2(T value) +T goink(T value) - { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value -@@ -472,9 +472,9 @@ void f1() - // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T + requires Squareable +@@ -450,12 +450,12 @@ void f1() + // single template parameter function with simple constraint on function { - // #TEST#: R1219 Rename function square4 -- REQUIRE_EQUAL(4, square4(2)); + // #TEST#: R1217 Rename function square2 +- REQUIRE_EQUAL(4, square2(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1220 Rename function square4 -- const double d = square4(2.0); + // #TEST#: R1218 Rename function square2 +- const double d = square2(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1219 Rename function square2 +- const Rope r = square2(Rope{"square"}); ++ const Rope r = goink(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); } + // single template parameter function with disjunctive constraint on template parameter diff --git a/results/diffs/R1220.txt b/results/diffs/R1220.txt index b466fac..b44a29c 100644 --- a/results/diffs/R1220.txt +++ b/results/diffs/R1220.txt @@ -1,26 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..dff4ced 100644 +index 024d6a2..d8f51f3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -137,7 +137,7 @@ template - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T - // #TEST#: R1037 Rename parameter value --T square4(T value) +@@ -119,7 +119,7 @@ template + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value +-T square3(T value) +T goink(T value) { - // #TEST#: R1038 Rename first use of value - // #TEST#: R1039 Rename second use of value -@@ -472,9 +472,9 @@ void f1() - // single template parameter function with conjunctive constraint on template parameter + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value +@@ -461,12 +461,12 @@ void f1() + // single template parameter function with disjunctive constraint on template parameter { - // #TEST#: R1219 Rename function square4 -- REQUIRE_EQUAL(4, square4(2)); + // #TEST#: R1220 Rename function square3 +- REQUIRE_EQUAL(4, square3(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1220 Rename function square4 -- const double d = square4(2.0); + // #TEST#: R1221 Rename function square3 +- const double d = square3(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1222 Rename function square3 +- const Rope r = square3(Rope{"square"}); ++ const Rope r = goink(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); } + // single template parameter function with conjunctive constraint on template parameter diff --git a/results/diffs/R1221.txt b/results/diffs/R1221.txt index d8a5f3b..b44a29c 100644 --- a/results/diffs/R1221.txt +++ b/results/diffs/R1221.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d6c9747 100644 +index 024d6a2..d8f51f3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -151,7 +151,7 @@ template - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value --T square5(T value) +@@ -119,7 +119,7 @@ template + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value +-T square3(T value) +T goink(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -@@ -481,12 +481,12 @@ void f1() - // single template parameter function with disjunctive constraint on function + { + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value +@@ -461,12 +461,12 @@ void f1() + // single template parameter function with disjunctive constraint on template parameter { - // #TEST#: R1221 Rename function square5 -- REQUIRE_EQUAL(4, square5(2)); + // #TEST#: R1220 Rename function square3 +- REQUIRE_EQUAL(4, square3(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1222 Rename function square5 -- const double d = square5(2.0); + // #TEST#: R1221 Rename function square3 +- const double d = square3(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1223 Rename function square5 -- const Rope r = square5(Rope{"square"}); + // #TEST#: R1222 Rename function square3 +- const Rope r = square3(Rope{"square"}); + const Rope r = goink(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } - // single template parameter function with conjunctive constraint on function + // single template parameter function with conjunctive constraint on template parameter diff --git a/results/diffs/R1222.txt b/results/diffs/R1222.txt index d8a5f3b..b44a29c 100644 --- a/results/diffs/R1222.txt +++ b/results/diffs/R1222.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d6c9747 100644 +index 024d6a2..d8f51f3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -151,7 +151,7 @@ template - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value --T square5(T value) +@@ -119,7 +119,7 @@ template + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T + // #TEST#: R1031 Rename parameter value +-T square3(T value) +T goink(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -@@ -481,12 +481,12 @@ void f1() - // single template parameter function with disjunctive constraint on function + { + // #TEST#: R1032 Rename first use of value + // #TEST#: R1033 Rename second use of value +@@ -461,12 +461,12 @@ void f1() + // single template parameter function with disjunctive constraint on template parameter { - // #TEST#: R1221 Rename function square5 -- REQUIRE_EQUAL(4, square5(2)); + // #TEST#: R1220 Rename function square3 +- REQUIRE_EQUAL(4, square3(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1222 Rename function square5 -- const double d = square5(2.0); + // #TEST#: R1221 Rename function square3 +- const double d = square3(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1223 Rename function square5 -- const Rope r = square5(Rope{"square"}); + // #TEST#: R1222 Rename function square3 +- const Rope r = square3(Rope{"square"}); + const Rope r = goink(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); } - // single template parameter function with conjunctive constraint on function + // single template parameter function with conjunctive constraint on template parameter diff --git a/results/diffs/R1223.txt b/results/diffs/R1223.txt index d8a5f3b..b6ae299 100644 --- a/results/diffs/R1223.txt +++ b/results/diffs/R1223.txt @@ -1,30 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d6c9747 100644 +index 024d6a2..dff4ced 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -151,7 +151,7 @@ template - // #TEST#: R1042 Rename function square5 - // #TEST#: R1043 Rename second use of T - // #TEST#: R1044 Rename parameter value --T square5(T value) +@@ -137,7 +137,7 @@ template + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value +-T square4(T value) +T goink(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -@@ -481,12 +481,12 @@ void f1() - // single template parameter function with disjunctive constraint on function + { + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value +@@ -472,9 +472,9 @@ void f1() + // single template parameter function with conjunctive constraint on template parameter { - // #TEST#: R1221 Rename function square5 -- REQUIRE_EQUAL(4, square5(2)); + // #TEST#: R1223 Rename function square4 +- REQUIRE_EQUAL(4, square4(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1222 Rename function square5 -- const double d = square5(2.0); + // #TEST#: R1224 Rename function square4 +- const double d = square4(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1223 Rename function square5 -- const Rope r = square5(Rope{"square"}); -+ const Rope r = goink(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + // Rope is not std::is_arithmetic } - // single template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1224.txt b/results/diffs/R1224.txt index fd276ed..b6ae299 100644 --- a/results/diffs/R1224.txt +++ b/results/diffs/R1224.txt @@ -1,24 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d41a4d9 100644 +index 024d6a2..dff4ced 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -169,7 +169,7 @@ template - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value --T square6(T value) +@@ -137,7 +137,7 @@ template + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T + // #TEST#: R1041 Rename parameter value +-T square4(T value) +T goink(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -@@ -492,9 +492,9 @@ void f1() - // single template parameter function with conjunctive constraint on function + { + // #TEST#: R1042 Rename first use of value + // #TEST#: R1043 Rename second use of value +@@ -472,9 +472,9 @@ void f1() + // single template parameter function with conjunctive constraint on template parameter { - // #TEST#: R1224 Rename function square6 -- REQUIRE_EQUAL(4, square6(2)); + // #TEST#: R1223 Rename function square4 +- REQUIRE_EQUAL(4, square4(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1225 Rename function square6 -- const double d = square6(2.0); + // #TEST#: R1224 Rename function square4 +- const double d = square4(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic diff --git a/results/diffs/R1225.txt b/results/diffs/R1225.txt index fd276ed..ea73a9c 100644 --- a/results/diffs/R1225.txt +++ b/results/diffs/R1225.txt @@ -1,26 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d41a4d9 100644 +index 024d6a2..d6c9747 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -169,7 +169,7 @@ template - // #TEST#: R1052 Rename function square6 - // #TEST#: R1053 Rename second use of T - // #TEST#: R1054 Rename parameter value --T square6(T value) +@@ -151,7 +151,7 @@ template + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value +-T square5(T value) +T goink(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -@@ -492,9 +492,9 @@ void f1() - // single template parameter function with conjunctive constraint on function + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +@@ -481,12 +481,12 @@ void f1() + // single template parameter function with disjunctive constraint on function { - // #TEST#: R1224 Rename function square6 -- REQUIRE_EQUAL(4, square6(2)); + // #TEST#: R1225 Rename function square5 +- REQUIRE_EQUAL(4, square5(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1225 Rename function square6 -- const double d = square6(2.0); + // #TEST#: R1226 Rename function square5 +- const double d = square5(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1227 Rename function square5 +- const Rope r = square5(Rope{"square"}); ++ const Rope r = goink(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); } + // single template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1226.txt b/results/diffs/R1226.txt index 169f8da..ea73a9c 100644 --- a/results/diffs/R1226.txt +++ b/results/diffs/R1226.txt @@ -1,26 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e02246d 100644 +index 024d6a2..d6c9747 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -192,7 +192,7 @@ template - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value --T square7(T value) +@@ -151,7 +151,7 @@ template + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value +-T square5(T value) +T goink(T value) - { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value -@@ -501,9 +501,9 @@ void f1() - // single template parameter function with combined constraint on template parameter + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +@@ -481,12 +481,12 @@ void f1() + // single template parameter function with disjunctive constraint on function { - // #TEST#: R1226 Rename function square7 -- REQUIRE_EQUAL(4, square7(2)); + // #TEST#: R1225 Rename function square5 +- REQUIRE_EQUAL(4, square5(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1227 Rename function square7 -- const double d = square7(2.0); + // #TEST#: R1226 Rename function square5 +- const double d = square5(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1227 Rename function square5 +- const Rope r = square5(Rope{"square"}); ++ const Rope r = goink(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); } + // single template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1227.txt b/results/diffs/R1227.txt index 169f8da..ea73a9c 100644 --- a/results/diffs/R1227.txt +++ b/results/diffs/R1227.txt @@ -1,26 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e02246d 100644 +index 024d6a2..d6c9747 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -192,7 +192,7 @@ template - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T - // #TEST#: R1068 Rename parameter value --T square7(T value) +@@ -151,7 +151,7 @@ template + // #TEST#: R1046 Rename function square5 + // #TEST#: R1047 Rename second use of T + // #TEST#: R1048 Rename parameter value +-T square5(T value) +T goink(T value) - { - // #TEST#: R1069 Rename first use of value - // #TEST#: R1070 Rename second use of value -@@ -501,9 +501,9 @@ void f1() - // single template parameter function with combined constraint on template parameter + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +@@ -481,12 +481,12 @@ void f1() + // single template parameter function with disjunctive constraint on function { - // #TEST#: R1226 Rename function square7 -- REQUIRE_EQUAL(4, square7(2)); + // #TEST#: R1225 Rename function square5 +- REQUIRE_EQUAL(4, square5(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1227 Rename function square7 -- const double d = square7(2.0); + // #TEST#: R1226 Rename function square5 +- const double d = square5(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1227 Rename function square5 +- const Rope r = square5(Rope{"square"}); ++ const Rope r = goink(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); } + // single template parameter function with conjunctive constraint on function diff --git a/results/diffs/R1228.txt b/results/diffs/R1228.txt index 6fe822e..42db63e 100644 --- a/results/diffs/R1228.txt +++ b/results/diffs/R1228.txt @@ -1,24 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..26b846d 100644 +index 024d6a2..d41a4d9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -206,7 +206,7 @@ template - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value --T square8(T value) +@@ -169,7 +169,7 @@ template + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value +-T square6(T value) +T goink(T value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable -@@ -510,9 +510,9 @@ void f1() - // single template parameter function with combined constraint on function + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +@@ -492,9 +492,9 @@ void f1() + // single template parameter function with conjunctive constraint on function { - // #TEST#: R1228 Rename function square8 -- REQUIRE_EQUAL(4, square8(2)); + // #TEST#: R1228 Rename function square6 +- REQUIRE_EQUAL(4, square6(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1229 Rename function square8 -- const double d = square8(2.0); + // #TEST#: R1229 Rename function square6 +- const double d = square6(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic diff --git a/results/diffs/R1229.txt b/results/diffs/R1229.txt index 6fe822e..42db63e 100644 --- a/results/diffs/R1229.txt +++ b/results/diffs/R1229.txt @@ -1,24 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..26b846d 100644 +index 024d6a2..d41a4d9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -206,7 +206,7 @@ template - // #TEST#: R1073 Rename function square8 - // #TEST#: R1074 Rename second use of T - // #TEST#: R1075 Rename parameter value --T square8(T value) +@@ -169,7 +169,7 @@ template + // #TEST#: R1056 Rename function square6 + // #TEST#: R1057 Rename second use of T + // #TEST#: R1058 Rename parameter value +-T square6(T value) +T goink(T value) - // #TEST#: R1076 Rename first use of T - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable -@@ -510,9 +510,9 @@ void f1() - // single template parameter function with combined constraint on function + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +@@ -492,9 +492,9 @@ void f1() + // single template parameter function with conjunctive constraint on function { - // #TEST#: R1228 Rename function square8 -- REQUIRE_EQUAL(4, square8(2)); + // #TEST#: R1228 Rename function square6 +- REQUIRE_EQUAL(4, square6(2)); + REQUIRE_EQUAL(4, goink(2)); - // #TEST#: R1229 Rename function square8 -- const double d = square8(2.0); + // #TEST#: R1229 Rename function square6 +- const double d = square6(2.0); + const double d = goink(2.0); REQUIRE_EQUAL(4.0, d); // Rope is not std::is_arithmetic diff --git a/results/diffs/R1230.txt b/results/diffs/R1230.txt index 2851af4..07076d2 100644 --- a/results/diffs/R1230.txt +++ b/results/diffs/R1230.txt @@ -1,30 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..26ffe94 100644 +index 024d6a2..e02246d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs --auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -192,7 +192,7 @@ template + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value +-T square7(T value) ++T goink(T value) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs -@@ -520,12 +520,12 @@ void f1() - // multiple template parameter function with simple constraint on template parameters + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value +@@ -501,9 +501,9 @@ void f1() + // single template parameter function with combined constraint on template parameter { - // #TEST#: R1230 Rename function product1 -- REQUIRE_EQUAL(6.0, product1(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1231 Rename function product1 -- const double d = product1(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // #TEST#: R1232 Rename function product1 -- const Rope r = product1(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); + // #TEST#: R1230 Rename function square7 +- REQUIRE_EQUAL(4, square7(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1231 Rename function square7 +- const double d = square7(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic } - // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1231.txt b/results/diffs/R1231.txt index 2851af4..07076d2 100644 --- a/results/diffs/R1231.txt +++ b/results/diffs/R1231.txt @@ -1,30 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..26ffe94 100644 +index 024d6a2..e02246d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs --auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -192,7 +192,7 @@ template + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T + // #TEST#: R1072 Rename parameter value +-T square7(T value) ++T goink(T value) { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs -@@ -520,12 +520,12 @@ void f1() - // multiple template parameter function with simple constraint on template parameters + // #TEST#: R1073 Rename first use of value + // #TEST#: R1074 Rename second use of value +@@ -501,9 +501,9 @@ void f1() + // single template parameter function with combined constraint on template parameter { - // #TEST#: R1230 Rename function product1 -- REQUIRE_EQUAL(6.0, product1(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1231 Rename function product1 -- const double d = product1(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // #TEST#: R1232 Rename function product1 -- const Rope r = product1(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); + // #TEST#: R1230 Rename function square7 +- REQUIRE_EQUAL(4, square7(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1231 Rename function square7 +- const double d = square7(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic } - // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1232.txt b/results/diffs/R1232.txt index 2851af4..0ca0b0e 100644 --- a/results/diffs/R1232.txt +++ b/results/diffs/R1232.txt @@ -1,30 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..26ffe94 100644 +index 024d6a2..26b846d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -234,7 +234,7 @@ template - // #TEST#: R1092 Rename parameter rhs - // #TEST#: R1093 Rename use of lhs - // #TEST#: R1094 Rename use of rhs --auto product1(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1095 Rename use of lhs - // #TEST#: R1096 Rename use of rhs -@@ -520,12 +520,12 @@ void f1() - // multiple template parameter function with simple constraint on template parameters +@@ -206,7 +206,7 @@ template + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value +-T square8(T value) ++T goink(T value) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable +@@ -510,9 +510,9 @@ void f1() + // single template parameter function with combined constraint on function { - // #TEST#: R1230 Rename function product1 -- REQUIRE_EQUAL(6.0, product1(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1231 Rename function product1 -- const double d = product1(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // #TEST#: R1232 Rename function product1 -- const Rope r = product1(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); + // #TEST#: R1232 Rename function square8 +- REQUIRE_EQUAL(4, square8(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1233 Rename function square8 +- const double d = square8(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic } - // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1233.txt b/results/diffs/R1233.txt index 102ac3f..0ca0b0e 100644 --- a/results/diffs/R1233.txt +++ b/results/diffs/R1233.txt @@ -1,30 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..2ca8006 100644 +index 024d6a2..26b846d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs --auto product2(T lhs, U rhs) -> decltype(lhs * rhs) -+auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -@@ -531,12 +531,12 @@ void f1() - // multiple template parameter function with simple constraint on function +@@ -206,7 +206,7 @@ template + // #TEST#: R1077 Rename function square8 + // #TEST#: R1078 Rename second use of T + // #TEST#: R1079 Rename parameter value +-T square8(T value) ++T goink(T value) + // #TEST#: R1080 Rename first use of T + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable +@@ -510,9 +510,9 @@ void f1() + // single template parameter function with combined constraint on function { - // #TEST#: R1233 Rename function product2 -- REQUIRE_EQUAL(6.0, product2(2, 3.0)); -+ REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1234 Rename function product2 -- const double d = product2(2.0, 3.0); -+ const double d = goink(2.0, 3.0); - REQUIRE_EQUAL(6.0, d); - // #TEST#: R1235 Rename function product2 -- const Rope r = product2(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); + // #TEST#: R1232 Rename function square8 +- REQUIRE_EQUAL(4, square8(2)); ++ REQUIRE_EQUAL(4, goink(2)); + // #TEST#: R1233 Rename function square8 +- const double d = square8(2.0); ++ const double d = goink(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic } - // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1234.txt b/results/diffs/R1234.txt index 102ac3f..3360e57 100644 --- a/results/diffs/R1234.txt +++ b/results/diffs/R1234.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..2ca8006 100644 +index 024d6a2..26ffe94 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs --auto product2(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -234,7 +234,7 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs +-auto product1(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -@@ -531,12 +531,12 @@ void f1() - // multiple template parameter function with simple constraint on function + { + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs +@@ -520,12 +520,12 @@ void f1() + // multiple template parameter function with simple constraint on template parameters { - // #TEST#: R1233 Rename function product2 -- REQUIRE_EQUAL(6.0, product2(2, 3.0)); + // #TEST#: R1234 Rename function product1 +- REQUIRE_EQUAL(6.0, product1(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1234 Rename function product2 -- const double d = product2(2.0, 3.0); + // #TEST#: R1235 Rename function product1 +- const double d = product1(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1235 Rename function product2 -- const Rope r = product2(Rope{"two"}, Rope{"three"}); + // #TEST#: R1236 Rename function product1 +- const Rope r = product1(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - // multiple template parameter function with disjunctive constraint on template parameters + // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1235.txt b/results/diffs/R1235.txt index 102ac3f..3360e57 100644 --- a/results/diffs/R1235.txt +++ b/results/diffs/R1235.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..2ca8006 100644 +index 024d6a2..26ffe94 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -253,7 +253,7 @@ template - // #TEST#: R1104 Rename parameter rhs - // #TEST#: R1105 Rename use of lhs - // #TEST#: R1106 Rename use of rhs --auto product2(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -234,7 +234,7 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs +-auto product1(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -@@ -531,12 +531,12 @@ void f1() - // multiple template parameter function with simple constraint on function + { + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs +@@ -520,12 +520,12 @@ void f1() + // multiple template parameter function with simple constraint on template parameters { - // #TEST#: R1233 Rename function product2 -- REQUIRE_EQUAL(6.0, product2(2, 3.0)); + // #TEST#: R1234 Rename function product1 +- REQUIRE_EQUAL(6.0, product1(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1234 Rename function product2 -- const double d = product2(2.0, 3.0); + // #TEST#: R1235 Rename function product1 +- const double d = product1(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1235 Rename function product2 -- const Rope r = product2(Rope{"two"}, Rope{"three"}); + // #TEST#: R1236 Rename function product1 +- const Rope r = product1(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - // multiple template parameter function with disjunctive constraint on template parameters + // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1236.txt b/results/diffs/R1236.txt index ff1c5ff..3360e57 100644 --- a/results/diffs/R1236.txt +++ b/results/diffs/R1236.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..96f77bd 100644 +index 024d6a2..26ffe94 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs --auto product3(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -234,7 +234,7 @@ template + // #TEST#: R1096 Rename parameter rhs + // #TEST#: R1097 Rename use of lhs + // #TEST#: R1098 Rename use of rhs +-auto product1(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs -@@ -542,12 +542,12 @@ void f1() - // multiple template parameter function with disjunctive constraint on template parameters + // #TEST#: R1099 Rename use of lhs + // #TEST#: R1100 Rename use of rhs +@@ -520,12 +520,12 @@ void f1() + // multiple template parameter function with simple constraint on template parameters { - // #TEST#: R1236 Rename function product3 -- REQUIRE_EQUAL(6.0, product3(2, 3.0)); + // #TEST#: R1234 Rename function product1 +- REQUIRE_EQUAL(6.0, product1(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1237 Rename function product3 -- const double d = product3(2.0, 3.0); + // #TEST#: R1235 Rename function product1 +- const double d = product1(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1238 Rename function product3 -- const Rope r = product3(Rope{"two"}, Rope{"three"}); + // #TEST#: R1236 Rename function product1 +- const Rope r = product1(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - // multiple template parameter function with disjunctive constraint on function + // multiple template parameter function with simple constraint on function diff --git a/results/diffs/R1237.txt b/results/diffs/R1237.txt index ff1c5ff..5ffc0b2 100644 --- a/results/diffs/R1237.txt +++ b/results/diffs/R1237.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..96f77bd 100644 +index 024d6a2..2ca8006 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs --auto product3(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -253,7 +253,7 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs +-auto product2(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs -@@ -542,12 +542,12 @@ void f1() - // multiple template parameter function with disjunctive constraint on template parameters + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +@@ -531,12 +531,12 @@ void f1() + // multiple template parameter function with simple constraint on function { - // #TEST#: R1236 Rename function product3 -- REQUIRE_EQUAL(6.0, product3(2, 3.0)); + // #TEST#: R1237 Rename function product2 +- REQUIRE_EQUAL(6.0, product2(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1237 Rename function product3 -- const double d = product3(2.0, 3.0); + // #TEST#: R1238 Rename function product2 +- const double d = product2(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1238 Rename function product3 -- const Rope r = product3(Rope{"two"}, Rope{"three"}); + // #TEST#: R1239 Rename function product2 +- const Rope r = product2(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - // multiple template parameter function with disjunctive constraint on function + // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1238.txt b/results/diffs/R1238.txt index ff1c5ff..5ffc0b2 100644 --- a/results/diffs/R1238.txt +++ b/results/diffs/R1238.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..96f77bd 100644 +index 024d6a2..2ca8006 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -281,7 +281,7 @@ template - // #TEST#: R1123 Rename parameter rhs - // #TEST#: R1124 Rename use of lhs - // #TEST#: R1125 Rename use of rhs --auto product3(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -253,7 +253,7 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs +-auto product2(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1126 Rename use of lhs - // #TEST#: R1127 Rename use of rhs -@@ -542,12 +542,12 @@ void f1() - // multiple template parameter function with disjunctive constraint on template parameters + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +@@ -531,12 +531,12 @@ void f1() + // multiple template parameter function with simple constraint on function { - // #TEST#: R1236 Rename function product3 -- REQUIRE_EQUAL(6.0, product3(2, 3.0)); + // #TEST#: R1237 Rename function product2 +- REQUIRE_EQUAL(6.0, product2(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1237 Rename function product3 -- const double d = product3(2.0, 3.0); + // #TEST#: R1238 Rename function product2 +- const double d = product2(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1238 Rename function product3 -- const Rope r = product3(Rope{"two"}, Rope{"three"}); + // #TEST#: R1239 Rename function product2 +- const Rope r = product2(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - // multiple template parameter function with disjunctive constraint on function + // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1239.txt b/results/diffs/R1239.txt index a13a67f..5ffc0b2 100644 --- a/results/diffs/R1239.txt +++ b/results/diffs/R1239.txt @@ -1,29 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..a5fd447 100644 +index 024d6a2..2ca8006 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs --auto product4(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -253,7 +253,7 @@ template + // #TEST#: R1108 Rename parameter rhs + // #TEST#: R1109 Rename use of lhs + // #TEST#: R1110 Rename use of rhs +-auto product2(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T -@@ -553,11 +553,11 @@ void f1() - // multiple template parameter function with disjunctive constraint on function + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +@@ -531,12 +531,12 @@ void f1() + // multiple template parameter function with simple constraint on function { - // #TEST#: R1239 Rename function product4 -- REQUIRE_EQUAL(6.0, product4(2, 3.0)); + // #TEST#: R1237 Rename function product2 +- REQUIRE_EQUAL(6.0, product2(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1240 Rename function product4 -- const double d = product4(2.0, 3.0); + // #TEST#: R1238 Rename function product2 +- const double d = product2(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); -- const Rope r = product4(Rope{"two"}, Rope{"three"}); + // #TEST#: R1239 Rename function product2 +- const Rope r = product2(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - // multiple template parameter function with conjunctive constraint on template parameters + // multiple template parameter function with disjunctive constraint on template parameters diff --git a/results/diffs/R1240.txt b/results/diffs/R1240.txt index a13a67f..097ce73 100644 --- a/results/diffs/R1240.txt +++ b/results/diffs/R1240.txt @@ -1,29 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..a5fd447 100644 +index 024d6a2..96f77bd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs --auto product4(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -281,7 +281,7 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs +-auto product3(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T -@@ -553,11 +553,11 @@ void f1() - // multiple template parameter function with disjunctive constraint on function + { + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs +@@ -542,12 +542,12 @@ void f1() + // multiple template parameter function with disjunctive constraint on template parameters { - // #TEST#: R1239 Rename function product4 -- REQUIRE_EQUAL(6.0, product4(2, 3.0)); + // #TEST#: R1240 Rename function product3 +- REQUIRE_EQUAL(6.0, product3(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1240 Rename function product4 -- const double d = product4(2.0, 3.0); + // #TEST#: R1241 Rename function product3 +- const double d = product3(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); -- const Rope r = product4(Rope{"two"}, Rope{"three"}); + // #TEST#: R1242 Rename function product3 +- const Rope r = product3(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - // multiple template parameter function with conjunctive constraint on template parameters + // multiple template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1241.txt b/results/diffs/R1241.txt index e65d3b2..097ce73 100644 --- a/results/diffs/R1241.txt +++ b/results/diffs/R1241.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..f63d41b 100644 +index 024d6a2..96f77bd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -300,7 +300,7 @@ template - // #TEST#: R1135 Rename parameter rhs - // #TEST#: R1136 Rename use of lhs - // #TEST#: R1137 Rename use of rhs --auto product4(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -281,7 +281,7 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs +-auto product3(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1138 Rename first use of T - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T -@@ -553,12 +553,12 @@ void f1() - // multiple template parameter function with disjunctive constraint on function + { + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs +@@ -542,12 +542,12 @@ void f1() + // multiple template parameter function with disjunctive constraint on template parameters { - // #TEST#: R1239 Rename function product4 -- REQUIRE_EQUAL(6.0, product4(2, 3.0)); + // #TEST#: R1240 Rename function product3 +- REQUIRE_EQUAL(6.0, product3(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1240 Rename function product4 -- const double d = product4(2.0, 3.0); + // #TEST#: R1241 Rename function product3 +- const double d = product3(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1241 Rename function product4 -- const Rope r = product4(Rope{"two"}, Rope{"three"}); + // #TEST#: R1242 Rename function product3 +- const Rope r = product3(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - // multiple template parameter function with conjunctive constraint on template parameters + // multiple template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1242.txt b/results/diffs/R1242.txt index 47c5f35..097ce73 100644 --- a/results/diffs/R1242.txt +++ b/results/diffs/R1242.txt @@ -1,26 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..100c088 100644 +index 024d6a2..96f77bd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs --auto product5(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -281,7 +281,7 @@ template + // #TEST#: R1127 Rename parameter rhs + // #TEST#: R1128 Rename use of lhs + // #TEST#: R1129 Rename use of rhs +-auto product3(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs -@@ -563,9 +563,9 @@ void f1() - // multiple template parameter function with conjunctive constraint on template parameters + // #TEST#: R1130 Rename use of lhs + // #TEST#: R1131 Rename use of rhs +@@ -542,12 +542,12 @@ void f1() + // multiple template parameter function with disjunctive constraint on template parameters { - // #TEST#: R1242 Rename function product5 -- REQUIRE_EQUAL(6.0, product5(2, 3.0)); + // #TEST#: R1240 Rename function product3 +- REQUIRE_EQUAL(6.0, product3(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1243 Rename function product5 -- const double d = product5(2.0, 3.0); + // #TEST#: R1241 Rename function product3 +- const double d = product3(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1242 Rename function product3 +- const Rope r = product3(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); } + // multiple template parameter function with disjunctive constraint on function diff --git a/results/diffs/R1243.txt b/results/diffs/R1243.txt index 47c5f35..a956a2c 100644 --- a/results/diffs/R1243.txt +++ b/results/diffs/R1243.txt @@ -1,26 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..100c088 100644 +index 024d6a2..a5fd447 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -329,7 +329,7 @@ template - // #TEST#: R1155 Rename parameter rhs - // #TEST#: R1156 Rename use of lhs - // #TEST#: R1157 Rename use of rhs --auto product5(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -300,7 +300,7 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs +-auto product4(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1158 Rename use of lhs - // #TEST#: R1159 Rename use of rhs -@@ -563,9 +563,9 @@ void f1() - // multiple template parameter function with conjunctive constraint on template parameters + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T +@@ -553,11 +553,11 @@ void f1() + // multiple template parameter function with disjunctive constraint on function { - // #TEST#: R1242 Rename function product5 -- REQUIRE_EQUAL(6.0, product5(2, 3.0)); + // #TEST#: R1243 Rename function product4 +- REQUIRE_EQUAL(6.0, product4(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1243 Rename function product5 -- const double d = product5(2.0, 3.0); + // #TEST#: R1244 Rename function product4 +- const double d = product4(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // Rope is not std::is_arithmetic +- const Rope r = product4(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); } + // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1244.txt b/results/diffs/R1244.txt index 7d2e1af..a956a2c 100644 --- a/results/diffs/R1244.txt +++ b/results/diffs/R1244.txt @@ -1,26 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8497913 100644 +index 024d6a2..a5fd447 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -348,7 +348,7 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs --auto product6(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -300,7 +300,7 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs +-auto product4(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T -@@ -572,9 +572,9 @@ void f1() - // multiple template parameter function with conjunctive constraint on function + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T +@@ -553,11 +553,11 @@ void f1() + // multiple template parameter function with disjunctive constraint on function { - // #TEST#: R1244 Rename function product6 -- REQUIRE_EQUAL(6.0, product6(2, 3.0)); + // #TEST#: R1243 Rename function product4 +- REQUIRE_EQUAL(6.0, product4(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1245 Rename function product6 -- const double d = product6(2.0, 3.0); + // #TEST#: R1244 Rename function product4 +- const double d = product4(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // Rope is not std::is_arithmetic +- const Rope r = product4(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); } + // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1245.txt b/results/diffs/R1245.txt index 7d2e1af..b4d7e77 100644 --- a/results/diffs/R1245.txt +++ b/results/diffs/R1245.txt @@ -1,26 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..8497913 100644 +index 977575b..f63d41b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -348,7 +348,7 @@ template - // #TEST#: R1167 Rename parameter rhs - // #TEST#: R1168 Rename use of lhs - // #TEST#: R1169 Rename use of rhs --auto product6(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -300,7 +300,7 @@ template + // #TEST#: R1139 Rename parameter rhs + // #TEST#: R1140 Rename use of lhs + // #TEST#: R1141 Rename use of rhs +-auto product4(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1170 Rename first use of T - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T -@@ -572,9 +572,9 @@ void f1() - // multiple template parameter function with conjunctive constraint on function + // #TEST#: R1142 Rename first use of T + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T +@@ -553,12 +553,12 @@ void f1() + // multiple template parameter function with disjunctive constraint on function { - // #TEST#: R1244 Rename function product6 -- REQUIRE_EQUAL(6.0, product6(2, 3.0)); + // #TEST#: R1243 Rename function product4 +- REQUIRE_EQUAL(6.0, product4(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1245 Rename function product6 -- const double d = product6(2.0, 3.0); + // #TEST#: R1244 Rename function product4 +- const double d = product4(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1245 Rename function product4 +- const Rope r = product4(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); } + // multiple template parameter function with conjunctive constraint on template parameters diff --git a/results/diffs/R1246.txt b/results/diffs/R1246.txt index 475a5ec..9f4bb63 100644 --- a/results/diffs/R1246.txt +++ b/results/diffs/R1246.txt @@ -1,30 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..db99631 100644 +index 024d6a2..100c088 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs --auto product7(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -329,7 +329,7 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs +-auto product5(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs -@@ -581,12 +581,12 @@ void f1() - // multiple template parameter function with combined constraint on template parameters + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs +@@ -563,9 +563,9 @@ void f1() + // multiple template parameter function with conjunctive constraint on template parameters { - // #TEST#: R1246 Rename function product7 -- REQUIRE_EQUAL(6.0, product7(2, 3.0)); + // #TEST#: R1246 Rename function product5 +- REQUIRE_EQUAL(6.0, product5(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1247 Rename function product7 -- const double d = product7(2.0, 3.0); + // #TEST#: R1247 Rename function product5 +- const double d = product5(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1248 Rename function product7 -- const Rope r = product7(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); + // Rope is not std::is_arithmetic } - // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1247.txt b/results/diffs/R1247.txt index 475a5ec..9f4bb63 100644 --- a/results/diffs/R1247.txt +++ b/results/diffs/R1247.txt @@ -1,30 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..db99631 100644 +index 024d6a2..100c088 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs --auto product7(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -329,7 +329,7 @@ template + // #TEST#: R1159 Rename parameter rhs + // #TEST#: R1160 Rename use of lhs + // #TEST#: R1161 Rename use of rhs +-auto product5(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs -@@ -581,12 +581,12 @@ void f1() - // multiple template parameter function with combined constraint on template parameters + // #TEST#: R1162 Rename use of lhs + // #TEST#: R1163 Rename use of rhs +@@ -563,9 +563,9 @@ void f1() + // multiple template parameter function with conjunctive constraint on template parameters { - // #TEST#: R1246 Rename function product7 -- REQUIRE_EQUAL(6.0, product7(2, 3.0)); + // #TEST#: R1246 Rename function product5 +- REQUIRE_EQUAL(6.0, product5(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1247 Rename function product7 -- const double d = product7(2.0, 3.0); + // #TEST#: R1247 Rename function product5 +- const double d = product5(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1248 Rename function product7 -- const Rope r = product7(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); + // Rope is not std::is_arithmetic } - // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1248.txt b/results/diffs/R1248.txt index 475a5ec..8ef6a04 100644 --- a/results/diffs/R1248.txt +++ b/results/diffs/R1248.txt @@ -1,30 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..db99631 100644 +index 024d6a2..8497913 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -378,7 +378,7 @@ template - // #TEST#: R1188 Rename parameter rhs - // #TEST#: R1189 Rename use of lhs - // #TEST#: R1190 Rename use of rhs --auto product7(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -348,7 +348,7 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs +-auto product6(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - { - // #TEST#: R1191 Rename use of lhs - // #TEST#: R1192 Rename use of rhs -@@ -581,12 +581,12 @@ void f1() - // multiple template parameter function with combined constraint on template parameters + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T +@@ -572,9 +572,9 @@ void f1() + // multiple template parameter function with conjunctive constraint on function { - // #TEST#: R1246 Rename function product7 -- REQUIRE_EQUAL(6.0, product7(2, 3.0)); + // #TEST#: R1248 Rename function product6 +- REQUIRE_EQUAL(6.0, product6(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1247 Rename function product7 -- const double d = product7(2.0, 3.0); + // #TEST#: R1249 Rename function product6 +- const double d = product6(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1248 Rename function product7 -- const Rope r = product7(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); + // Rope is not std::is_arithmetic } - // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1249.txt b/results/diffs/R1249.txt index 0ec4ca6..8ef6a04 100644 --- a/results/diffs/R1249.txt +++ b/results/diffs/R1249.txt @@ -1,30 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f9e644c 100644 +index 024d6a2..8497913 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs --auto product8(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -348,7 +348,7 @@ template + // #TEST#: R1171 Rename parameter rhs + // #TEST#: R1172 Rename use of lhs + // #TEST#: R1173 Rename use of rhs +-auto product6(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable -@@ -592,12 +592,12 @@ void f1() - // multiple template parameter function with combined constraint on function + // #TEST#: R1174 Rename first use of T + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T +@@ -572,9 +572,9 @@ void f1() + // multiple template parameter function with conjunctive constraint on function { - // #TEST#: R1249 Rename function product8 -- REQUIRE_EQUAL(6.0, product8(2, 3.0)); + // #TEST#: R1248 Rename function product6 +- REQUIRE_EQUAL(6.0, product6(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1250 Rename function product8 -- const double d = product8(2.0, 3.0); + // #TEST#: R1249 Rename function product6 +- const double d = product6(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1251 Rename function product8 -- const Rope r = product8(Rope{"two"}, Rope{"three"}); -+ const Rope r = goink(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); + // Rope is not std::is_arithmetic } - } diff --git a/results/diffs/R1250.txt b/results/diffs/R1250.txt index 0ec4ca6..bd85e65 100644 --- a/results/diffs/R1250.txt +++ b/results/diffs/R1250.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f9e644c 100644 +index 024d6a2..db99631 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs --auto product8(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -378,7 +378,7 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs +-auto product7(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable -@@ -592,12 +592,12 @@ void f1() - // multiple template parameter function with combined constraint on function + { + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs +@@ -581,12 +581,12 @@ void f1() + // multiple template parameter function with combined constraint on template parameters { - // #TEST#: R1249 Rename function product8 -- REQUIRE_EQUAL(6.0, product8(2, 3.0)); + // #TEST#: R1250 Rename function product7 +- REQUIRE_EQUAL(6.0, product7(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1250 Rename function product8 -- const double d = product8(2.0, 3.0); + // #TEST#: R1251 Rename function product7 +- const double d = product7(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1251 Rename function product8 -- const Rope r = product8(Rope{"two"}, Rope{"three"}); + // #TEST#: R1252 Rename function product7 +- const Rope r = product7(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - } + // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1251.txt b/results/diffs/R1251.txt index 0ec4ca6..bd85e65 100644 --- a/results/diffs/R1251.txt +++ b/results/diffs/R1251.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f9e644c 100644 +index 024d6a2..db99631 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -397,7 +397,7 @@ template - // #TEST#: R1200 Rename parameter rhs - // #TEST#: R1201 Rename use of lhs - // #TEST#: R1202 Rename use of rhs --auto product8(T lhs, U rhs) -> decltype(lhs * rhs) +@@ -378,7 +378,7 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs +-auto product7(T lhs, U rhs) -> decltype(lhs * rhs) +auto goink(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1203 Rename first use of T - // #TEST#: R1204 Rename first use of U - // #TEST#: R1205 Rename concept Multiplicable -@@ -592,12 +592,12 @@ void f1() - // multiple template parameter function with combined constraint on function + { + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs +@@ -581,12 +581,12 @@ void f1() + // multiple template parameter function with combined constraint on template parameters { - // #TEST#: R1249 Rename function product8 -- REQUIRE_EQUAL(6.0, product8(2, 3.0)); + // #TEST#: R1250 Rename function product7 +- REQUIRE_EQUAL(6.0, product7(2, 3.0)); + REQUIRE_EQUAL(6.0, goink(2, 3.0)); - // #TEST#: R1250 Rename function product8 -- const double d = product8(2.0, 3.0); + // #TEST#: R1251 Rename function product7 +- const double d = product7(2.0, 3.0); + const double d = goink(2.0, 3.0); REQUIRE_EQUAL(6.0, d); - // #TEST#: R1251 Rename function product8 -- const Rope r = product8(Rope{"two"}, Rope{"three"}); + // #TEST#: R1252 Rename function product7 +- const Rope r = product7(Rope{"two"}, Rope{"three"}); + const Rope r = goink(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); } - } + // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1252.txt b/results/diffs/R1252.txt index f42460b..bd85e65 100644 --- a/results/diffs/R1252.txt +++ b/results/diffs/R1252.txt @@ -1,26 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ea47379 100644 +index 024d6a2..db99631 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -604,17 +604,17 @@ void f1() - - // single constraint on single template parameter - // #TEST#: R1252 Rename template parameter T --template -+template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Squareable - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 +@@ -378,7 +378,7 @@ template + // #TEST#: R1192 Rename parameter rhs + // #TEST#: R1193 Rename use of lhs + // #TEST#: R1194 Rename use of rhs +-auto product7(T lhs, U rhs) -> decltype(lhs * rhs) ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) { - public: - // #TEST#: R1256 Rename first use of T - // #TEST#: R1257 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const + // #TEST#: R1195 Rename use of lhs + // #TEST#: R1196 Rename use of rhs +@@ -581,12 +581,12 @@ void f1() + // multiple template parameter function with combined constraint on template parameters { - return value * value; + // #TEST#: R1250 Rename function product7 +- REQUIRE_EQUAL(6.0, product7(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1251 Rename function product7 +- const double d = product7(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // #TEST#: R1252 Rename function product7 +- const Rope r = product7(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); } + // multiple template parameter function with combined constraint on function diff --git a/results/diffs/R1253.txt b/results/diffs/R1253.txt index 9ecac2b..1f0af61 100644 --- a/results/diffs/R1253.txt +++ b/results/diffs/R1253.txt @@ -1,194 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..f9e644c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +@@ -397,7 +397,7 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs +-auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable +@@ -592,12 +592,12 @@ void f1() + // multiple template parameter function with combined constraint on function + { + // #TEST#: R1253 Rename function product8 +- REQUIRE_EQUAL(6.0, product8(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1254 Rename function product8 +- const double d = product8(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // #TEST#: R1255 Rename function product8 +- const Rope r = product8(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } + } diff --git a/results/diffs/R1254.txt b/results/diffs/R1254.txt index f42460b..1f0af61 100644 --- a/results/diffs/R1254.txt +++ b/results/diffs/R1254.txt @@ -1,26 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ea47379 100644 +index 024d6a2..f9e644c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -604,17 +604,17 @@ void f1() - - // single constraint on single template parameter - // #TEST#: R1252 Rename template parameter T --template -+template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Squareable - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { - public: - // #TEST#: R1256 Rename first use of T - // #TEST#: R1257 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const +@@ -397,7 +397,7 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs +-auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable +@@ -592,12 +592,12 @@ void f1() + // multiple template parameter function with combined constraint on function { - return value * value; + // #TEST#: R1253 Rename function product8 +- REQUIRE_EQUAL(6.0, product8(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1254 Rename function product8 +- const double d = product8(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // #TEST#: R1255 Rename function product8 +- const Rope r = product8(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); } + } diff --git a/results/diffs/R1255.txt b/results/diffs/R1255.txt index 65ce86b..1f0af61 100644 --- a/results/diffs/R1255.txt +++ b/results/diffs/R1255.txt @@ -1,32 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f787661 100644 +index 024d6a2..f9e644c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -609,7 +609,7 @@ template - // #TEST#: R1254 Rename use of T - requires Squareable - // #TEST#: R1255 Rename class Sqr1 --class Sqr1 -+class Goink - { - public: - // #TEST#: R1256 Rename first use of T -@@ -1117,14 +1117,14 @@ void f2() - // single constraint on single template parameter +@@ -397,7 +397,7 @@ template + // #TEST#: R1204 Rename parameter rhs + // #TEST#: R1205 Rename use of lhs + // #TEST#: R1206 Rename use of rhs +-auto product8(T lhs, U rhs) -> decltype(lhs * rhs) ++auto goink(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1207 Rename first use of T + // #TEST#: R1208 Rename first use of U + // #TEST#: R1209 Rename concept Multiplicable +@@ -592,12 +592,12 @@ void f1() + // multiple template parameter function with combined constraint on function { - // #TEST#: R1516 Rename Sqr1 -- Sqr1 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1517 Rename Sqr1 -- Sqr1 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1518 Rename Sqr1 -- Sqr1 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + // #TEST#: R1253 Rename function product8 +- REQUIRE_EQUAL(6.0, product8(2, 3.0)); ++ REQUIRE_EQUAL(6.0, goink(2, 3.0)); + // #TEST#: R1254 Rename function product8 +- const double d = product8(2.0, 3.0); ++ const double d = goink(2.0, 3.0); + REQUIRE_EQUAL(6.0, d); + // #TEST#: R1255 Rename function product8 +- const Rope r = product8(Rope{"two"}, Rope{"three"}); ++ const Rope r = goink(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); } + } diff --git a/results/diffs/R1256.txt b/results/diffs/R1256.txt index f42460b..36606c8 100644 --- a/results/diffs/R1256.txt +++ b/results/diffs/R1256.txt @@ -5,19 +5,19 @@ index 024d6a2..ea47379 100644 @@ -604,17 +604,17 @@ void f1() // single constraint on single template parameter - // #TEST#: R1252 Rename template parameter T + // #TEST#: R1256 Rename template parameter T -template +template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T - requires Squareable + requires Squareable - // #TEST#: R1255 Rename class Sqr1 + // #TEST#: R1259 Rename class Sqr1 class Sqr1 { public: - // #TEST#: R1256 Rename first use of T - // #TEST#: R1257 Rename second of T + // #TEST#: R1260 Rename first use of T + // #TEST#: R1261 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1257.txt b/results/diffs/R1257.txt index f42460b..ea6e22e 100644 --- a/results/diffs/R1257.txt +++ b/results/diffs/R1257.txt @@ -1,26 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ea47379 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -604,17 +604,17 @@ void f1() - - // single constraint on single template parameter - // #TEST#: R1252 Rename template parameter T --template -+template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T - requires Squareable -+ requires Squareable - // #TEST#: R1255 Rename class Sqr1 ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 class Sqr1 { - public: - // #TEST#: R1256 Rename first use of T - // #TEST#: R1257 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1258.txt b/results/diffs/R1258.txt index efd0a2d..36606c8 100644 --- a/results/diffs/R1258.txt +++ b/results/diffs/R1258.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..0d14eed 100644 +index 024d6a2..ea47379 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -621,16 +621,16 @@ public: - }; +@@ -604,17 +604,17 @@ void f1() - // #TEST#: R1258 Rename template parameter T + // single constraint on single template parameter + // #TEST#: R1256 Rename template parameter T -template +template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T - requires Squareable + requires Squareable - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 { - // #TEST#: R1262 Rename first use of T - // #TEST#: R1263 Rename second of T + public: + // #TEST#: R1260 Rename first use of T + // #TEST#: R1261 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1259.txt b/results/diffs/R1259.txt index 9ecac2b..77805d8 100644 --- a/results/diffs/R1259.txt +++ b/results/diffs/R1259.txt @@ -1,194 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..f787661 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +@@ -609,7 +609,7 @@ template + // #TEST#: R1258 Rename use of T + requires Squareable + // #TEST#: R1259 Rename class Sqr1 +-class Sqr1 ++class Goink + { + public: + // #TEST#: R1260 Rename first use of T +@@ -1117,14 +1117,14 @@ void f2() + // single constraint on single template parameter + { + // #TEST#: R1520 Rename Sqr1 +- Sqr1 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1521 Rename Sqr1 +- Sqr1 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1522 Rename Sqr1 +- Sqr1 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } diff --git a/results/diffs/R1260.txt b/results/diffs/R1260.txt index efd0a2d..36606c8 100644 --- a/results/diffs/R1260.txt +++ b/results/diffs/R1260.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..0d14eed 100644 +index 024d6a2..ea47379 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -621,16 +621,16 @@ public: - }; +@@ -604,17 +604,17 @@ void f1() - // #TEST#: R1258 Rename template parameter T + // single constraint on single template parameter + // #TEST#: R1256 Rename template parameter T -template +template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T - requires Squareable + requires Squareable - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 { - // #TEST#: R1262 Rename first use of T - // #TEST#: R1263 Rename second of T + public: + // #TEST#: R1260 Rename first use of T + // #TEST#: R1261 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1261.txt b/results/diffs/R1261.txt index 246c442..36606c8 100644 --- a/results/diffs/R1261.txt +++ b/results/diffs/R1261.txt @@ -1,32 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..de9d39c 100644 +index 024d6a2..ea47379 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -626,7 +626,7 @@ template - // #TEST#: R1260 Rename use of T - requires Squareable - // #TEST#: R1261 Rename class SqrStruct1 --struct SqrStruct1 -+struct Goink +@@ -604,17 +604,17 @@ void f1() + + // single constraint on single template parameter + // #TEST#: R1256 Rename template parameter T +-template ++template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Squareable + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 { - // #TEST#: R1262 Rename first use of T - // #TEST#: R1263 Rename second of T -@@ -1130,14 +1130,14 @@ void f2() - } + public: + // #TEST#: R1260 Rename first use of T + // #TEST#: R1261 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1519 Rename SqrStruct1 -- SqrStruct1 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1520 Rename SqrStruct1 -- SqrStruct1 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1521 Rename SqrStruct1 -- SqrStruct1 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + return value * value; } diff --git a/results/diffs/R1262.txt b/results/diffs/R1262.txt index efd0a2d..689fda5 100644 --- a/results/diffs/R1262.txt +++ b/results/diffs/R1262.txt @@ -5,18 +5,18 @@ index 024d6a2..0d14eed 100644 @@ -621,16 +621,16 @@ public: }; - // #TEST#: R1258 Rename template parameter T + // #TEST#: R1262 Rename template parameter T -template +template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T - requires Squareable + requires Squareable - // #TEST#: R1261 Rename class SqrStruct1 + // #TEST#: R1265 Rename class SqrStruct1 struct SqrStruct1 { - // #TEST#: R1262 Rename first use of T - // #TEST#: R1263 Rename second of T + // #TEST#: R1266 Rename first use of T + // #TEST#: R1267 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1263.txt b/results/diffs/R1263.txt index efd0a2d..ea6e22e 100644 --- a/results/diffs/R1263.txt +++ b/results/diffs/R1263.txt @@ -1,25 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..0d14eed 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -621,16 +621,16 @@ public: - }; - - // #TEST#: R1258 Rename template parameter T --template -+template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T - requires Squareable -+ requires Squareable - // #TEST#: R1261 Rename class SqrStruct1 ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 struct SqrStruct1 { - // #TEST#: R1262 Rename first use of T - // #TEST#: R1263 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1264.txt b/results/diffs/R1264.txt index 873a414..689fda5 100644 --- a/results/diffs/R1264.txt +++ b/results/diffs/R1264.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..19e5c38 100644 +index 024d6a2..0d14eed 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -637,16 +637,16 @@ struct SqrStruct1 +@@ -621,16 +621,16 @@ public: }; - // #TEST#: R1264 Rename template parameter T + // #TEST#: R1262 Rename template parameter T -template +template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T - requires Squareable + requires Squareable - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 { - // #TEST#: R1268 Rename first use of T - // #TEST#: R1269 Rename second of T + // #TEST#: R1266 Rename first use of T + // #TEST#: R1267 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1265.txt b/results/diffs/R1265.txt index 9ecac2b..fd92e1c 100644 --- a/results/diffs/R1265.txt +++ b/results/diffs/R1265.txt @@ -1,194 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..de9d39c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +@@ -626,7 +626,7 @@ template + // #TEST#: R1264 Rename use of T + requires Squareable + // #TEST#: R1265 Rename class SqrStruct1 +-struct SqrStruct1 ++struct Goink + { + // #TEST#: R1266 Rename first use of T + // #TEST#: R1267 Rename second of T +@@ -1130,14 +1130,14 @@ void f2() + } + { + // #TEST#: R1523 Rename SqrStruct1 +- SqrStruct1 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1524 Rename SqrStruct1 +- SqrStruct1 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1525 Rename SqrStruct1 +- SqrStruct1 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } diff --git a/results/diffs/R1266.txt b/results/diffs/R1266.txt index 873a414..689fda5 100644 --- a/results/diffs/R1266.txt +++ b/results/diffs/R1266.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..19e5c38 100644 +index 024d6a2..0d14eed 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -637,16 +637,16 @@ struct SqrStruct1 +@@ -621,16 +621,16 @@ public: }; - // #TEST#: R1264 Rename template parameter T + // #TEST#: R1262 Rename template parameter T -template +template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T - requires Squareable + requires Squareable - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 { - // #TEST#: R1268 Rename first use of T - // #TEST#: R1269 Rename second of T + // #TEST#: R1266 Rename first use of T + // #TEST#: R1267 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1267.txt b/results/diffs/R1267.txt index 5c0bac6..689fda5 100644 --- a/results/diffs/R1267.txt +++ b/results/diffs/R1267.txt @@ -1,32 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..57908e1 100644 +index 024d6a2..0d14eed 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -642,7 +642,7 @@ template - // #TEST#: R1266 Rename use of T - requires Squareable - // #TEST#: R1267 Rename class SqrUnion1 --union SqrUnion1 -+union Goink +@@ -621,16 +621,16 @@ public: + }; + + // #TEST#: R1262 Rename template parameter T +-template ++template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Squareable + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 { - // #TEST#: R1268 Rename first use of T - // #TEST#: R1269 Rename second of T -@@ -1143,14 +1143,14 @@ void f2() - } + // #TEST#: R1266 Rename first use of T + // #TEST#: R1267 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1522 Rename SqrUnion1 -- SqrUnion1 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1523 Rename SqrUnion1 -- SqrUnion1 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1524 Rename SqrUnion1 -- SqrUnion1 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + return value * value; } diff --git a/results/diffs/R1268.txt b/results/diffs/R1268.txt index 873a414..46d9558 100644 --- a/results/diffs/R1268.txt +++ b/results/diffs/R1268.txt @@ -5,18 +5,18 @@ index 024d6a2..19e5c38 100644 @@ -637,16 +637,16 @@ struct SqrStruct1 }; - // #TEST#: R1264 Rename template parameter T + // #TEST#: R1268 Rename template parameter T -template +template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T - requires Squareable + requires Squareable - // #TEST#: R1267 Rename class SqrUnion1 + // #TEST#: R1271 Rename class SqrUnion1 union SqrUnion1 { - // #TEST#: R1268 Rename first use of T - // #TEST#: R1269 Rename second of T + // #TEST#: R1272 Rename first use of T + // #TEST#: R1273 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1269.txt b/results/diffs/R1269.txt index 873a414..ea6e22e 100644 --- a/results/diffs/R1269.txt +++ b/results/diffs/R1269.txt @@ -1,25 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..19e5c38 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -637,16 +637,16 @@ struct SqrStruct1 - }; - - // #TEST#: R1264 Rename template parameter T --template -+template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T - requires Squareable -+ requires Squareable - // #TEST#: R1267 Rename class SqrUnion1 ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 union SqrUnion1 { - // #TEST#: R1268 Rename first use of T - // #TEST#: R1269 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1270.txt b/results/diffs/R1270.txt index 48ccd88..46d9558 100644 --- a/results/diffs/R1270.txt +++ b/results/diffs/R1270.txt @@ -1,23 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..05059db 100644 +index 024d6a2..19e5c38 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -654,17 +654,17 @@ union SqrUnion1 +@@ -637,16 +637,16 @@ struct SqrStruct1 + }; - // compound constraint on single template parameter, disjunction - // #TEST#: R1270 Rename template parameter T + // #TEST#: R1268 Rename template parameter T -template +template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Squareable + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 { - public: - // #TEST#: R1275 Rename first use of T - // #TEST#: R1276 Rename second of T + // #TEST#: R1272 Rename first use of T + // #TEST#: R1273 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1271.txt b/results/diffs/R1271.txt index 1782d87..9cd23d9 100644 --- a/results/diffs/R1271.txt +++ b/results/diffs/R1271.txt @@ -1,27 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..07673a4 100644 +index 024d6a2..57908e1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -655,18 +655,18 @@ union SqrUnion1 - - // compound constraint on single template parameter, disjunction - // #TEST#: R1270 Rename template parameter T --template -+template - // #TEST#: R1271 Rename first use of T - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 +@@ -642,7 +642,7 @@ template + // #TEST#: R1270 Rename use of T + requires Squareable + // #TEST#: R1271 Rename class SqrUnion1 +-union SqrUnion1 ++union Goink { - public: - // #TEST#: R1275 Rename first use of T - // #TEST#: R1276 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const + // #TEST#: R1272 Rename first use of T + // #TEST#: R1273 Rename second of T +@@ -1143,14 +1143,14 @@ void f2() + } { - return value * value; + // #TEST#: R1526 Rename SqrUnion1 +- SqrUnion1 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1527 Rename SqrUnion1 +- SqrUnion1 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1528 Rename SqrUnion1 +- SqrUnion1 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); } diff --git a/results/diffs/R1272.txt b/results/diffs/R1272.txt index 9ecac2b..46d9558 100644 --- a/results/diffs/R1272.txt +++ b/results/diffs/R1272.txt @@ -1,194 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..19e5c38 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T +@@ -637,16 +637,16 @@ struct SqrStruct1 + }; + + // #TEST#: R1268 Rename template parameter T +-template ++template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T - requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 ++ requires Squareable + // #TEST#: R1271 Rename class SqrUnion1 union SqrUnion1 { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { + // #TEST#: R1272 Rename first use of T + // #TEST#: R1273 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1273.txt b/results/diffs/R1273.txt index 48ccd88..46d9558 100644 --- a/results/diffs/R1273.txt +++ b/results/diffs/R1273.txt @@ -1,23 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..05059db 100644 +index 024d6a2..19e5c38 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -654,17 +654,17 @@ union SqrUnion1 +@@ -637,16 +637,16 @@ struct SqrStruct1 + }; - // compound constraint on single template parameter, disjunction - // #TEST#: R1270 Rename template parameter T + // #TEST#: R1268 Rename template parameter T -template +template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Squareable + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 { - public: - // #TEST#: R1275 Rename first use of T - // #TEST#: R1276 Rename second of T + // #TEST#: R1272 Rename first use of T + // #TEST#: R1273 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1274.txt b/results/diffs/R1274.txt index 1a35424..b9bf211 100644 --- a/results/diffs/R1274.txt +++ b/results/diffs/R1274.txt @@ -1,32 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..933bc06 100644 +index 024d6a2..05059db 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -659,7 +659,7 @@ template - // #TEST#: R1273 Rename use of T - requires std::is_arithmetic_v || Squareable - // #TEST#: R1274 Rename class Sqr2 --class Sqr2 -+class Goink +@@ -654,17 +654,17 @@ union SqrUnion1 + + // compound constraint on single template parameter, disjunction + // #TEST#: R1274 Rename template parameter T +-template ++template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 { public: - // #TEST#: R1275 Rename first use of T -@@ -1158,14 +1158,14 @@ void f2() - // compound constraint on single template parameter, disjunction + // #TEST#: R1279 Rename first use of T + // #TEST#: R1280 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1525 Rename Sqr2 -- Sqr2 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1526 Rename Sqr2 -- Sqr2 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1527 Rename Sqr2 -- Sqr2 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + return value * value; } diff --git a/results/diffs/R1275.txt b/results/diffs/R1275.txt index 48ccd88..7aaed2e 100644 --- a/results/diffs/R1275.txt +++ b/results/diffs/R1275.txt @@ -1,23 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..05059db 100644 +index 977575b..07673a4 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -654,17 +654,17 @@ union SqrUnion1 +@@ -655,18 +655,18 @@ union SqrUnion1 // compound constraint on single template parameter, disjunction - // #TEST#: R1270 Rename template parameter T + // #TEST#: R1274 Rename template parameter T -template +template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T + // #TEST#: R1275 Rename first use of T + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename second use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable - // #TEST#: R1274 Rename class Sqr2 + // #TEST#: R1278 Rename class Sqr2 class Sqr2 { public: - // #TEST#: R1275 Rename first use of T - // #TEST#: R1276 Rename second of T + // #TEST#: R1279 Rename first use of T + // #TEST#: R1280 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1276.txt b/results/diffs/R1276.txt index 48ccd88..ea6e22e 100644 --- a/results/diffs/R1276.txt +++ b/results/diffs/R1276.txt @@ -1,26 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..05059db 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -654,17 +654,17 @@ union SqrUnion1 - - // compound constraint on single template parameter, disjunction - // #TEST#: R1270 Rename template parameter T --template -+template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T - requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1274 Rename class Sqr2 ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 class Sqr2 { - public: - // #TEST#: R1275 Rename first use of T - // #TEST#: R1276 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1277.txt b/results/diffs/R1277.txt index 2ce70a5..b9bf211 100644 --- a/results/diffs/R1277.txt +++ b/results/diffs/R1277.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..446c4cf 100644 +index 024d6a2..05059db 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -671,16 +671,16 @@ public: - }; +@@ -654,17 +654,17 @@ union SqrUnion1 - // #TEST#: R1277 Rename template parameter T + // compound constraint on single template parameter, disjunction + // #TEST#: R1274 Rename template parameter T -template +template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T + public: + // #TEST#: R1279 Rename first use of T + // #TEST#: R1280 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1278.txt b/results/diffs/R1278.txt index 27e2ef3..c826666 100644 --- a/results/diffs/R1278.txt +++ b/results/diffs/R1278.txt @@ -1,26 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..56d2de7 100644 +index 024d6a2..933bc06 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -673,17 +673,17 @@ public: - }; - - // #TEST#: R1277 Rename template parameter T --template -+template - // #TEST#: R1278 Rename first use of T - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 +@@ -659,7 +659,7 @@ template + // #TEST#: R1277 Rename use of T + requires std::is_arithmetic_v || Squareable + // #TEST#: R1278 Rename class Sqr2 +-class Sqr2 ++class Goink { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const + public: + // #TEST#: R1279 Rename first use of T +@@ -1158,14 +1158,14 @@ void f2() + // compound constraint on single template parameter, disjunction { - return value * value; + // #TEST#: R1529 Rename Sqr2 +- Sqr2 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1530 Rename Sqr2 +- Sqr2 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1531 Rename Sqr2 +- Sqr2 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); } diff --git a/results/diffs/R1279.txt b/results/diffs/R1279.txt index 9ecac2b..b9bf211 100644 --- a/results/diffs/R1279.txt +++ b/results/diffs/R1279.txt @@ -1,194 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..05059db 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T +@@ -654,17 +654,17 @@ union SqrUnion1 + + // compound constraint on single template parameter, disjunction + // #TEST#: R1274 Rename template parameter T +-template ++template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T - requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1278 Rename class Sqr2 class Sqr2 { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { + public: + // #TEST#: R1279 Rename first use of T + // #TEST#: R1280 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1280.txt b/results/diffs/R1280.txt index 2ce70a5..b9bf211 100644 --- a/results/diffs/R1280.txt +++ b/results/diffs/R1280.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..446c4cf 100644 +index 024d6a2..05059db 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -671,16 +671,16 @@ public: - }; +@@ -654,17 +654,17 @@ union SqrUnion1 - // #TEST#: R1277 Rename template parameter T + // compound constraint on single template parameter, disjunction + // #TEST#: R1274 Rename template parameter T -template +template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T + public: + // #TEST#: R1279 Rename first use of T + // #TEST#: R1280 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1281.txt b/results/diffs/R1281.txt index 60780c3..7cc35c6 100644 --- a/results/diffs/R1281.txt +++ b/results/diffs/R1281.txt @@ -1,32 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..1a1e5a1 100644 +index 024d6a2..446c4cf 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -676,7 +676,7 @@ template - // #TEST#: R1280 Rename use of T - requires std::is_arithmetic_v || Squareable - // #TEST#: R1281 Rename class SqrStruct2 --struct SqrStruct2 -+struct Goink +@@ -671,16 +671,16 @@ public: + }; + + // #TEST#: R1281 Rename template parameter T +-template ++template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T -@@ -1171,14 +1171,14 @@ void f2() - } + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1528 Rename SqrStruct2 -- SqrStruct2 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1529 Rename SqrStruct2 -- SqrStruct2 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1530 Rename SqrStruct2 -- SqrStruct2 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + return value * value; } diff --git a/results/diffs/R1282.txt b/results/diffs/R1282.txt index 2ce70a5..3cbb37e 100644 --- a/results/diffs/R1282.txt +++ b/results/diffs/R1282.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..446c4cf 100644 +index 977575b..56d2de7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -671,16 +671,16 @@ public: +@@ -673,17 +673,17 @@ public: }; - // #TEST#: R1277 Rename template parameter T + // #TEST#: R1281 Rename template parameter T -template +template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T + // #TEST#: R1282 Rename first use of T + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename second use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable - // #TEST#: R1281 Rename class SqrStruct2 + // #TEST#: R1285 Rename class SqrStruct2 struct SqrStruct2 { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1283.txt b/results/diffs/R1283.txt index 2ce70a5..ea6e22e 100644 --- a/results/diffs/R1283.txt +++ b/results/diffs/R1283.txt @@ -1,25 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..446c4cf 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -671,16 +671,16 @@ public: - }; - - // #TEST#: R1277 Rename template parameter T --template -+template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T - requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1281 Rename class SqrStruct2 ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 struct SqrStruct2 { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1284.txt b/results/diffs/R1284.txt index 948726b..7cc35c6 100644 --- a/results/diffs/R1284.txt +++ b/results/diffs/R1284.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..9e6f036a 100644 +index 024d6a2..446c4cf 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -687,16 +687,16 @@ struct SqrStruct2 +@@ -671,16 +671,16 @@ public: }; - // #TEST#: R1284 Rename template parameter T + // #TEST#: R1281 Rename template parameter T -template +template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1285.txt b/results/diffs/R1285.txt index 35093d4..4d7f68d 100644 --- a/results/diffs/R1285.txt +++ b/results/diffs/R1285.txt @@ -1,26 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..a29a4f3 100644 +index 024d6a2..1a1e5a1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -690,17 +690,17 @@ struct SqrStruct2 - }; - - // #TEST#: R1284 Rename template parameter T --template -+template - // #TEST#: R1285 Rename first use of T - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 +@@ -676,7 +676,7 @@ template + // #TEST#: R1284 Rename use of T + requires std::is_arithmetic_v || Squareable + // #TEST#: R1285 Rename class SqrStruct2 +-struct SqrStruct2 ++struct Goink { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T +@@ -1171,14 +1171,14 @@ void f2() + } { - return value * value; + // #TEST#: R1532 Rename SqrStruct2 +- SqrStruct2 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1533 Rename SqrStruct2 +- SqrStruct2 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1534 Rename SqrStruct2 +- SqrStruct2 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); } diff --git a/results/diffs/R1286.txt b/results/diffs/R1286.txt index 9ecac2b..7cc35c6 100644 --- a/results/diffs/R1286.txt +++ b/results/diffs/R1286.txt @@ -1,194 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..446c4cf 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T +@@ -671,16 +671,16 @@ public: + }; + + // #TEST#: R1281 Rename template parameter T +-template ++template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T - requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1285 Rename class SqrStruct2 struct SqrStruct2 { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1287.txt b/results/diffs/R1287.txt index 948726b..7cc35c6 100644 --- a/results/diffs/R1287.txt +++ b/results/diffs/R1287.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..9e6f036a 100644 +index 024d6a2..446c4cf 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -687,16 +687,16 @@ struct SqrStruct2 +@@ -671,16 +671,16 @@ public: }; - // #TEST#: R1284 Rename template parameter T + // #TEST#: R1281 Rename template parameter T -template +template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1288.txt b/results/diffs/R1288.txt index fed6970..24c2277 100644 --- a/results/diffs/R1288.txt +++ b/results/diffs/R1288.txt @@ -1,32 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..cb7c966 100644 +index 024d6a2..9e6f036a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -692,7 +692,7 @@ template - // #TEST#: R1287 Rename use of T - requires std::is_arithmetic_v || Squareable - // #TEST#: R1288 Rename class SqrUnion2 --union SqrUnion2 -+union Goink +@@ -687,16 +687,16 @@ struct SqrStruct2 + }; + + // #TEST#: R1288 Rename template parameter T +-template ++template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T -@@ -1184,14 +1184,14 @@ void f2() - } + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1531 Rename SqrUnion2 -- SqrUnion2 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1532 Rename SqrUnion2 -- SqrUnion2 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1533 Rename SqrUnion2 -- SqrUnion2 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + return value * value; } diff --git a/results/diffs/R1289.txt b/results/diffs/R1289.txt index 948726b..53fc588 100644 --- a/results/diffs/R1289.txt +++ b/results/diffs/R1289.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..9e6f036a 100644 +index 977575b..a29a4f3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -687,16 +687,16 @@ struct SqrStruct2 +@@ -690,17 +690,17 @@ struct SqrStruct2 }; - // #TEST#: R1284 Rename template parameter T + // #TEST#: R1288 Rename template parameter T -template +template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T + // #TEST#: R1289 Rename first use of T + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename second use of T - requires std::is_arithmetic_v || Squareable + requires std::is_arithmetic_v || Squareable - // #TEST#: R1288 Rename class SqrUnion2 + // #TEST#: R1292 Rename class SqrUnion2 union SqrUnion2 { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1290.txt b/results/diffs/R1290.txt index 948726b..ea6e22e 100644 --- a/results/diffs/R1290.txt +++ b/results/diffs/R1290.txt @@ -1,25 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..9e6f036a 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -687,16 +687,16 @@ struct SqrStruct2 - }; - - // #TEST#: R1284 Rename template parameter T --template -+template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T - requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Squareable - // #TEST#: R1288 Rename class SqrUnion2 ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 union SqrUnion2 { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1291.txt b/results/diffs/R1291.txt index da7fb76..24c2277 100644 --- a/results/diffs/R1291.txt +++ b/results/diffs/R1291.txt @@ -1,23 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..de84216 100644 +index 024d6a2..9e6f036a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -704,17 +704,17 @@ union SqrUnion2 +@@ -687,16 +687,16 @@ struct SqrStruct2 + }; - // compound constraint on single template parameter, conjunction - // #TEST#: R1291 Rename template parameter T + // #TEST#: R1288 Rename template parameter T -template +template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 { - public: - // #TEST#: R1296 Rename first use of T - // #TEST#: R1297 Rename second of T + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1292.txt b/results/diffs/R1292.txt index 7c3d8c4..0c7abc0 100644 --- a/results/diffs/R1292.txt +++ b/results/diffs/R1292.txt @@ -1,27 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..7a97ddf 100644 +index 024d6a2..cb7c966 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -708,18 +708,18 @@ union SqrUnion2 - - // compound constraint on single template parameter, conjunction - // #TEST#: R1291 Rename template parameter T --template -+template - // #TEST#: R1292 Rename first use of T - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 +@@ -692,7 +692,7 @@ template + // #TEST#: R1291 Rename use of T + requires std::is_arithmetic_v || Squareable + // #TEST#: R1292 Rename class SqrUnion2 +-union SqrUnion2 ++union Goink { - public: - // #TEST#: R1296 Rename first use of T - // #TEST#: R1297 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T +@@ -1184,14 +1184,14 @@ void f2() + } { - return value * value; + // #TEST#: R1535 Rename SqrUnion2 +- SqrUnion2 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1536 Rename SqrUnion2 +- SqrUnion2 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1537 Rename SqrUnion2 +- SqrUnion2 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); } diff --git a/results/diffs/R1293.txt b/results/diffs/R1293.txt index 9ecac2b..24c2277 100644 --- a/results/diffs/R1293.txt +++ b/results/diffs/R1293.txt @@ -1,194 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..9e6f036a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T +@@ -687,16 +687,16 @@ struct SqrStruct2 + }; + + // #TEST#: R1288 Rename template parameter T +-template ++template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T - requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1292 Rename class SqrUnion2 union SqrUnion2 { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1294.txt b/results/diffs/R1294.txt index da7fb76..24c2277 100644 --- a/results/diffs/R1294.txt +++ b/results/diffs/R1294.txt @@ -1,23 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..de84216 100644 +index 024d6a2..9e6f036a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -704,17 +704,17 @@ union SqrUnion2 +@@ -687,16 +687,16 @@ struct SqrStruct2 + }; - // compound constraint on single template parameter, conjunction - // #TEST#: R1291 Rename template parameter T + // #TEST#: R1288 Rename template parameter T -template +template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Squareable + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 { - public: - // #TEST#: R1296 Rename first use of T - // #TEST#: R1297 Rename second of T + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1295.txt b/results/diffs/R1295.txt index cbe80b5..dfc893b 100644 --- a/results/diffs/R1295.txt +++ b/results/diffs/R1295.txt @@ -1,27 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..718fa28 100644 +index 024d6a2..de84216 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -709,7 +709,7 @@ template - // #TEST#: R1294 Rename use of T - requires std::is_arithmetic_v && Squareable - // #TEST#: R1295 Rename class Sqr3 --class Sqr3 -+class Goink +@@ -704,17 +704,17 @@ union SqrUnion2 + + // compound constraint on single template parameter, conjunction + // #TEST#: R1295 Rename template parameter T +-template ++template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 { public: - // #TEST#: R1296 Rename first use of T -@@ -1199,10 +1199,10 @@ void f2() - // compound constraint on single template parameter, conjunction + // #TEST#: R1300 Rename first use of T + // #TEST#: R1301 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1534 Rename Sqr3 -- Sqr3 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1535 Rename Sqr3 -- Sqr3 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + return value * value; + } diff --git a/results/diffs/R1296.txt b/results/diffs/R1296.txt index da7fb76..060c3bb 100644 --- a/results/diffs/R1296.txt +++ b/results/diffs/R1296.txt @@ -1,23 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..de84216 100644 +index 977575b..7a97ddf 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -704,17 +704,17 @@ union SqrUnion2 +@@ -708,18 +708,18 @@ union SqrUnion2 // compound constraint on single template parameter, conjunction - // #TEST#: R1291 Rename template parameter T + // #TEST#: R1295 Rename template parameter T -template +template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T + // #TEST#: R1296 Rename first use of T + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename second use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable - // #TEST#: R1295 Rename class Sqr3 + // #TEST#: R1299 Rename class Sqr3 class Sqr3 { public: - // #TEST#: R1296 Rename first use of T - // #TEST#: R1297 Rename second of T + // #TEST#: R1300 Rename first use of T + // #TEST#: R1301 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1297.txt b/results/diffs/R1297.txt index da7fb76..ea6e22e 100644 --- a/results/diffs/R1297.txt +++ b/results/diffs/R1297.txt @@ -1,26 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..de84216 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -704,17 +704,17 @@ union SqrUnion2 - - // compound constraint on single template parameter, conjunction - // #TEST#: R1291 Rename template parameter T --template -+template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T - requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1295 Rename class Sqr3 ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 class Sqr3 { - public: - // #TEST#: R1296 Rename first use of T - // #TEST#: R1297 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1298.txt b/results/diffs/R1298.txt index ba0005b..dfc893b 100644 --- a/results/diffs/R1298.txt +++ b/results/diffs/R1298.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..03e9209 100644 +index 024d6a2..de84216 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -721,16 +721,16 @@ public: - }; +@@ -704,17 +704,17 @@ union SqrUnion2 - // #TEST#: R1298 Rename template parameter T + // compound constraint on single template parameter, conjunction + // #TEST#: R1295 Rename template parameter T -template +template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 { - // #TEST#: R1303 Rename first use of T - // #TEST#: R1304 Rename second of T + public: + // #TEST#: R1300 Rename first use of T + // #TEST#: R1301 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1299.txt b/results/diffs/R1299.txt index 4619886..ce45bb8 100644 --- a/results/diffs/R1299.txt +++ b/results/diffs/R1299.txt @@ -1,26 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..7279deb 100644 +index 024d6a2..718fa28 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -726,17 +726,17 @@ public: - }; - - // #TEST#: R1298 Rename template parameter T --template -+template - // #TEST#: R1299 Rename first use of T - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 +@@ -709,7 +709,7 @@ template + // #TEST#: R1298 Rename use of T + requires std::is_arithmetic_v && Squareable + // #TEST#: R1299 Rename class Sqr3 +-class Sqr3 ++class Goink { - // #TEST#: R1303 Rename first use of T - // #TEST#: R1304 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const + public: + // #TEST#: R1300 Rename first use of T +@@ -1199,10 +1199,10 @@ void f2() + // compound constraint on single template parameter, conjunction { - return value * value; - } + // #TEST#: R1538 Rename Sqr3 +- Sqr3 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1539 Rename Sqr3 +- Sqr3 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1300.txt b/results/diffs/R1300.txt index 9ecac2b..dfc893b 100644 --- a/results/diffs/R1300.txt +++ b/results/diffs/R1300.txt @@ -1,194 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..de84216 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T +@@ -704,17 +704,17 @@ union SqrUnion2 + + // compound constraint on single template parameter, conjunction + // #TEST#: R1295 Rename template parameter T +-template ++template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T - requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1299 Rename class Sqr3 class Sqr3 { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { + public: + // #TEST#: R1300 Rename first use of T + // #TEST#: R1301 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1301.txt b/results/diffs/R1301.txt index ba0005b..dfc893b 100644 --- a/results/diffs/R1301.txt +++ b/results/diffs/R1301.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..03e9209 100644 +index 024d6a2..de84216 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -721,16 +721,16 @@ public: - }; +@@ -704,17 +704,17 @@ union SqrUnion2 - // #TEST#: R1298 Rename template parameter T + // compound constraint on single template parameter, conjunction + // #TEST#: R1295 Rename template parameter T -template +template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 { - // #TEST#: R1303 Rename first use of T - // #TEST#: R1304 Rename second of T + public: + // #TEST#: R1300 Rename first use of T + // #TEST#: R1301 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1302.txt b/results/diffs/R1302.txt index bd9a7dc..9573a34 100644 --- a/results/diffs/R1302.txt +++ b/results/diffs/R1302.txt @@ -1,27 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..fc0473d 100644 +index 024d6a2..03e9209 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -732,7 +732,7 @@ template - // #TEST#: R1301 Rename second use of T - requires std::is_arithmetic_v && Squareable - // #TEST#: R1302 Rename class SqrStruct3 --struct SqrStruct3 -+struct Goink +@@ -721,16 +721,16 @@ public: + }; + + // #TEST#: R1302 Rename template parameter T +-template ++template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 { - // #TEST#: R1303 Rename first use of T - // #TEST#: R1304 Rename second of T -@@ -1234,10 +1234,10 @@ void f2() - } + // #TEST#: R1307 Rename first use of T + // #TEST#: R1308 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1536 Rename SqrStruct3 -- SqrStruct3 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1537 Rename SqrStruct3 -- SqrStruct3 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + return value * value; + } diff --git a/results/diffs/R1303.txt b/results/diffs/R1303.txt index ba0005b..8434c49 100644 --- a/results/diffs/R1303.txt +++ b/results/diffs/R1303.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..03e9209 100644 +index 977575b..7279deb 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -721,16 +721,16 @@ public: +@@ -726,17 +726,17 @@ public: }; - // #TEST#: R1298 Rename template parameter T + // #TEST#: R1302 Rename template parameter T -template +template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T + // #TEST#: R1303 Rename first use of T + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename second use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable - // #TEST#: R1302 Rename class SqrStruct3 + // #TEST#: R1306 Rename class SqrStruct3 struct SqrStruct3 { - // #TEST#: R1303 Rename first use of T - // #TEST#: R1304 Rename second of T + // #TEST#: R1307 Rename first use of T + // #TEST#: R1308 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1304.txt b/results/diffs/R1304.txt index ba0005b..ea6e22e 100644 --- a/results/diffs/R1304.txt +++ b/results/diffs/R1304.txt @@ -1,25 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..03e9209 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -721,16 +721,16 @@ public: - }; - - // #TEST#: R1298 Rename template parameter T --template -+template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T - requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1302 Rename class SqrStruct3 ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 struct SqrStruct3 { - // #TEST#: R1303 Rename first use of T - // #TEST#: R1304 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1305.txt b/results/diffs/R1305.txt index 12d43ab..9573a34 100644 --- a/results/diffs/R1305.txt +++ b/results/diffs/R1305.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..69e8661 100644 +index 024d6a2..03e9209 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -737,16 +737,16 @@ struct SqrStruct3 +@@ -721,16 +721,16 @@ public: }; - // #TEST#: R1305 Rename template parameter T + // #TEST#: R1302 Rename template parameter T -template +template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 { - // #TEST#: R1310 Rename first use of T - // #TEST#: R1311 Rename second of T + // #TEST#: R1307 Rename first use of T + // #TEST#: R1308 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1306.txt b/results/diffs/R1306.txt index db5e013..6f0627f 100644 --- a/results/diffs/R1306.txt +++ b/results/diffs/R1306.txt @@ -1,26 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..69d9b06 100644 +index 977575b..fc0473d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -743,17 +743,17 @@ struct SqrStruct3 - }; - - // #TEST#: R1305 Rename template parameter T --template -+template - // #TEST#: R1306 Rename first use of T - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 +@@ -732,7 +732,7 @@ template + // #TEST#: R1305 Rename second use of T + requires std::is_arithmetic_v && Squareable + // #TEST#: R1306 Rename class SqrStruct3 +-struct SqrStruct3 ++struct Goink { - // #TEST#: R1310 Rename first use of T - // #TEST#: R1311 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; + // #TEST#: R1307 Rename first use of T + // #TEST#: R1308 Rename second of T +@@ -1234,10 +1234,10 @@ void f2() } + { + // #TEST#: R1540 Rename SqrStruct3 +- SqrStruct3 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1541 Rename SqrStruct3 +- SqrStruct3 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1307.txt b/results/diffs/R1307.txt index 9ecac2b..9573a34 100644 --- a/results/diffs/R1307.txt +++ b/results/diffs/R1307.txt @@ -1,194 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..03e9209 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T +@@ -721,16 +721,16 @@ public: + }; + + // #TEST#: R1302 Rename template parameter T +-template ++template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T - requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1306 Rename class SqrStruct3 struct SqrStruct3 { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { + // #TEST#: R1307 Rename first use of T + // #TEST#: R1308 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1308.txt b/results/diffs/R1308.txt index 12d43ab..9573a34 100644 --- a/results/diffs/R1308.txt +++ b/results/diffs/R1308.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..69e8661 100644 +index 024d6a2..03e9209 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -737,16 +737,16 @@ struct SqrStruct3 +@@ -721,16 +721,16 @@ public: }; - // #TEST#: R1305 Rename template parameter T + // #TEST#: R1302 Rename template parameter T -template +template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 { - // #TEST#: R1310 Rename first use of T - // #TEST#: R1311 Rename second of T + // #TEST#: R1307 Rename first use of T + // #TEST#: R1308 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1309.txt b/results/diffs/R1309.txt index c4c9f4d..b815b56 100644 --- a/results/diffs/R1309.txt +++ b/results/diffs/R1309.txt @@ -1,27 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f2a9cdf 100644 +index 024d6a2..69e8661 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -742,7 +742,7 @@ template - // #TEST#: R1308 Rename use of T - requires std::is_arithmetic_v && Squareable - // #TEST#: R1309 Rename class SqrUnion3 --union SqrUnion3 -+union Goink +@@ -737,16 +737,16 @@ struct SqrStruct3 + }; + + // #TEST#: R1309 Rename template parameter T +-template ++template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 { - // #TEST#: R1310 Rename first use of T - // #TEST#: R1311 Rename second of T -@@ -1219,10 +1219,10 @@ void f2() - } + // #TEST#: R1314 Rename first use of T + // #TEST#: R1315 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1538 Rename SqrUnion3 -- SqrUnion3 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1539 Rename SqrUnion3 -- SqrUnion3 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + return value * value; + } diff --git a/results/diffs/R1310.txt b/results/diffs/R1310.txt index 12d43ab..b95bf8d 100644 --- a/results/diffs/R1310.txt +++ b/results/diffs/R1310.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..69e8661 100644 +index 977575b..69d9b06 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -737,16 +737,16 @@ struct SqrStruct3 +@@ -743,17 +743,17 @@ struct SqrStruct3 }; - // #TEST#: R1305 Rename template parameter T + // #TEST#: R1309 Rename template parameter T -template +template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T + // #TEST#: R1310 Rename first use of T + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename second use of T - requires std::is_arithmetic_v && Squareable + requires std::is_arithmetic_v && Squareable - // #TEST#: R1309 Rename class SqrUnion3 + // #TEST#: R1313 Rename class SqrUnion3 union SqrUnion3 { - // #TEST#: R1310 Rename first use of T - // #TEST#: R1311 Rename second of T + // #TEST#: R1314 Rename first use of T + // #TEST#: R1315 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1311.txt b/results/diffs/R1311.txt index 12d43ab..ea6e22e 100644 --- a/results/diffs/R1311.txt +++ b/results/diffs/R1311.txt @@ -1,25 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..69e8661 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -737,16 +737,16 @@ struct SqrStruct3 - }; - - // #TEST#: R1305 Rename template parameter T --template -+template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T - requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Squareable - // #TEST#: R1309 Rename class SqrUnion3 ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 union SqrUnion3 { - // #TEST#: R1310 Rename first use of T - // #TEST#: R1311 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1312.txt b/results/diffs/R1312.txt index 5f2e8d1..b815b56 100644 --- a/results/diffs/R1312.txt +++ b/results/diffs/R1312.txt @@ -1,23 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ed8aafd 100644 +index 024d6a2..69e8661 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -754,17 +754,17 @@ union SqrUnion3 +@@ -737,16 +737,16 @@ struct SqrStruct3 + }; - // compound constraint on single template parameter, combination - // #TEST#: R1312 Rename template parameter T + // #TEST#: R1309 Rename template parameter T -template +template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 { - public: - // #TEST#: R1318 Rename first use of T - // #TEST#: R1319 Rename second of T + // #TEST#: R1314 Rename first use of T + // #TEST#: R1315 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1313.txt b/results/diffs/R1313.txt index 904510d..5d9b67f 100644 --- a/results/diffs/R1313.txt +++ b/results/diffs/R1313.txt @@ -1,28 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..1c092f3 100644 +index 024d6a2..f2a9cdf 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -761,19 +761,19 @@ union SqrUnion3 - - // compound constraint on single template parameter, combination - // #TEST#: R1312 Rename template parameter T --template -+template - // #TEST#: R1313 Rename first use of T - // #TEST#: R1314 Rename second use of T - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 +@@ -742,7 +742,7 @@ template + // #TEST#: R1312 Rename use of T + requires std::is_arithmetic_v && Squareable + // #TEST#: R1313 Rename class SqrUnion3 +-union SqrUnion3 ++union Goink { - public: - // #TEST#: R1318 Rename first use of T - // #TEST#: R1319 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; + // #TEST#: R1314 Rename first use of T + // #TEST#: R1315 Rename second of T +@@ -1219,10 +1219,10 @@ void f2() } + { + // #TEST#: R1542 Rename SqrUnion3 +- SqrUnion3 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1543 Rename SqrUnion3 +- SqrUnion3 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1314.txt b/results/diffs/R1314.txt index 904510d..b815b56 100644 --- a/results/diffs/R1314.txt +++ b/results/diffs/R1314.txt @@ -1,25 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..1c092f3 100644 +index 024d6a2..69e8661 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -761,19 +761,19 @@ union SqrUnion3 +@@ -737,16 +737,16 @@ struct SqrStruct3 + }; - // compound constraint on single template parameter, combination - // #TEST#: R1312 Rename template parameter T + // #TEST#: R1309 Rename template parameter T -template +template - // #TEST#: R1313 Rename first use of T - // #TEST#: R1314 Rename second use of T - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 { - public: - // #TEST#: R1318 Rename first use of T - // #TEST#: R1319 Rename second of T + // #TEST#: R1314 Rename first use of T + // #TEST#: R1315 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1315.txt b/results/diffs/R1315.txt index 9ecac2b..b815b56 100644 --- a/results/diffs/R1315.txt +++ b/results/diffs/R1315.txt @@ -1,194 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..69e8661 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T +@@ -737,16 +737,16 @@ struct SqrStruct3 + }; + + // #TEST#: R1309 Rename template parameter T +-template ++template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T - requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 ++ requires std::is_arithmetic_v && Squareable + // #TEST#: R1313 Rename class SqrUnion3 union SqrUnion3 { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { + // #TEST#: R1314 Rename first use of T + // #TEST#: R1315 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1316.txt b/results/diffs/R1316.txt index 5f2e8d1..6ea3b96 100644 --- a/results/diffs/R1316.txt +++ b/results/diffs/R1316.txt @@ -5,19 +5,19 @@ index 024d6a2..ed8aafd 100644 @@ -754,17 +754,17 @@ union SqrUnion3 // compound constraint on single template parameter, combination - // #TEST#: R1312 Rename template parameter T + // #TEST#: R1316 Rename template parameter T -template +template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1317 Rename class Sqr4 + // #TEST#: R1321 Rename class Sqr4 class Sqr4 { public: - // #TEST#: R1318 Rename first use of T - // #TEST#: R1319 Rename second of T + // #TEST#: R1322 Rename first use of T + // #TEST#: R1323 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1317.txt b/results/diffs/R1317.txt index 1bba5fe..e33c6e2 100644 --- a/results/diffs/R1317.txt +++ b/results/diffs/R1317.txt @@ -1,27 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..d28340a 100644 +index 977575b..1c092f3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -759,7 +759,7 @@ template - // #TEST#: R1316 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1317 Rename class Sqr4 --class Sqr4 -+class Goink +@@ -761,19 +761,19 @@ union SqrUnion3 + + // compound constraint on single template parameter, combination + // #TEST#: R1316 Rename template parameter T +-template ++template + // #TEST#: R1317 Rename first use of T + // #TEST#: R1318 Rename second use of T + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 { public: - // #TEST#: R1318 Rename first use of T -@@ -1231,10 +1231,10 @@ void f2() - // compound constraint on single template parameter, combination + // #TEST#: R1322 Rename first use of T + // #TEST#: R1323 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1540 Rename Sqr4 -- Sqr4 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1541 Rename Sqr4 -- Sqr4 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + return value * value; + } diff --git a/results/diffs/R1318.txt b/results/diffs/R1318.txt index 5f2e8d1..e33c6e2 100644 --- a/results/diffs/R1318.txt +++ b/results/diffs/R1318.txt @@ -1,23 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ed8aafd 100644 +index 977575b..1c092f3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -754,17 +754,17 @@ union SqrUnion3 +@@ -761,19 +761,19 @@ union SqrUnion3 // compound constraint on single template parameter, combination - // #TEST#: R1312 Rename template parameter T + // #TEST#: R1316 Rename template parameter T -template +template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T + // #TEST#: R1317 Rename first use of T + // #TEST#: R1318 Rename second use of T + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1317 Rename class Sqr4 + // #TEST#: R1321 Rename class Sqr4 class Sqr4 { public: - // #TEST#: R1318 Rename first use of T - // #TEST#: R1319 Rename second of T + // #TEST#: R1322 Rename first use of T + // #TEST#: R1323 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1319.txt b/results/diffs/R1319.txt index 5f2e8d1..ea6e22e 100644 --- a/results/diffs/R1319.txt +++ b/results/diffs/R1319.txt @@ -1,26 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ed8aafd 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -754,17 +754,17 @@ union SqrUnion3 - - // compound constraint on single template parameter, combination - // #TEST#: R1312 Rename template parameter T --template -+template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1317 Rename class Sqr4 ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 class Sqr4 { - public: - // #TEST#: R1318 Rename first use of T - // #TEST#: R1319 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1320.txt b/results/diffs/R1320.txt index 7f03185..6ea3b96 100644 --- a/results/diffs/R1320.txt +++ b/results/diffs/R1320.txt @@ -1,22 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..510ace2 100644 +index 024d6a2..ed8aafd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -771,16 +771,16 @@ public: - }; +@@ -754,17 +754,17 @@ union SqrUnion3 - // #TEST#: R1320 Rename template parameter T + // compound constraint on single template parameter, combination + // #TEST#: R1316 Rename template parameter T -template +template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T + public: + // #TEST#: R1322 Rename first use of T + // #TEST#: R1323 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1321.txt b/results/diffs/R1321.txt index c613adc..91fd851 100644 --- a/results/diffs/R1321.txt +++ b/results/diffs/R1321.txt @@ -1,27 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..69c0c5f 100644 +index 024d6a2..d28340a 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -780,18 +780,18 @@ public: - }; - - // #TEST#: R1320 Rename template parameter T --template -+template - // #TEST#: R1321 Rename first use of T - // #TEST#: R1322 Rename second use of T - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 +@@ -759,7 +759,7 @@ template + // #TEST#: R1320 Rename use of T + requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1321 Rename class Sqr4 +-class Sqr4 ++class Goink { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const + public: + // #TEST#: R1322 Rename first use of T +@@ -1231,10 +1231,10 @@ void f2() + // compound constraint on single template parameter, combination { - return value * value; - } + // #TEST#: R1544 Rename Sqr4 +- Sqr4 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1545 Rename Sqr4 +- Sqr4 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1322.txt b/results/diffs/R1322.txt index c613adc..6ea3b96 100644 --- a/results/diffs/R1322.txt +++ b/results/diffs/R1322.txt @@ -1,24 +1,23 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..69c0c5f 100644 +index 024d6a2..ed8aafd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -780,18 +780,18 @@ public: - }; +@@ -754,17 +754,17 @@ union SqrUnion3 - // #TEST#: R1320 Rename template parameter T + // compound constraint on single template parameter, combination + // #TEST#: R1316 Rename template parameter T -template +template - // #TEST#: R1321 Rename first use of T - // #TEST#: R1322 Rename second use of T - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename third use of T + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T + public: + // #TEST#: R1322 Rename first use of T + // #TEST#: R1323 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1323.txt b/results/diffs/R1323.txt index 9ecac2b..6ea3b96 100644 --- a/results/diffs/R1323.txt +++ b/results/diffs/R1323.txt @@ -1,194 +1,26 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..ed8aafd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T +@@ -754,17 +754,17 @@ union SqrUnion3 + + // compound constraint on single template parameter, combination + // #TEST#: R1316 Rename template parameter T +-template ++template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1321 Rename class Sqr4 class Sqr4 { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { + public: + // #TEST#: R1322 Rename first use of T + // #TEST#: R1323 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1324.txt b/results/diffs/R1324.txt index 7f03185..d141dc9 100644 --- a/results/diffs/R1324.txt +++ b/results/diffs/R1324.txt @@ -5,18 +5,18 @@ index 024d6a2..510ace2 100644 @@ -771,16 +771,16 @@ public: }; - // #TEST#: R1320 Rename template parameter T + // #TEST#: R1324 Rename template parameter T -template +template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1325 Rename class SqrStruct4 + // #TEST#: R1329 Rename class SqrStruct4 struct SqrStruct4 { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1325.txt b/results/diffs/R1325.txt index d14ef48..4b36137 100644 --- a/results/diffs/R1325.txt +++ b/results/diffs/R1325.txt @@ -1,27 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..9c41078 100644 +index 977575b..69c0c5f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -776,7 +776,7 @@ template - // #TEST#: R1324 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1325 Rename class SqrStruct4 --struct SqrStruct4 -+struct Goink +@@ -780,18 +780,18 @@ public: + }; + + // #TEST#: R1324 Rename template parameter T +-template ++template + // #TEST#: R1325 Rename first use of T + // #TEST#: R1326 Rename second use of T + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T -@@ -1241,10 +1241,10 @@ void f2() - } + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1542 Rename SqrStruct4 -- SqrStruct4 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1543 Rename SqrStruct4 -- SqrStruct4 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + return value * value; + } diff --git a/results/diffs/R1326.txt b/results/diffs/R1326.txt index 7f03185..4b36137 100644 --- a/results/diffs/R1326.txt +++ b/results/diffs/R1326.txt @@ -1,22 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..510ace2 100644 +index 977575b..69c0c5f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -771,16 +771,16 @@ public: +@@ -780,18 +780,18 @@ public: }; - // #TEST#: R1320 Rename template parameter T + // #TEST#: R1324 Rename template parameter T -template +template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T + // #TEST#: R1325 Rename first use of T + // #TEST#: R1326 Rename second use of T + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1325 Rename class SqrStruct4 + // #TEST#: R1329 Rename class SqrStruct4 struct SqrStruct4 { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1327.txt b/results/diffs/R1327.txt index 7f03185..ea6e22e 100644 --- a/results/diffs/R1327.txt +++ b/results/diffs/R1327.txt @@ -1,25 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..510ace2 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -771,16 +771,16 @@ public: - }; - - // #TEST#: R1320 Rename template parameter T --template -+template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1325 Rename class SqrStruct4 ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 struct SqrStruct4 { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R1328.txt b/results/diffs/R1328.txt index 826f83a..d141dc9 100644 --- a/results/diffs/R1328.txt +++ b/results/diffs/R1328.txt @@ -1,22 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..7e767d2 100644 +index 024d6a2..510ace2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -787,16 +787,16 @@ struct SqrStruct4 +@@ -771,16 +771,16 @@ public: }; - // #TEST#: R1328 Rename template parameter T + // #TEST#: R1324 Rename template parameter T -template +template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1329.txt b/results/diffs/R1329.txt index 74d1645..e47ade6 100644 --- a/results/diffs/R1329.txt +++ b/results/diffs/R1329.txt @@ -1,27 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..182fe5c 100644 +index 024d6a2..9c41078 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -798,18 +798,18 @@ struct SqrStruct4 - }; - - // #TEST#: R1328 Rename template parameter T --template -+template - // #TEST#: R1329 Rename first use of T - // #TEST#: R1330 Rename second use of T - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 +@@ -776,7 +776,7 @@ template + // #TEST#: R1328 Rename use of T + requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1329 Rename class SqrStruct4 +-struct SqrStruct4 ++struct Goink { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T +@@ -1241,10 +1241,10 @@ void f2() } + { + // #TEST#: R1546 Rename SqrStruct4 +- SqrStruct4 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1547 Rename SqrStruct4 +- SqrStruct4 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1330.txt b/results/diffs/R1330.txt index 74d1645..d141dc9 100644 --- a/results/diffs/R1330.txt +++ b/results/diffs/R1330.txt @@ -1,24 +1,22 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..182fe5c 100644 +index 024d6a2..510ace2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -798,18 +798,18 @@ struct SqrStruct4 +@@ -771,16 +771,16 @@ public: }; - // #TEST#: R1328 Rename template parameter T + // #TEST#: R1324 Rename template parameter T -template +template - // #TEST#: R1329 Rename first use of T - // #TEST#: R1330 Rename second use of T - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename third use of T + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1331.txt b/results/diffs/R1331.txt index 9ecac2b..d141dc9 100644 --- a/results/diffs/R1331.txt +++ b/results/diffs/R1331.txt @@ -1,194 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 +index 024d6a2..510ace2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T +@@ -771,16 +771,16 @@ public: + }; + + // #TEST#: R1324 Rename template parameter T +-template ++template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1329 Rename class SqrStruct4 struct SqrStruct4 { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1332.txt b/results/diffs/R1332.txt index 826f83a..57671b8 100644 --- a/results/diffs/R1332.txt +++ b/results/diffs/R1332.txt @@ -5,18 +5,18 @@ index 024d6a2..7e767d2 100644 @@ -787,16 +787,16 @@ struct SqrStruct4 }; - // #TEST#: R1328 Rename template parameter T + // #TEST#: R1332 Rename template parameter T -template +template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1333 Rename class SqrUnion4 + // #TEST#: R1337 Rename class SqrUnion4 union SqrUnion4 { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1333.txt b/results/diffs/R1333.txt index 97648ff..b225bd4 100644 --- a/results/diffs/R1333.txt +++ b/results/diffs/R1333.txt @@ -1,27 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..e2115a9 100644 +index 977575b..182fe5c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -792,7 +792,7 @@ template - // #TEST#: R1332 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1333 Rename class SqrUnion4 --union SqrUnion4 -+union Goink +@@ -798,18 +798,18 @@ struct SqrStruct4 + }; + + // #TEST#: R1332 Rename template parameter T +-template ++template + // #TEST#: R1333 Rename first use of T + // #TEST#: R1334 Rename second use of T + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T -@@ -1251,10 +1251,10 @@ void f2() - } + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1544 Rename SqrUnion4 -- SqrUnion4 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1545 Rename SqrUnion4 -- SqrUnion4 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + return value * value; + } diff --git a/results/diffs/R1334.txt b/results/diffs/R1334.txt index 826f83a..b225bd4 100644 --- a/results/diffs/R1334.txt +++ b/results/diffs/R1334.txt @@ -1,22 +1,24 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..7e767d2 100644 +index 977575b..182fe5c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -787,16 +787,16 @@ struct SqrStruct4 +@@ -798,18 +798,18 @@ struct SqrStruct4 }; - // #TEST#: R1328 Rename template parameter T + // #TEST#: R1332 Rename template parameter T -template +template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T + // #TEST#: R1333 Rename first use of T + // #TEST#: R1334 Rename second use of T + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename third use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable + requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1333 Rename class SqrUnion4 + // #TEST#: R1337 Rename class SqrUnion4 union SqrUnion4 { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T - T operator()(T value) const + Goink operator()(Goink value) const { diff --git a/results/diffs/R1335.txt b/results/diffs/R1335.txt index 826f83a..ea6e22e 100644 --- a/results/diffs/R1335.txt +++ b/results/diffs/R1335.txt @@ -1,25 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..7e767d2 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -787,16 +787,16 @@ struct SqrStruct4 - }; - - // #TEST#: R1328 Rename template parameter T --template -+template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1333 Rename class SqrUnion4 ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 union SqrUnion4 { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T -- T operator()(T value) const -+ Goink operator()(Goink value) const - { - return value * value; - } diff --git a/results/diffs/R1336.txt b/results/diffs/R1336.txt index 17b011d..57671b8 100644 --- a/results/diffs/R1336.txt +++ b/results/diffs/R1336.txt @@ -1,28 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..4898c22 100644 +index 024d6a2..7e767d2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -805,11 +805,11 @@ union SqrUnion4 - // single constraint on multiple template parameters - // #TEST#: R1336 Rename template parameter T - // #TEST#: R1337 Rename template parameter U --template -+template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Multiplicable - class Product1 +@@ -787,16 +787,16 @@ struct SqrStruct4 + }; + + // #TEST#: R1332 Rename template parameter T +-template ++template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 { - public: -@@ -819,7 +819,7 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + return value * value; + } diff --git a/results/diffs/R1337.txt b/results/diffs/R1337.txt index 421fd90..96cfe0b 100644 --- a/results/diffs/R1337.txt +++ b/results/diffs/R1337.txt @@ -1,28 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..19285e6 100644 +index 024d6a2..e2115a9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -805,11 +805,11 @@ union SqrUnion4 - // single constraint on multiple template parameters - // #TEST#: R1336 Rename template parameter T - // #TEST#: R1337 Rename template parameter U --template -+template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Multiplicable - class Product1 +@@ -792,7 +792,7 @@ template + // #TEST#: R1336 Rename use of T + requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1337 Rename class SqrUnion4 +-union SqrUnion4 ++union Goink { - public: -@@ -819,7 +819,7 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T +@@ -1251,10 +1251,10 @@ void f2() + } { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + // #TEST#: R1548 Rename SqrUnion4 +- SqrUnion4 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1549 Rename SqrUnion4 +- SqrUnion4 s2; ++ Goink s2; + const double d = s2(2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1338.txt b/results/diffs/R1338.txt index a582280..57671b8 100644 --- a/results/diffs/R1338.txt +++ b/results/diffs/R1338.txt @@ -1,28 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..17958c3 100644 +index 024d6a2..7e767d2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -819,11 +819,11 @@ union SqrUnion4 - // #TEST#: R1336 Rename template parameter T - // #TEST#: R1337 Rename template parameter U - // #TEST#: R1338 Rename use of T --template -+template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Multiplicable - class Product1 +@@ -787,16 +787,16 @@ struct SqrStruct4 + }; + + // #TEST#: R1332 Rename template parameter T +-template ++template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 { - public: -@@ -833,7 +833,7 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + return value * value; + } diff --git a/results/diffs/R1339.txt b/results/diffs/R1339.txt index 1ad368e..57671b8 100644 --- a/results/diffs/R1339.txt +++ b/results/diffs/R1339.txt @@ -1,194 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 024d6a2..7e767d2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -787,16 +787,16 @@ struct SqrStruct4 + }; + + // #TEST#: R1332 Rename template parameter T +-template ++template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T +- T operator()(T value) const ++ Goink operator()(Goink value) const + { + return value * value; + } diff --git a/results/diffs/R1340.txt b/results/diffs/R1340.txt index 17b011d..8b088d0 100644 --- a/results/diffs/R1340.txt +++ b/results/diffs/R1340.txt @@ -4,25 +4,25 @@ index 21c29d3..4898c22 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -805,11 +805,11 @@ union SqrUnion4 // single constraint on multiple template parameters - // #TEST#: R1336 Rename template parameter T - // #TEST#: R1337 Rename template parameter U + // #TEST#: R1340 Rename template parameter T + // #TEST#: R1341 Rename template parameter U -template +template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U - requires Multiplicable + requires Multiplicable class Product1 { public: @@ -819,7 +819,7 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs diff --git a/results/diffs/R1341.txt b/results/diffs/R1341.txt index 421fd90..4a2c2df 100644 --- a/results/diffs/R1341.txt +++ b/results/diffs/R1341.txt @@ -4,25 +4,25 @@ index 21c29d3..19285e6 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -805,11 +805,11 @@ union SqrUnion4 // single constraint on multiple template parameters - // #TEST#: R1336 Rename template parameter T - // #TEST#: R1337 Rename template parameter U + // #TEST#: R1340 Rename template parameter T + // #TEST#: R1341 Rename template parameter U -template +template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U - requires Multiplicable + requires Multiplicable class Product1 { public: @@ -819,7 +819,7 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs diff --git a/results/diffs/R1342.txt b/results/diffs/R1342.txt index 17b011d..e4a3ff2 100644 --- a/results/diffs/R1342.txt +++ b/results/diffs/R1342.txt @@ -1,28 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..4898c22 100644 +index 977575b..17958c3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -805,11 +805,11 @@ union SqrUnion4 - // single constraint on multiple template parameters - // #TEST#: R1336 Rename template parameter T - // #TEST#: R1337 Rename template parameter U +@@ -819,11 +819,11 @@ union SqrUnion4 + // #TEST#: R1340 Rename template parameter T + // #TEST#: R1341 Rename template parameter U + // #TEST#: R1342 Rename use of T -template +template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U - requires Multiplicable + requires Multiplicable class Product1 { public: -@@ -819,7 +819,7 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs +@@ -833,7 +833,7 @@ public: + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs diff --git a/results/diffs/R1343.txt b/results/diffs/R1343.txt index 34bf63a..88604f0 100644 --- a/results/diffs/R1343.txt +++ b/results/diffs/R1343.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..bdb5a77 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -819,11 +819,11 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1344.txt b/results/diffs/R1344.txt index 421fd90..8b088d0 100644 --- a/results/diffs/R1344.txt +++ b/results/diffs/R1344.txt @@ -1,28 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..19285e6 100644 +index 21c29d3..4898c22 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -805,11 +805,11 @@ union SqrUnion4 // single constraint on multiple template parameters - // #TEST#: R1336 Rename template parameter T - // #TEST#: R1337 Rename template parameter U + // #TEST#: R1340 Rename template parameter T + // #TEST#: R1341 Rename template parameter U -template -+template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U ++template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U - requires Multiplicable -+ requires Multiplicable ++ requires Multiplicable class Product1 { public: @@ -819,7 +819,7 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs diff --git a/results/diffs/R1345.txt b/results/diffs/R1345.txt index 191e513..4a2c2df 100644 --- a/results/diffs/R1345.txt +++ b/results/diffs/R1345.txt @@ -1,19 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..32de857 100644 +index 21c29d3..19285e6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -819,11 +819,11 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs +@@ -805,11 +805,11 @@ union SqrUnion4 + // single constraint on multiple template parameters + // #TEST#: R1340 Rename template parameter T + // #TEST#: R1341 Rename template parameter U +-template ++template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Multiplicable + class Product1 + { + public: +@@ -819,7 +819,7 @@ public: + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs diff --git a/results/diffs/R1346.txt b/results/diffs/R1346.txt index 34bf63a..8b088d0 100644 --- a/results/diffs/R1346.txt +++ b/results/diffs/R1346.txt @@ -1,19 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..bdb5a77 100644 +index 21c29d3..4898c22 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -819,11 +819,11 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs +@@ -805,11 +805,11 @@ union SqrUnion4 + // single constraint on multiple template parameters + // #TEST#: R1340 Rename template parameter T + // #TEST#: R1341 Rename template parameter U +-template ++template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Multiplicable + class Product1 + { + public: +@@ -819,7 +819,7 @@ public: + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs diff --git a/results/diffs/R1347.txt b/results/diffs/R1347.txt index 191e513..4c21738 100644 --- a/results/diffs/R1347.txt +++ b/results/diffs/R1347.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..32de857 100644 +index 21c29d3..bdb5a77 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -819,11 +819,11 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1348.txt b/results/diffs/R1348.txt index 34bf63a..4a2c2df 100644 --- a/results/diffs/R1348.txt +++ b/results/diffs/R1348.txt @@ -1,19 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..bdb5a77 100644 +index 21c29d3..19285e6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -819,11 +819,11 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs +@@ -805,11 +805,11 @@ union SqrUnion4 + // single constraint on multiple template parameters + // #TEST#: R1340 Rename template parameter T + // #TEST#: R1341 Rename template parameter U +-template ++template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Multiplicable + class Product1 + { + public: +@@ -819,7 +819,7 @@ public: + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs diff --git a/results/diffs/R1349.txt b/results/diffs/R1349.txt index 191e513..4e8370e 100644 --- a/results/diffs/R1349.txt +++ b/results/diffs/R1349.txt @@ -3,14 +3,14 @@ index 21c29d3..32de857 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -819,11 +819,11 @@ public: - // #TEST#: R1345 Rename parameter rhs - // #TEST#: R1346 Rename first use of lhs - // #TEST#: R1347 Rename first use of rhs + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1348 Rename lhs - // #TEST#: R1349 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1350.txt b/results/diffs/R1350.txt index bfdf503..4c21738 100644 --- a/results/diffs/R1350.txt +++ b/results/diffs/R1350.txt @@ -1,28 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ad4135d 100644 +index 21c29d3..bdb5a77 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -829,11 +829,11 @@ public: - - // #TEST#: R1350 Rename template parameter T - // #TEST#: R1351 Rename template parameter U --template -+template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Multiplicable - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -842,7 +842,7 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs +@@ -819,11 +819,11 @@ public: + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1351.txt b/results/diffs/R1351.txt index 8d44e1a..4e8370e 100644 --- a/results/diffs/R1351.txt +++ b/results/diffs/R1351.txt @@ -1,28 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..77ce5c5 100644 +index 21c29d3..32de857 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -829,11 +829,11 @@ public: - - // #TEST#: R1350 Rename template parameter T - // #TEST#: R1351 Rename template parameter U --template -+template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Multiplicable - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -842,7 +842,7 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs +@@ -819,11 +819,11 @@ public: + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1352.txt b/results/diffs/R1352.txt index 28e878d..4c21738 100644 --- a/results/diffs/R1352.txt +++ b/results/diffs/R1352.txt @@ -1,28 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..4385d42 100644 +index 21c29d3..bdb5a77 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -844,11 +844,11 @@ public: - // #TEST#: R1350 Rename template parameter T - // #TEST#: R1351 Rename template parameter U - // #TEST#: R1352 Rename use of T --template -+template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Multiplicable - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -857,7 +857,7 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs +@@ -819,11 +819,11 @@ public: + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1353.txt b/results/diffs/R1353.txt index 1ad368e..4e8370e 100644 --- a/results/diffs/R1353.txt +++ b/results/diffs/R1353.txt @@ -1,194 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..32de857 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -819,11 +819,11 @@ public: + // #TEST#: R1349 Rename parameter rhs + // #TEST#: R1350 Rename first use of lhs + // #TEST#: R1351 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) + { + // #TEST#: R1352 Rename lhs + // #TEST#: R1353 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1354.txt b/results/diffs/R1354.txt index bfdf503..bcb2692 100644 --- a/results/diffs/R1354.txt +++ b/results/diffs/R1354.txt @@ -4,25 +4,25 @@ index 21c29d3..ad4135d 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -829,11 +829,11 @@ public: - // #TEST#: R1350 Rename template parameter T - // #TEST#: R1351 Rename template parameter U + // #TEST#: R1354 Rename template parameter T + // #TEST#: R1355 Rename template parameter U -template +template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U - requires Multiplicable + requires Multiplicable struct ProductStruct1 { - // #TEST#: R1356 Rename use of T + // #TEST#: R1360 Rename use of T @@ -842,7 +842,7 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs diff --git a/results/diffs/R1355.txt b/results/diffs/R1355.txt index 8d44e1a..353c352 100644 --- a/results/diffs/R1355.txt +++ b/results/diffs/R1355.txt @@ -4,25 +4,25 @@ index 21c29d3..77ce5c5 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -829,11 +829,11 @@ public: - // #TEST#: R1350 Rename template parameter T - // #TEST#: R1351 Rename template parameter U + // #TEST#: R1354 Rename template parameter T + // #TEST#: R1355 Rename template parameter U -template +template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U - requires Multiplicable + requires Multiplicable struct ProductStruct1 { - // #TEST#: R1356 Rename use of T + // #TEST#: R1360 Rename use of T @@ -842,7 +842,7 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs diff --git a/results/diffs/R1356.txt b/results/diffs/R1356.txt index bfdf503..e9803f2 100644 --- a/results/diffs/R1356.txt +++ b/results/diffs/R1356.txt @@ -1,28 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ad4135d 100644 +index 977575b..4385d42 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -829,11 +829,11 @@ public: - - // #TEST#: R1350 Rename template parameter T - // #TEST#: R1351 Rename template parameter U +@@ -844,11 +844,11 @@ public: + // #TEST#: R1354 Rename template parameter T + // #TEST#: R1355 Rename template parameter U + // #TEST#: R1356 Rename use of T -template +template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U - requires Multiplicable + requires Multiplicable struct ProductStruct1 { - // #TEST#: R1356 Rename use of T -@@ -842,7 +842,7 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs + // #TEST#: R1360 Rename use of T +@@ -857,7 +857,7 @@ struct ProductStruct1 + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs diff --git a/results/diffs/R1357.txt b/results/diffs/R1357.txt index 36c1835..88604f0 100644 --- a/results/diffs/R1357.txt +++ b/results/diffs/R1357.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..118afe3 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -842,11 +842,11 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1358.txt b/results/diffs/R1358.txt index 8d44e1a..bcb2692 100644 --- a/results/diffs/R1358.txt +++ b/results/diffs/R1358.txt @@ -1,28 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..77ce5c5 100644 +index 21c29d3..ad4135d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -829,11 +829,11 @@ public: - // #TEST#: R1350 Rename template parameter T - // #TEST#: R1351 Rename template parameter U + // #TEST#: R1354 Rename template parameter T + // #TEST#: R1355 Rename template parameter U -template -+template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U ++template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U - requires Multiplicable -+ requires Multiplicable ++ requires Multiplicable struct ProductStruct1 { - // #TEST#: R1356 Rename use of T + // #TEST#: R1360 Rename use of T @@ -842,7 +842,7 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs diff --git a/results/diffs/R1359.txt b/results/diffs/R1359.txt index ae1fcab..353c352 100644 --- a/results/diffs/R1359.txt +++ b/results/diffs/R1359.txt @@ -1,19 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..5206049 100644 +index 21c29d3..77ce5c5 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -842,11 +842,11 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs +@@ -829,11 +829,11 @@ public: + + // #TEST#: R1354 Rename template parameter T + // #TEST#: R1355 Rename template parameter U +-template ++template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Multiplicable + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -842,7 +842,7 @@ struct ProductStruct1 + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs diff --git a/results/diffs/R1360.txt b/results/diffs/R1360.txt index 36c1835..bcb2692 100644 --- a/results/diffs/R1360.txt +++ b/results/diffs/R1360.txt @@ -1,19 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..118afe3 100644 +index 21c29d3..ad4135d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -842,11 +842,11 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs +@@ -829,11 +829,11 @@ public: + + // #TEST#: R1354 Rename template parameter T + // #TEST#: R1355 Rename template parameter U +-template ++template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Multiplicable + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -842,7 +842,7 @@ struct ProductStruct1 + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs diff --git a/results/diffs/R1361.txt b/results/diffs/R1361.txt index ae1fcab..b08fa29 100644 --- a/results/diffs/R1361.txt +++ b/results/diffs/R1361.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..5206049 100644 +index 21c29d3..118afe3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -842,11 +842,11 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1362.txt b/results/diffs/R1362.txt index 36c1835..353c352 100644 --- a/results/diffs/R1362.txt +++ b/results/diffs/R1362.txt @@ -1,19 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..118afe3 100644 +index 21c29d3..77ce5c5 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -842,11 +842,11 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs +@@ -829,11 +829,11 @@ public: + + // #TEST#: R1354 Rename template parameter T + // #TEST#: R1355 Rename template parameter U +-template ++template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Multiplicable + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -842,7 +842,7 @@ struct ProductStruct1 + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs diff --git a/results/diffs/R1363.txt b/results/diffs/R1363.txt index ae1fcab..18edc8f 100644 --- a/results/diffs/R1363.txt +++ b/results/diffs/R1363.txt @@ -3,14 +3,14 @@ index 21c29d3..5206049 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -842,11 +842,11 @@ struct ProductStruct1 - // #TEST#: R1359 Rename parameter rhs - // #TEST#: R1360 Rename first use of lhs - // #TEST#: R1361 Rename first use of rhs + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1362 Rename lhs - // #TEST#: R1363 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1364.txt b/results/diffs/R1364.txt index dd80b3e..b08fa29 100644 --- a/results/diffs/R1364.txt +++ b/results/diffs/R1364.txt @@ -1,28 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..c8e7a22 100644 +index 21c29d3..118afe3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -852,11 +852,11 @@ struct ProductStruct1 - - // #TEST#: R1364 Rename template parameter T - // #TEST#: R1365 Rename template parameter U --template -+template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Multiplicable - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -865,7 +865,7 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs +@@ -842,11 +842,11 @@ struct ProductStruct1 + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1365.txt b/results/diffs/R1365.txt index f8ede92..18edc8f 100644 --- a/results/diffs/R1365.txt +++ b/results/diffs/R1365.txt @@ -1,28 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..633ac73 100644 +index 21c29d3..5206049 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -852,11 +852,11 @@ struct ProductStruct1 - - // #TEST#: R1364 Rename template parameter T - // #TEST#: R1365 Rename template parameter U --template -+template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Multiplicable - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -865,7 +865,7 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs +@@ -842,11 +842,11 @@ struct ProductStruct1 + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1366.txt b/results/diffs/R1366.txt index 25439f0..b08fa29 100644 --- a/results/diffs/R1366.txt +++ b/results/diffs/R1366.txt @@ -1,28 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..3cbc865 100644 +index 21c29d3..118afe3 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -868,11 +868,11 @@ struct ProductStruct1 - // #TEST#: R1364 Rename template parameter T - // #TEST#: R1365 Rename template parameter U - // #TEST#: R1366 Rename use of T --template -+template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Multiplicable - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs +@@ -842,11 +842,11 @@ struct ProductStruct1 + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1367.txt b/results/diffs/R1367.txt index 1ad368e..18edc8f 100644 --- a/results/diffs/R1367.txt +++ b/results/diffs/R1367.txt @@ -1,194 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..5206049 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -842,11 +842,11 @@ struct ProductStruct1 + // #TEST#: R1363 Rename parameter rhs + // #TEST#: R1364 Rename first use of lhs + // #TEST#: R1365 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) + { + // #TEST#: R1366 Rename lhs + // #TEST#: R1367 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1368.txt b/results/diffs/R1368.txt index dd80b3e..16dd0df 100644 --- a/results/diffs/R1368.txt +++ b/results/diffs/R1368.txt @@ -4,25 +4,25 @@ index 21c29d3..c8e7a22 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -852,11 +852,11 @@ struct ProductStruct1 - // #TEST#: R1364 Rename template parameter T - // #TEST#: R1365 Rename template parameter U + // #TEST#: R1368 Rename template parameter T + // #TEST#: R1369 Rename template parameter U -template +template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U - requires Multiplicable + requires Multiplicable union ProductUnion1 { - // #TEST#: R1370 Rename use of T + // #TEST#: R1374 Rename use of T @@ -865,7 +865,7 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs diff --git a/results/diffs/R1369.txt b/results/diffs/R1369.txt index f8ede92..824659b 100644 --- a/results/diffs/R1369.txt +++ b/results/diffs/R1369.txt @@ -4,25 +4,25 @@ index 21c29d3..633ac73 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -852,11 +852,11 @@ struct ProductStruct1 - // #TEST#: R1364 Rename template parameter T - // #TEST#: R1365 Rename template parameter U + // #TEST#: R1368 Rename template parameter T + // #TEST#: R1369 Rename template parameter U -template +template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U - requires Multiplicable + requires Multiplicable union ProductUnion1 { - // #TEST#: R1370 Rename use of T + // #TEST#: R1374 Rename use of T @@ -865,7 +865,7 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs diff --git a/results/diffs/R1370.txt b/results/diffs/R1370.txt index dd80b3e..f1dadab 100644 --- a/results/diffs/R1370.txt +++ b/results/diffs/R1370.txt @@ -1,28 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..c8e7a22 100644 +index 977575b..3cbc865 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -852,11 +852,11 @@ struct ProductStruct1 - - // #TEST#: R1364 Rename template parameter T - // #TEST#: R1365 Rename template parameter U +@@ -868,11 +868,11 @@ struct ProductStruct1 + // #TEST#: R1368 Rename template parameter T + // #TEST#: R1369 Rename template parameter U + // #TEST#: R1370 Rename use of T -template +template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U - requires Multiplicable + requires Multiplicable union ProductUnion1 { - // #TEST#: R1370 Rename use of T -@@ -865,7 +865,7 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ union ProductUnion1 + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs diff --git a/results/diffs/R1371.txt b/results/diffs/R1371.txt index c126689..88604f0 100644 --- a/results/diffs/R1371.txt +++ b/results/diffs/R1371.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..84a16d9 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -865,11 +865,11 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1372.txt b/results/diffs/R1372.txt index f8ede92..16dd0df 100644 --- a/results/diffs/R1372.txt +++ b/results/diffs/R1372.txt @@ -1,28 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..633ac73 100644 +index 21c29d3..c8e7a22 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -852,11 +852,11 @@ struct ProductStruct1 - // #TEST#: R1364 Rename template parameter T - // #TEST#: R1365 Rename template parameter U + // #TEST#: R1368 Rename template parameter T + // #TEST#: R1369 Rename template parameter U -template -+template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U ++template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U - requires Multiplicable -+ requires Multiplicable ++ requires Multiplicable union ProductUnion1 { - // #TEST#: R1370 Rename use of T + // #TEST#: R1374 Rename use of T @@ -865,7 +865,7 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs diff --git a/results/diffs/R1373.txt b/results/diffs/R1373.txt index 64f8b45..824659b 100644 --- a/results/diffs/R1373.txt +++ b/results/diffs/R1373.txt @@ -1,19 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e00e602 100644 +index 21c29d3..633ac73 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -865,11 +865,11 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs +@@ -852,11 +852,11 @@ struct ProductStruct1 + + // #TEST#: R1368 Rename template parameter T + // #TEST#: R1369 Rename template parameter U +-template ++template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Multiplicable + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -865,7 +865,7 @@ union ProductUnion1 + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs diff --git a/results/diffs/R1374.txt b/results/diffs/R1374.txt index c126689..16dd0df 100644 --- a/results/diffs/R1374.txt +++ b/results/diffs/R1374.txt @@ -1,19 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..84a16d9 100644 +index 21c29d3..c8e7a22 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -865,11 +865,11 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs +@@ -852,11 +852,11 @@ struct ProductStruct1 + + // #TEST#: R1368 Rename template parameter T + // #TEST#: R1369 Rename template parameter U +-template ++template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Multiplicable + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -865,7 +865,7 @@ union ProductUnion1 + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs diff --git a/results/diffs/R1375.txt b/results/diffs/R1375.txt index 64f8b45..a8b9103 100644 --- a/results/diffs/R1375.txt +++ b/results/diffs/R1375.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e00e602 100644 +index 21c29d3..84a16d9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -865,11 +865,11 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1376.txt b/results/diffs/R1376.txt index c126689..824659b 100644 --- a/results/diffs/R1376.txt +++ b/results/diffs/R1376.txt @@ -1,19 +1,28 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..84a16d9 100644 +index 21c29d3..633ac73 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -865,11 +865,11 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs +@@ -852,11 +852,11 @@ struct ProductStruct1 + + // #TEST#: R1368 Rename template parameter T + // #TEST#: R1369 Rename template parameter U +-template ++template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Multiplicable + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -865,7 +865,7 @@ union ProductUnion1 + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs diff --git a/results/diffs/R1377.txt b/results/diffs/R1377.txt index 64f8b45..d5bd241 100644 --- a/results/diffs/R1377.txt +++ b/results/diffs/R1377.txt @@ -3,14 +3,14 @@ index 21c29d3..e00e602 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -865,11 +865,11 @@ union ProductUnion1 - // #TEST#: R1373 Rename parameter rhs - // #TEST#: R1374 Rename first use of lhs - // #TEST#: R1375 Rename first use of rhs + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1376 Rename lhs - // #TEST#: R1377 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1378.txt b/results/diffs/R1378.txt index 9a63b91..a8b9103 100644 --- a/results/diffs/R1378.txt +++ b/results/diffs/R1378.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ee849cb 100644 +index 21c29d3..84a16d9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -876,12 +876,12 @@ union ProductUnion1 - // compound constraint on multiple template parameters, disjunction - // #TEST#: R1378 Rename template parameter T - // #TEST#: R1379 Rename template parameter U --template -+template - // #TEST#: R1382 Rename concept Multiplicable - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - class Product2 - { - public: -@@ -891,7 +891,7 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs +@@ -865,11 +865,11 @@ union ProductUnion1 + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1379.txt b/results/diffs/R1379.txt index 974613f..d5bd241 100644 --- a/results/diffs/R1379.txt +++ b/results/diffs/R1379.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..37c2998 100644 +index 21c29d3..e00e602 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -876,12 +876,12 @@ union ProductUnion1 - // compound constraint on multiple template parameters, disjunction - // #TEST#: R1378 Rename template parameter T - // #TEST#: R1379 Rename template parameter U --template -+template - // #TEST#: R1382 Rename concept Multiplicable - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - class Product2 - { - public: -@@ -891,7 +891,7 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs +@@ -865,11 +865,11 @@ union ProductUnion1 + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1380.txt b/results/diffs/R1380.txt index ebadc6f..a8b9103 100644 --- a/results/diffs/R1380.txt +++ b/results/diffs/R1380.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..f1c167c 100644 +index 21c29d3..84a16d9 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -893,12 +893,12 @@ union ProductUnion1 - // #TEST#: R1378 Rename template parameter T - // #TEST#: R1379 Rename template parameter U - // #TEST#: R1380 Rename use of T --template -+template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1382 Rename concept Multiplicable - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - class Product2 - { - public: -@@ -908,7 +908,7 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs +@@ -865,11 +865,11 @@ union ProductUnion1 + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1381.txt b/results/diffs/R1381.txt index 9a63b91..d5bd241 100644 --- a/results/diffs/R1381.txt +++ b/results/diffs/R1381.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ee849cb 100644 +index 21c29d3..e00e602 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -876,12 +876,12 @@ union ProductUnion1 - // compound constraint on multiple template parameters, disjunction - // #TEST#: R1378 Rename template parameter T - // #TEST#: R1379 Rename template parameter U --template -+template - // #TEST#: R1382 Rename concept Multiplicable - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - class Product2 - { - public: -@@ -891,7 +891,7 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs +@@ -865,11 +865,11 @@ union ProductUnion1 + // #TEST#: R1377 Rename parameter rhs + // #TEST#: R1378 Rename first use of lhs + // #TEST#: R1379 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1380 Rename lhs + // #TEST#: R1381 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1382.txt b/results/diffs/R1382.txt index 1ad368e..ef47851 100644 --- a/results/diffs/R1382.txt +++ b/results/diffs/R1382.txt @@ -1,194 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..ee849cb 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U +@@ -876,12 +876,12 @@ union ProductUnion1 + // compound constraint on multiple template parameters, disjunction + // #TEST#: R1382 Rename template parameter T + // #TEST#: R1383 Rename template parameter U +-template ++template + // #TEST#: R1386 Rename concept Multiplicable + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink ++ requires std::is_arithmetic_v || Multiplicable class Product2 { public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -891,7 +891,7 @@ public: + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) + { + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs diff --git a/results/diffs/R1383.txt b/results/diffs/R1383.txt index 9a63b91..790cb1a 100644 --- a/results/diffs/R1383.txt +++ b/results/diffs/R1383.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ee849cb 100644 +index 21c29d3..37c2998 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -876,12 +876,12 @@ union ProductUnion1 // compound constraint on multiple template parameters, disjunction - // #TEST#: R1378 Rename template parameter T - // #TEST#: R1379 Rename template parameter U + // #TEST#: R1382 Rename template parameter T + // #TEST#: R1383 Rename template parameter U -template -+template - // #TEST#: R1382 Rename concept Multiplicable - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U ++template + // #TEST#: R1386 Rename concept Multiplicable + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable class Product2 { public: @@ -891,7 +891,7 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs diff --git a/results/diffs/R1384.txt b/results/diffs/R1384.txt index 974613f..fa534a3 100644 --- a/results/diffs/R1384.txt +++ b/results/diffs/R1384.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..37c2998 100644 +index 977575b..f1c167c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -876,12 +876,12 @@ union ProductUnion1 - // compound constraint on multiple template parameters, disjunction - // #TEST#: R1378 Rename template parameter T - // #TEST#: R1379 Rename template parameter U +@@ -893,12 +893,12 @@ union ProductUnion1 + // #TEST#: R1382 Rename template parameter T + // #TEST#: R1383 Rename template parameter U + // #TEST#: R1384 Rename use of T -template -+template - // #TEST#: R1382 Rename concept Multiplicable - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U ++template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1386 Rename concept Multiplicable + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable class Product2 { public: -@@ -891,7 +891,7 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs +@@ -908,7 +908,7 @@ public: + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs diff --git a/results/diffs/R1385.txt b/results/diffs/R1385.txt index 9a63b91..ef47851 100644 --- a/results/diffs/R1385.txt +++ b/results/diffs/R1385.txt @@ -4,26 +4,26 @@ index 21c29d3..ee849cb 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -876,12 +876,12 @@ union ProductUnion1 // compound constraint on multiple template parameters, disjunction - // #TEST#: R1378 Rename template parameter T - // #TEST#: R1379 Rename template parameter U + // #TEST#: R1382 Rename template parameter T + // #TEST#: R1383 Rename template parameter U -template +template - // #TEST#: R1382 Rename concept Multiplicable - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U + // #TEST#: R1386 Rename concept Multiplicable + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U - requires std::is_arithmetic_v || Multiplicable + requires std::is_arithmetic_v || Multiplicable class Product2 { public: @@ -891,7 +891,7 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs diff --git a/results/diffs/R1386.txt b/results/diffs/R1386.txt index 7c7e41e..88604f0 100644 --- a/results/diffs/R1386.txt +++ b/results/diffs/R1386.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..7e538ed 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -891,11 +891,11 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1387.txt b/results/diffs/R1387.txt index 974613f..ef47851 100644 --- a/results/diffs/R1387.txt +++ b/results/diffs/R1387.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..37c2998 100644 +index 21c29d3..ee849cb 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -876,12 +876,12 @@ union ProductUnion1 // compound constraint on multiple template parameters, disjunction - // #TEST#: R1378 Rename template parameter T - // #TEST#: R1379 Rename template parameter U + // #TEST#: R1382 Rename template parameter T + // #TEST#: R1383 Rename template parameter U -template -+template - // #TEST#: R1382 Rename concept Multiplicable - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U ++template + // #TEST#: R1386 Rename concept Multiplicable + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable class Product2 { public: @@ -891,7 +891,7 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs diff --git a/results/diffs/R1388.txt b/results/diffs/R1388.txt index a0e7684..790cb1a 100644 --- a/results/diffs/R1388.txt +++ b/results/diffs/R1388.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..9fd2c1e 100644 +index 21c29d3..37c2998 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -891,11 +891,11 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs +@@ -876,12 +876,12 @@ union ProductUnion1 + // compound constraint on multiple template parameters, disjunction + // #TEST#: R1382 Rename template parameter T + // #TEST#: R1383 Rename template parameter U +-template ++template + // #TEST#: R1386 Rename concept Multiplicable + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + class Product2 + { + public: +@@ -891,7 +891,7 @@ public: + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs diff --git a/results/diffs/R1389.txt b/results/diffs/R1389.txt index 7c7e41e..ef47851 100644 --- a/results/diffs/R1389.txt +++ b/results/diffs/R1389.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..7e538ed 100644 +index 21c29d3..ee849cb 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -891,11 +891,11 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs +@@ -876,12 +876,12 @@ union ProductUnion1 + // compound constraint on multiple template parameters, disjunction + // #TEST#: R1382 Rename template parameter T + // #TEST#: R1383 Rename template parameter U +-template ++template + // #TEST#: R1386 Rename concept Multiplicable + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + class Product2 + { + public: +@@ -891,7 +891,7 @@ public: + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs diff --git a/results/diffs/R1390.txt b/results/diffs/R1390.txt index a0e7684..2fbcb3a 100644 --- a/results/diffs/R1390.txt +++ b/results/diffs/R1390.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..9fd2c1e 100644 +index 21c29d3..7e538ed 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -891,11 +891,11 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1391.txt b/results/diffs/R1391.txt index 7c7e41e..790cb1a 100644 --- a/results/diffs/R1391.txt +++ b/results/diffs/R1391.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..7e538ed 100644 +index 21c29d3..37c2998 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -891,11 +891,11 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs +@@ -876,12 +876,12 @@ union ProductUnion1 + // compound constraint on multiple template parameters, disjunction + // #TEST#: R1382 Rename template parameter T + // #TEST#: R1383 Rename template parameter U +-template ++template + // #TEST#: R1386 Rename concept Multiplicable + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + class Product2 + { + public: +@@ -891,7 +891,7 @@ public: + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs diff --git a/results/diffs/R1392.txt b/results/diffs/R1392.txt index a0e7684..5ed08b5 100644 --- a/results/diffs/R1392.txt +++ b/results/diffs/R1392.txt @@ -3,14 +3,14 @@ index 21c29d3..9fd2c1e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -891,11 +891,11 @@ public: - // #TEST#: R1388 Rename parameter rhs - // #TEST#: R1389 Rename first use of lhs - // #TEST#: R1390 Rename first use of rhs + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1391 Rename lhs - // #TEST#: R1392 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1393.txt b/results/diffs/R1393.txt index 3e31c8c..2fbcb3a 100644 --- a/results/diffs/R1393.txt +++ b/results/diffs/R1393.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..53a0956 100644 +index 21c29d3..7e538ed 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -901,12 +901,12 @@ public: - - // #TEST#: R1393 Rename template parameter T - // #TEST#: R1394 Rename template parameter U --template -+template - // #TEST#: R1397 Rename concept Multiplicable - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -915,7 +915,7 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs +@@ -891,11 +891,11 @@ public: + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1394.txt b/results/diffs/R1394.txt index 1928c96..5ed08b5 100644 --- a/results/diffs/R1394.txt +++ b/results/diffs/R1394.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..4f61e94 100644 +index 21c29d3..9fd2c1e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -901,12 +901,12 @@ public: - - // #TEST#: R1393 Rename template parameter T - // #TEST#: R1394 Rename template parameter U --template -+template - // #TEST#: R1397 Rename concept Multiplicable - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -915,7 +915,7 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs +@@ -891,11 +891,11 @@ public: + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1395.txt b/results/diffs/R1395.txt index 64d611b..2fbcb3a 100644 --- a/results/diffs/R1395.txt +++ b/results/diffs/R1395.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..b603d9e 100644 +index 21c29d3..7e538ed 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -919,12 +919,12 @@ public: - // #TEST#: R1393 Rename template parameter T - // #TEST#: R1394 Rename template parameter U - // #TEST#: R1395 Rename use of T --template -+template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1397 Rename concept Multiplicable - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -933,7 +933,7 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs +@@ -891,11 +891,11 @@ public: + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1396.txt b/results/diffs/R1396.txt index 3e31c8c..5ed08b5 100644 --- a/results/diffs/R1396.txt +++ b/results/diffs/R1396.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..53a0956 100644 +index 21c29d3..9fd2c1e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -901,12 +901,12 @@ public: - - // #TEST#: R1393 Rename template parameter T - // #TEST#: R1394 Rename template parameter U --template -+template - // #TEST#: R1397 Rename concept Multiplicable - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -915,7 +915,7 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs +@@ -891,11 +891,11 @@ public: + // #TEST#: R1392 Rename parameter rhs + // #TEST#: R1393 Rename first use of lhs + // #TEST#: R1394 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1395 Rename lhs + // #TEST#: R1396 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1397.txt b/results/diffs/R1397.txt index 1ad368e..7de0b27 100644 --- a/results/diffs/R1397.txt +++ b/results/diffs/R1397.txt @@ -1,194 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..53a0956 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U +@@ -901,12 +901,12 @@ public: + + // #TEST#: R1397 Rename template parameter T + // #TEST#: R1398 Rename template parameter U +-template ++template + // #TEST#: R1401 Rename concept Multiplicable + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink ++ requires std::is_arithmetic_v || Multiplicable struct ProductStruct2 { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T + // #TEST#: R1404 Rename use of T +@@ -915,7 +915,7 @@ struct ProductStruct2 + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) + { + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs diff --git a/results/diffs/R1398.txt b/results/diffs/R1398.txt index 3e31c8c..1382f05 100644 --- a/results/diffs/R1398.txt +++ b/results/diffs/R1398.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..53a0956 100644 +index 21c29d3..4f61e94 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -901,12 +901,12 @@ public: - // #TEST#: R1393 Rename template parameter T - // #TEST#: R1394 Rename template parameter U + // #TEST#: R1397 Rename template parameter T + // #TEST#: R1398 Rename template parameter U -template -+template - // #TEST#: R1397 Rename concept Multiplicable - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U ++template + // #TEST#: R1401 Rename concept Multiplicable + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable struct ProductStruct2 { - // #TEST#: R1400 Rename use of T + // #TEST#: R1404 Rename use of T @@ -915,7 +915,7 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs diff --git a/results/diffs/R1399.txt b/results/diffs/R1399.txt index 1928c96..3077b7d 100644 --- a/results/diffs/R1399.txt +++ b/results/diffs/R1399.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..4f61e94 100644 +index 977575b..b603d9e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -901,12 +901,12 @@ public: - - // #TEST#: R1393 Rename template parameter T - // #TEST#: R1394 Rename template parameter U +@@ -919,12 +919,12 @@ public: + // #TEST#: R1397 Rename template parameter T + // #TEST#: R1398 Rename template parameter U + // #TEST#: R1399 Rename use of T -template -+template - // #TEST#: R1397 Rename concept Multiplicable - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U ++template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1401 Rename concept Multiplicable + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable struct ProductStruct2 { - // #TEST#: R1400 Rename use of T -@@ -915,7 +915,7 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs + // #TEST#: R1404 Rename use of T +@@ -933,7 +933,7 @@ struct ProductStruct2 + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs diff --git a/results/diffs/R1400.txt b/results/diffs/R1400.txt index 3e31c8c..7de0b27 100644 --- a/results/diffs/R1400.txt +++ b/results/diffs/R1400.txt @@ -4,26 +4,26 @@ index 21c29d3..53a0956 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -901,12 +901,12 @@ public: - // #TEST#: R1393 Rename template parameter T - // #TEST#: R1394 Rename template parameter U + // #TEST#: R1397 Rename template parameter T + // #TEST#: R1398 Rename template parameter U -template +template - // #TEST#: R1397 Rename concept Multiplicable - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U + // #TEST#: R1401 Rename concept Multiplicable + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U - requires std::is_arithmetic_v || Multiplicable + requires std::is_arithmetic_v || Multiplicable struct ProductStruct2 { - // #TEST#: R1400 Rename use of T + // #TEST#: R1404 Rename use of T @@ -915,7 +915,7 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs diff --git a/results/diffs/R1401.txt b/results/diffs/R1401.txt index 65c58ff..88604f0 100644 --- a/results/diffs/R1401.txt +++ b/results/diffs/R1401.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..f3ebdfc 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -915,11 +915,11 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1402.txt b/results/diffs/R1402.txt index 1928c96..7de0b27 100644 --- a/results/diffs/R1402.txt +++ b/results/diffs/R1402.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..4f61e94 100644 +index 21c29d3..53a0956 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -901,12 +901,12 @@ public: - // #TEST#: R1393 Rename template parameter T - // #TEST#: R1394 Rename template parameter U + // #TEST#: R1397 Rename template parameter T + // #TEST#: R1398 Rename template parameter U -template -+template - // #TEST#: R1397 Rename concept Multiplicable - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U ++template + // #TEST#: R1401 Rename concept Multiplicable + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable struct ProductStruct2 { - // #TEST#: R1400 Rename use of T + // #TEST#: R1404 Rename use of T @@ -915,7 +915,7 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs diff --git a/results/diffs/R1403.txt b/results/diffs/R1403.txt index fce2139..1382f05 100644 --- a/results/diffs/R1403.txt +++ b/results/diffs/R1403.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..b3bcd9b 100644 +index 21c29d3..4f61e94 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -915,11 +915,11 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs +@@ -901,12 +901,12 @@ public: + + // #TEST#: R1397 Rename template parameter T + // #TEST#: R1398 Rename template parameter U +-template ++template + // #TEST#: R1401 Rename concept Multiplicable + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -915,7 +915,7 @@ struct ProductStruct2 + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs diff --git a/results/diffs/R1404.txt b/results/diffs/R1404.txt index 65c58ff..7de0b27 100644 --- a/results/diffs/R1404.txt +++ b/results/diffs/R1404.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..f3ebdfc 100644 +index 21c29d3..53a0956 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -915,11 +915,11 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs +@@ -901,12 +901,12 @@ public: + + // #TEST#: R1397 Rename template parameter T + // #TEST#: R1398 Rename template parameter U +-template ++template + // #TEST#: R1401 Rename concept Multiplicable + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -915,7 +915,7 @@ struct ProductStruct2 + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs diff --git a/results/diffs/R1405.txt b/results/diffs/R1405.txt index fce2139..e6a6c57 100644 --- a/results/diffs/R1405.txt +++ b/results/diffs/R1405.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..b3bcd9b 100644 +index 21c29d3..f3ebdfc 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -915,11 +915,11 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1406.txt b/results/diffs/R1406.txt index 65c58ff..1382f05 100644 --- a/results/diffs/R1406.txt +++ b/results/diffs/R1406.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..f3ebdfc 100644 +index 21c29d3..4f61e94 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -915,11 +915,11 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs +@@ -901,12 +901,12 @@ public: + + // #TEST#: R1397 Rename template parameter T + // #TEST#: R1398 Rename template parameter U +-template ++template + // #TEST#: R1401 Rename concept Multiplicable + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -915,7 +915,7 @@ struct ProductStruct2 + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs diff --git a/results/diffs/R1407.txt b/results/diffs/R1407.txt index fce2139..ac96aca 100644 --- a/results/diffs/R1407.txt +++ b/results/diffs/R1407.txt @@ -3,14 +3,14 @@ index 21c29d3..b3bcd9b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -915,11 +915,11 @@ struct ProductStruct2 - // #TEST#: R1403 Rename parameter rhs - // #TEST#: R1404 Rename first use of lhs - // #TEST#: R1405 Rename first use of rhs + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1406 Rename lhs - // #TEST#: R1407 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1408.txt b/results/diffs/R1408.txt index 8112eb6..e6a6c57 100644 --- a/results/diffs/R1408.txt +++ b/results/diffs/R1408.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e98b762 100644 +index 21c29d3..f3ebdfc 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -925,12 +925,12 @@ struct ProductStruct2 - - // #TEST#: R1408 Rename template parameter T - // #TEST#: R1409 Rename template parameter U --template -+template - // #TEST#: R1412 Rename concept Multiplicable - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -939,7 +939,7 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs +@@ -915,11 +915,11 @@ struct ProductStruct2 + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1409.txt b/results/diffs/R1409.txt index 0f5b4b1..ac96aca 100644 --- a/results/diffs/R1409.txt +++ b/results/diffs/R1409.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..60c3893 100644 +index 21c29d3..b3bcd9b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -925,12 +925,12 @@ struct ProductStruct2 - - // #TEST#: R1408 Rename template parameter T - // #TEST#: R1409 Rename template parameter U --template -+template - // #TEST#: R1412 Rename concept Multiplicable - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -939,7 +939,7 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs +@@ -915,11 +915,11 @@ struct ProductStruct2 + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1410.txt b/results/diffs/R1410.txt index d76e58f..e6a6c57 100644 --- a/results/diffs/R1410.txt +++ b/results/diffs/R1410.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..77f2398 100644 +index 21c29d3..f3ebdfc 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -944,12 +944,12 @@ struct ProductStruct2 - // #TEST#: R1408 Rename template parameter T - // #TEST#: R1409 Rename template parameter U - // #TEST#: R1410 Rename use of T --template -+template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1412 Rename concept Multiplicable - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -958,7 +958,7 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs +@@ -915,11 +915,11 @@ struct ProductStruct2 + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1411.txt b/results/diffs/R1411.txt index 8112eb6..ac96aca 100644 --- a/results/diffs/R1411.txt +++ b/results/diffs/R1411.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e98b762 100644 +index 21c29d3..b3bcd9b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -925,12 +925,12 @@ struct ProductStruct2 - - // #TEST#: R1408 Rename template parameter T - // #TEST#: R1409 Rename template parameter U --template -+template - // #TEST#: R1412 Rename concept Multiplicable - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -939,7 +939,7 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs +@@ -915,11 +915,11 @@ struct ProductStruct2 + // #TEST#: R1407 Rename parameter rhs + // #TEST#: R1408 Rename first use of lhs + // #TEST#: R1409 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1410 Rename lhs + // #TEST#: R1411 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1412.txt b/results/diffs/R1412.txt index 1ad368e..1c7647f 100644 --- a/results/diffs/R1412.txt +++ b/results/diffs/R1412.txt @@ -1,194 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..e98b762 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U +@@ -925,12 +925,12 @@ struct ProductStruct2 + + // #TEST#: R1412 Rename template parameter T + // #TEST#: R1413 Rename template parameter U +-template ++template + // #TEST#: R1416 Rename concept Multiplicable + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink ++ requires std::is_arithmetic_v || Multiplicable union ProductUnion2 { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T + // #TEST#: R1419 Rename use of T +@@ -939,7 +939,7 @@ union ProductUnion2 + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) + { + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs diff --git a/results/diffs/R1413.txt b/results/diffs/R1413.txt index 8112eb6..cc54425 100644 --- a/results/diffs/R1413.txt +++ b/results/diffs/R1413.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e98b762 100644 +index 21c29d3..60c3893 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -925,12 +925,12 @@ struct ProductStruct2 - // #TEST#: R1408 Rename template parameter T - // #TEST#: R1409 Rename template parameter U + // #TEST#: R1412 Rename template parameter T + // #TEST#: R1413 Rename template parameter U -template -+template - // #TEST#: R1412 Rename concept Multiplicable - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U ++template + // #TEST#: R1416 Rename concept Multiplicable + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable union ProductUnion2 { - // #TEST#: R1415 Rename use of T + // #TEST#: R1419 Rename use of T @@ -939,7 +939,7 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs diff --git a/results/diffs/R1414.txt b/results/diffs/R1414.txt index 0f5b4b1..25461d9 100644 --- a/results/diffs/R1414.txt +++ b/results/diffs/R1414.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..60c3893 100644 +index 977575b..77f2398 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -925,12 +925,12 @@ struct ProductStruct2 - - // #TEST#: R1408 Rename template parameter T - // #TEST#: R1409 Rename template parameter U +@@ -944,12 +944,12 @@ struct ProductStruct2 + // #TEST#: R1412 Rename template parameter T + // #TEST#: R1413 Rename template parameter U + // #TEST#: R1414 Rename use of T -template -+template - // #TEST#: R1412 Rename concept Multiplicable - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U ++template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1416 Rename concept Multiplicable + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable union ProductUnion2 { - // #TEST#: R1415 Rename use of T -@@ -939,7 +939,7 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs + // #TEST#: R1419 Rename use of T +@@ -958,7 +958,7 @@ union ProductUnion2 + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs diff --git a/results/diffs/R1415.txt b/results/diffs/R1415.txt index 8112eb6..1c7647f 100644 --- a/results/diffs/R1415.txt +++ b/results/diffs/R1415.txt @@ -4,26 +4,26 @@ index 21c29d3..e98b762 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -925,12 +925,12 @@ struct ProductStruct2 - // #TEST#: R1408 Rename template parameter T - // #TEST#: R1409 Rename template parameter U + // #TEST#: R1412 Rename template parameter T + // #TEST#: R1413 Rename template parameter U -template +template - // #TEST#: R1412 Rename concept Multiplicable - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U + // #TEST#: R1416 Rename concept Multiplicable + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U - requires std::is_arithmetic_v || Multiplicable + requires std::is_arithmetic_v || Multiplicable union ProductUnion2 { - // #TEST#: R1415 Rename use of T + // #TEST#: R1419 Rename use of T @@ -939,7 +939,7 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs diff --git a/results/diffs/R1416.txt b/results/diffs/R1416.txt index 98ff0ee..88604f0 100644 --- a/results/diffs/R1416.txt +++ b/results/diffs/R1416.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..0e8e9ca 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -939,11 +939,11 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1417.txt b/results/diffs/R1417.txt index 0f5b4b1..1c7647f 100644 --- a/results/diffs/R1417.txt +++ b/results/diffs/R1417.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..60c3893 100644 +index 21c29d3..e98b762 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -925,12 +925,12 @@ struct ProductStruct2 - // #TEST#: R1408 Rename template parameter T - // #TEST#: R1409 Rename template parameter U + // #TEST#: R1412 Rename template parameter T + // #TEST#: R1413 Rename template parameter U -template -+template - // #TEST#: R1412 Rename concept Multiplicable - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U ++template + // #TEST#: R1416 Rename concept Multiplicable + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U - requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable union ProductUnion2 { - // #TEST#: R1415 Rename use of T + // #TEST#: R1419 Rename use of T @@ -939,7 +939,7 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs diff --git a/results/diffs/R1418.txt b/results/diffs/R1418.txt index e6fec45..cc54425 100644 --- a/results/diffs/R1418.txt +++ b/results/diffs/R1418.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..7389c9f 100644 +index 21c29d3..60c3893 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -939,11 +939,11 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs +@@ -925,12 +925,12 @@ struct ProductStruct2 + + // #TEST#: R1412 Rename template parameter T + // #TEST#: R1413 Rename template parameter U +-template ++template + // #TEST#: R1416 Rename concept Multiplicable + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -939,7 +939,7 @@ union ProductUnion2 + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs diff --git a/results/diffs/R1419.txt b/results/diffs/R1419.txt index 98ff0ee..1c7647f 100644 --- a/results/diffs/R1419.txt +++ b/results/diffs/R1419.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..0e8e9ca 100644 +index 21c29d3..e98b762 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -939,11 +939,11 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs +@@ -925,12 +925,12 @@ struct ProductStruct2 + + // #TEST#: R1412 Rename template parameter T + // #TEST#: R1413 Rename template parameter U +-template ++template + // #TEST#: R1416 Rename concept Multiplicable + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -939,7 +939,7 @@ union ProductUnion2 + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs diff --git a/results/diffs/R1420.txt b/results/diffs/R1420.txt index e6fec45..ad5b584 100644 --- a/results/diffs/R1420.txt +++ b/results/diffs/R1420.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..7389c9f 100644 +index 21c29d3..0e8e9ca 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -939,11 +939,11 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1421.txt b/results/diffs/R1421.txt index 98ff0ee..cc54425 100644 --- a/results/diffs/R1421.txt +++ b/results/diffs/R1421.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..0e8e9ca 100644 +index 21c29d3..60c3893 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -939,11 +939,11 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs +@@ -925,12 +925,12 @@ struct ProductStruct2 + + // #TEST#: R1412 Rename template parameter T + // #TEST#: R1413 Rename template parameter U +-template ++template + // #TEST#: R1416 Rename concept Multiplicable + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Multiplicable + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -939,7 +939,7 @@ union ProductUnion2 + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs diff --git a/results/diffs/R1422.txt b/results/diffs/R1422.txt index e6fec45..5ad461f 100644 --- a/results/diffs/R1422.txt +++ b/results/diffs/R1422.txt @@ -3,14 +3,14 @@ index 21c29d3..7389c9f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -939,11 +939,11 @@ union ProductUnion2 - // #TEST#: R1418 Rename parameter rhs - // #TEST#: R1419 Rename first use of lhs - // #TEST#: R1420 Rename first use of rhs + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1421 Rename lhs - // #TEST#: R1422 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1423.txt b/results/diffs/R1423.txt index 7c25224..ad5b584 100644 --- a/results/diffs/R1423.txt +++ b/results/diffs/R1423.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e3104ac 100644 +index 21c29d3..0e8e9ca 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -950,12 +950,12 @@ union ProductUnion2 - // compound constraint on multiple template parameters, conjunction - // #TEST#: R1423 Rename template parameter T - // #TEST#: R1424 Rename template parameter U --template -+template - // #TEST#: R1427 Rename concept Multiplicable - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - class Product3 - { - public: -@@ -965,7 +965,7 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs +@@ -939,11 +939,11 @@ union ProductUnion2 + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1424.txt b/results/diffs/R1424.txt index 6dcdc92..5ad461f 100644 --- a/results/diffs/R1424.txt +++ b/results/diffs/R1424.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..09c18d1 100644 +index 21c29d3..7389c9f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -950,12 +950,12 @@ union ProductUnion2 - // compound constraint on multiple template parameters, conjunction - // #TEST#: R1423 Rename template parameter T - // #TEST#: R1424 Rename template parameter U --template -+template - // #TEST#: R1427 Rename concept Multiplicable - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - class Product3 - { - public: -@@ -965,7 +965,7 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs +@@ -939,11 +939,11 @@ union ProductUnion2 + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1425.txt b/results/diffs/R1425.txt index 40f28f1..ad5b584 100644 --- a/results/diffs/R1425.txt +++ b/results/diffs/R1425.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..da5782e 100644 +index 21c29d3..0e8e9ca 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -970,12 +970,12 @@ union ProductUnion2 - // #TEST#: R1423 Rename template parameter T - // #TEST#: R1424 Rename template parameter U - // #TEST#: R1425 Rename use of T --template -+template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1427 Rename concept Multiplicable - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - class Product3 - { - public: -@@ -985,7 +985,7 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs +@@ -939,11 +939,11 @@ union ProductUnion2 + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1426.txt b/results/diffs/R1426.txt index 7c25224..5ad461f 100644 --- a/results/diffs/R1426.txt +++ b/results/diffs/R1426.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e3104ac 100644 +index 21c29d3..7389c9f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -950,12 +950,12 @@ union ProductUnion2 - // compound constraint on multiple template parameters, conjunction - // #TEST#: R1423 Rename template parameter T - // #TEST#: R1424 Rename template parameter U --template -+template - // #TEST#: R1427 Rename concept Multiplicable - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - class Product3 - { - public: -@@ -965,7 +965,7 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs +@@ -939,11 +939,11 @@ union ProductUnion2 + // #TEST#: R1422 Rename parameter rhs + // #TEST#: R1423 Rename first use of lhs + // #TEST#: R1424 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1425 Rename lhs + // #TEST#: R1426 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1427.txt b/results/diffs/R1427.txt index 1ad368e..91d3894 100644 --- a/results/diffs/R1427.txt +++ b/results/diffs/R1427.txt @@ -1,194 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..e3104ac 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U +@@ -950,12 +950,12 @@ union ProductUnion2 + // compound constraint on multiple template parameters, conjunction + // #TEST#: R1427 Rename template parameter T + // #TEST#: R1428 Rename template parameter U +-template ++template + // #TEST#: R1431 Rename concept Multiplicable + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink ++ requires std::is_arithmetic_v && Multiplicable class Product3 { public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -965,7 +965,7 @@ public: + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) + { + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs diff --git a/results/diffs/R1428.txt b/results/diffs/R1428.txt index 7c25224..502e8bd 100644 --- a/results/diffs/R1428.txt +++ b/results/diffs/R1428.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e3104ac 100644 +index 21c29d3..09c18d1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -950,12 +950,12 @@ union ProductUnion2 // compound constraint on multiple template parameters, conjunction - // #TEST#: R1423 Rename template parameter T - // #TEST#: R1424 Rename template parameter U + // #TEST#: R1427 Rename template parameter T + // #TEST#: R1428 Rename template parameter U -template -+template - // #TEST#: R1427 Rename concept Multiplicable - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U ++template + // #TEST#: R1431 Rename concept Multiplicable + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable class Product3 { public: @@ -965,7 +965,7 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs diff --git a/results/diffs/R1429.txt b/results/diffs/R1429.txt index 6dcdc92..8195f94 100644 --- a/results/diffs/R1429.txt +++ b/results/diffs/R1429.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..09c18d1 100644 +index 977575b..da5782e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -950,12 +950,12 @@ union ProductUnion2 - // compound constraint on multiple template parameters, conjunction - // #TEST#: R1423 Rename template parameter T - // #TEST#: R1424 Rename template parameter U +@@ -970,12 +970,12 @@ union ProductUnion2 + // #TEST#: R1427 Rename template parameter T + // #TEST#: R1428 Rename template parameter U + // #TEST#: R1429 Rename use of T -template -+template - // #TEST#: R1427 Rename concept Multiplicable - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U ++template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1431 Rename concept Multiplicable + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable class Product3 { public: -@@ -965,7 +965,7 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs +@@ -985,7 +985,7 @@ public: + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs diff --git a/results/diffs/R1430.txt b/results/diffs/R1430.txt index 7c25224..91d3894 100644 --- a/results/diffs/R1430.txt +++ b/results/diffs/R1430.txt @@ -4,26 +4,26 @@ index 21c29d3..e3104ac 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -950,12 +950,12 @@ union ProductUnion2 // compound constraint on multiple template parameters, conjunction - // #TEST#: R1423 Rename template parameter T - // #TEST#: R1424 Rename template parameter U + // #TEST#: R1427 Rename template parameter T + // #TEST#: R1428 Rename template parameter U -template +template - // #TEST#: R1427 Rename concept Multiplicable - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U + // #TEST#: R1431 Rename concept Multiplicable + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U - requires std::is_arithmetic_v && Multiplicable + requires std::is_arithmetic_v && Multiplicable class Product3 { public: @@ -965,7 +965,7 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs diff --git a/results/diffs/R1431.txt b/results/diffs/R1431.txt index dfcf504..88604f0 100644 --- a/results/diffs/R1431.txt +++ b/results/diffs/R1431.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..afdc4a7 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -965,11 +965,11 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1432.txt b/results/diffs/R1432.txt index 6dcdc92..91d3894 100644 --- a/results/diffs/R1432.txt +++ b/results/diffs/R1432.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..09c18d1 100644 +index 21c29d3..e3104ac 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -950,12 +950,12 @@ union ProductUnion2 // compound constraint on multiple template parameters, conjunction - // #TEST#: R1423 Rename template parameter T - // #TEST#: R1424 Rename template parameter U + // #TEST#: R1427 Rename template parameter T + // #TEST#: R1428 Rename template parameter U -template -+template - // #TEST#: R1427 Rename concept Multiplicable - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U ++template + // #TEST#: R1431 Rename concept Multiplicable + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable class Product3 { public: @@ -965,7 +965,7 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs diff --git a/results/diffs/R1433.txt b/results/diffs/R1433.txt index 703cca7..502e8bd 100644 --- a/results/diffs/R1433.txt +++ b/results/diffs/R1433.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ecdb59f 100644 +index 21c29d3..09c18d1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -965,11 +965,11 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs +@@ -950,12 +950,12 @@ union ProductUnion2 + // compound constraint on multiple template parameters, conjunction + // #TEST#: R1427 Rename template parameter T + // #TEST#: R1428 Rename template parameter U +-template ++template + // #TEST#: R1431 Rename concept Multiplicable + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + class Product3 + { + public: +@@ -965,7 +965,7 @@ public: + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs diff --git a/results/diffs/R1434.txt b/results/diffs/R1434.txt index dfcf504..91d3894 100644 --- a/results/diffs/R1434.txt +++ b/results/diffs/R1434.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..afdc4a7 100644 +index 21c29d3..e3104ac 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -965,11 +965,11 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs +@@ -950,12 +950,12 @@ union ProductUnion2 + // compound constraint on multiple template parameters, conjunction + // #TEST#: R1427 Rename template parameter T + // #TEST#: R1428 Rename template parameter U +-template ++template + // #TEST#: R1431 Rename concept Multiplicable + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + class Product3 + { + public: +@@ -965,7 +965,7 @@ public: + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs diff --git a/results/diffs/R1435.txt b/results/diffs/R1435.txt index 703cca7..c373005 100644 --- a/results/diffs/R1435.txt +++ b/results/diffs/R1435.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ecdb59f 100644 +index 21c29d3..afdc4a7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -965,11 +965,11 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1436.txt b/results/diffs/R1436.txt index dfcf504..502e8bd 100644 --- a/results/diffs/R1436.txt +++ b/results/diffs/R1436.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..afdc4a7 100644 +index 21c29d3..09c18d1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -965,11 +965,11 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs +@@ -950,12 +950,12 @@ union ProductUnion2 + // compound constraint on multiple template parameters, conjunction + // #TEST#: R1427 Rename template parameter T + // #TEST#: R1428 Rename template parameter U +-template ++template + // #TEST#: R1431 Rename concept Multiplicable + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + class Product3 + { + public: +@@ -965,7 +965,7 @@ public: + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs diff --git a/results/diffs/R1437.txt b/results/diffs/R1437.txt index 703cca7..701d5ed 100644 --- a/results/diffs/R1437.txt +++ b/results/diffs/R1437.txt @@ -3,14 +3,14 @@ index 21c29d3..ecdb59f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -965,11 +965,11 @@ public: - // #TEST#: R1433 Rename parameter rhs - // #TEST#: R1434 Rename first use of lhs - // #TEST#: R1435 Rename first use of rhs + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1436 Rename lhs - // #TEST#: R1437 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1438.txt b/results/diffs/R1438.txt index 46cd6b2..c373005 100644 --- a/results/diffs/R1438.txt +++ b/results/diffs/R1438.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..016cebc 100644 +index 21c29d3..afdc4a7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -975,12 +975,12 @@ public: - - // #TEST#: R1438 Rename template parameter T - // #TEST#: R1439 Rename template parameter U --template -+template - // #TEST#: R1442 Rename concept Multiplicable - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -989,7 +989,7 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs +@@ -965,11 +965,11 @@ public: + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1439.txt b/results/diffs/R1439.txt index ccf736e..701d5ed 100644 --- a/results/diffs/R1439.txt +++ b/results/diffs/R1439.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..cdd17fe 100644 +index 21c29d3..ecdb59f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -975,12 +975,12 @@ public: - - // #TEST#: R1438 Rename template parameter T - // #TEST#: R1439 Rename template parameter U --template -+template - // #TEST#: R1442 Rename concept Multiplicable - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -989,7 +989,7 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs +@@ -965,11 +965,11 @@ public: + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1440.txt b/results/diffs/R1440.txt index 6cff3f1..c373005 100644 --- a/results/diffs/R1440.txt +++ b/results/diffs/R1440.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..5908de4 100644 +index 21c29d3..afdc4a7 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -996,12 +996,12 @@ public: - // #TEST#: R1438 Rename template parameter T - // #TEST#: R1439 Rename template parameter U - // #TEST#: R1440 Rename use of T --template -+template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1442 Rename concept Multiplicable - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1010,7 +1010,7 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs +@@ -965,11 +965,11 @@ public: + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1441.txt b/results/diffs/R1441.txt index 46cd6b2..701d5ed 100644 --- a/results/diffs/R1441.txt +++ b/results/diffs/R1441.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..016cebc 100644 +index 21c29d3..ecdb59f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -975,12 +975,12 @@ public: - - // #TEST#: R1438 Rename template parameter T - // #TEST#: R1439 Rename template parameter U --template -+template - // #TEST#: R1442 Rename concept Multiplicable - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -989,7 +989,7 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs +@@ -965,11 +965,11 @@ public: + // #TEST#: R1437 Rename parameter rhs + // #TEST#: R1438 Rename first use of lhs + // #TEST#: R1439 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1440 Rename lhs + // #TEST#: R1441 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1442.txt b/results/diffs/R1442.txt index 1ad368e..ff54793 100644 --- a/results/diffs/R1442.txt +++ b/results/diffs/R1442.txt @@ -1,194 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..016cebc 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U +@@ -975,12 +975,12 @@ public: + + // #TEST#: R1442 Rename template parameter T + // #TEST#: R1443 Rename template parameter U +-template ++template + // #TEST#: R1446 Rename concept Multiplicable + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink ++ requires std::is_arithmetic_v && Multiplicable struct ProductStruct3 { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T + // #TEST#: R1449 Rename use of T +@@ -989,7 +989,7 @@ struct ProductStruct3 + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) + { + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs diff --git a/results/diffs/R1443.txt b/results/diffs/R1443.txt index 46cd6b2..4e607ad 100644 --- a/results/diffs/R1443.txt +++ b/results/diffs/R1443.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..016cebc 100644 +index 21c29d3..cdd17fe 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -975,12 +975,12 @@ public: - // #TEST#: R1438 Rename template parameter T - // #TEST#: R1439 Rename template parameter U + // #TEST#: R1442 Rename template parameter T + // #TEST#: R1443 Rename template parameter U -template -+template - // #TEST#: R1442 Rename concept Multiplicable - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U ++template + // #TEST#: R1446 Rename concept Multiplicable + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable struct ProductStruct3 { - // #TEST#: R1445 Rename use of T + // #TEST#: R1449 Rename use of T @@ -989,7 +989,7 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs diff --git a/results/diffs/R1444.txt b/results/diffs/R1444.txt index ccf736e..8663a4c 100644 --- a/results/diffs/R1444.txt +++ b/results/diffs/R1444.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..cdd17fe 100644 +index 977575b..5908de4 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -975,12 +975,12 @@ public: - - // #TEST#: R1438 Rename template parameter T - // #TEST#: R1439 Rename template parameter U +@@ -996,12 +996,12 @@ public: + // #TEST#: R1442 Rename template parameter T + // #TEST#: R1443 Rename template parameter U + // #TEST#: R1444 Rename use of T -template -+template - // #TEST#: R1442 Rename concept Multiplicable - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U ++template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1446 Rename concept Multiplicable + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable struct ProductStruct3 { - // #TEST#: R1445 Rename use of T -@@ -989,7 +989,7 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs + // #TEST#: R1449 Rename use of T +@@ -1010,7 +1010,7 @@ struct ProductStruct3 + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs diff --git a/results/diffs/R1445.txt b/results/diffs/R1445.txt index 46cd6b2..ff54793 100644 --- a/results/diffs/R1445.txt +++ b/results/diffs/R1445.txt @@ -4,26 +4,26 @@ index 21c29d3..016cebc 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -975,12 +975,12 @@ public: - // #TEST#: R1438 Rename template parameter T - // #TEST#: R1439 Rename template parameter U + // #TEST#: R1442 Rename template parameter T + // #TEST#: R1443 Rename template parameter U -template +template - // #TEST#: R1442 Rename concept Multiplicable - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U + // #TEST#: R1446 Rename concept Multiplicable + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U - requires std::is_arithmetic_v && Multiplicable + requires std::is_arithmetic_v && Multiplicable struct ProductStruct3 { - // #TEST#: R1445 Rename use of T + // #TEST#: R1449 Rename use of T @@ -989,7 +989,7 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs diff --git a/results/diffs/R1446.txt b/results/diffs/R1446.txt index 28727d9..88604f0 100644 --- a/results/diffs/R1446.txt +++ b/results/diffs/R1446.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e2262db 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -989,11 +989,11 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1447.txt b/results/diffs/R1447.txt index ccf736e..ff54793 100644 --- a/results/diffs/R1447.txt +++ b/results/diffs/R1447.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..cdd17fe 100644 +index 21c29d3..016cebc 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -975,12 +975,12 @@ public: - // #TEST#: R1438 Rename template parameter T - // #TEST#: R1439 Rename template parameter U + // #TEST#: R1442 Rename template parameter T + // #TEST#: R1443 Rename template parameter U -template -+template - // #TEST#: R1442 Rename concept Multiplicable - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U ++template + // #TEST#: R1446 Rename concept Multiplicable + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable struct ProductStruct3 { - // #TEST#: R1445 Rename use of T + // #TEST#: R1449 Rename use of T @@ -989,7 +989,7 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs diff --git a/results/diffs/R1448.txt b/results/diffs/R1448.txt index 3267572..4e607ad 100644 --- a/results/diffs/R1448.txt +++ b/results/diffs/R1448.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..6ba3784 100644 +index 21c29d3..cdd17fe 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -989,11 +989,11 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs +@@ -975,12 +975,12 @@ public: + + // #TEST#: R1442 Rename template parameter T + // #TEST#: R1443 Rename template parameter U +-template ++template + // #TEST#: R1446 Rename concept Multiplicable + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -989,7 +989,7 @@ struct ProductStruct3 + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs diff --git a/results/diffs/R1449.txt b/results/diffs/R1449.txt index 28727d9..ff54793 100644 --- a/results/diffs/R1449.txt +++ b/results/diffs/R1449.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e2262db 100644 +index 21c29d3..016cebc 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -989,11 +989,11 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs +@@ -975,12 +975,12 @@ public: + + // #TEST#: R1442 Rename template parameter T + // #TEST#: R1443 Rename template parameter U +-template ++template + // #TEST#: R1446 Rename concept Multiplicable + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -989,7 +989,7 @@ struct ProductStruct3 + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs diff --git a/results/diffs/R1450.txt b/results/diffs/R1450.txt index 3267572..c382df6 100644 --- a/results/diffs/R1450.txt +++ b/results/diffs/R1450.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..6ba3784 100644 +index 21c29d3..e2262db 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -989,11 +989,11 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1451.txt b/results/diffs/R1451.txt index 28727d9..4e607ad 100644 --- a/results/diffs/R1451.txt +++ b/results/diffs/R1451.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e2262db 100644 +index 21c29d3..cdd17fe 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -989,11 +989,11 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs +@@ -975,12 +975,12 @@ public: + + // #TEST#: R1442 Rename template parameter T + // #TEST#: R1443 Rename template parameter U +-template ++template + // #TEST#: R1446 Rename concept Multiplicable + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -989,7 +989,7 @@ struct ProductStruct3 + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs diff --git a/results/diffs/R1452.txt b/results/diffs/R1452.txt index 3267572..7798c23 100644 --- a/results/diffs/R1452.txt +++ b/results/diffs/R1452.txt @@ -3,14 +3,14 @@ index 21c29d3..6ba3784 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -989,11 +989,11 @@ struct ProductStruct3 - // #TEST#: R1448 Rename parameter rhs - // #TEST#: R1449 Rename first use of lhs - // #TEST#: R1450 Rename first use of rhs + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1451 Rename lhs - // #TEST#: R1452 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1453.txt b/results/diffs/R1453.txt index 0f64079..c382df6 100644 --- a/results/diffs/R1453.txt +++ b/results/diffs/R1453.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..b06406f 100644 +index 21c29d3..e2262db 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -999,12 +999,12 @@ struct ProductStruct3 - - // #TEST#: R1453 Rename template parameter T - // #TEST#: R1454 Rename template parameter U --template -+template - // #TEST#: R1457 Rename concept Multiplicable - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1013,7 +1013,7 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs +@@ -989,11 +989,11 @@ struct ProductStruct3 + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1454.txt b/results/diffs/R1454.txt index cbcf4a2..7798c23 100644 --- a/results/diffs/R1454.txt +++ b/results/diffs/R1454.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..0441ed8 100644 +index 21c29d3..6ba3784 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -999,12 +999,12 @@ struct ProductStruct3 - - // #TEST#: R1453 Rename template parameter T - // #TEST#: R1454 Rename template parameter U --template -+template - // #TEST#: R1457 Rename concept Multiplicable - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1013,7 +1013,7 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs +@@ -989,11 +989,11 @@ struct ProductStruct3 + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1455.txt b/results/diffs/R1455.txt index e29f1f3..c382df6 100644 --- a/results/diffs/R1455.txt +++ b/results/diffs/R1455.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..dd9f5f2 100644 +index 21c29d3..e2262db 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1021,12 +1021,12 @@ struct ProductStruct3 - // #TEST#: R1453 Rename template parameter T - // #TEST#: R1454 Rename template parameter U - // #TEST#: R1455 Rename use of T --template -+template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1457 Rename concept Multiplicable - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1035,7 +1035,7 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs +@@ -989,11 +989,11 @@ struct ProductStruct3 + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1456.txt b/results/diffs/R1456.txt index 0f64079..7798c23 100644 --- a/results/diffs/R1456.txt +++ b/results/diffs/R1456.txt @@ -1,29 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..b06406f 100644 +index 21c29d3..6ba3784 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -999,12 +999,12 @@ struct ProductStruct3 - - // #TEST#: R1453 Rename template parameter T - // #TEST#: R1454 Rename template parameter U --template -+template - // #TEST#: R1457 Rename concept Multiplicable - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1013,7 +1013,7 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs +@@ -989,11 +989,11 @@ struct ProductStruct3 + // #TEST#: R1452 Rename parameter rhs + // #TEST#: R1453 Rename first use of lhs + // #TEST#: R1454 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1455 Rename lhs + // #TEST#: R1456 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1457.txt b/results/diffs/R1457.txt index 1ad368e..657336c 100644 --- a/results/diffs/R1457.txt +++ b/results/diffs/R1457.txt @@ -1,194 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..b06406f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U +@@ -999,12 +999,12 @@ struct ProductStruct3 + + // #TEST#: R1457 Rename template parameter T + // #TEST#: R1458 Rename template parameter U +-template ++template + // #TEST#: R1461 Rename concept Multiplicable + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink ++ requires std::is_arithmetic_v && Multiplicable union ProductUnion3 { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T + // #TEST#: R1464 Rename use of T +@@ -1013,7 +1013,7 @@ union ProductUnion3 + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) + { + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs diff --git a/results/diffs/R1458.txt b/results/diffs/R1458.txt index 0f64079..7d0b4b1 100644 --- a/results/diffs/R1458.txt +++ b/results/diffs/R1458.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..b06406f 100644 +index 21c29d3..0441ed8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -999,12 +999,12 @@ struct ProductStruct3 - // #TEST#: R1453 Rename template parameter T - // #TEST#: R1454 Rename template parameter U + // #TEST#: R1457 Rename template parameter T + // #TEST#: R1458 Rename template parameter U -template -+template - // #TEST#: R1457 Rename concept Multiplicable - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U ++template + // #TEST#: R1461 Rename concept Multiplicable + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable union ProductUnion3 { - // #TEST#: R1460 Rename use of T + // #TEST#: R1464 Rename use of T @@ -1013,7 +1013,7 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs diff --git a/results/diffs/R1459.txt b/results/diffs/R1459.txt index cbcf4a2..c7d4b85 100644 --- a/results/diffs/R1459.txt +++ b/results/diffs/R1459.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..0441ed8 100644 +index 977575b..dd9f5f2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -999,12 +999,12 @@ struct ProductStruct3 - - // #TEST#: R1453 Rename template parameter T - // #TEST#: R1454 Rename template parameter U +@@ -1021,12 +1021,12 @@ struct ProductStruct3 + // #TEST#: R1457 Rename template parameter T + // #TEST#: R1458 Rename template parameter U + // #TEST#: R1459 Rename use of T -template -+template - // #TEST#: R1457 Rename concept Multiplicable - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U ++template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1461 Rename concept Multiplicable + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable union ProductUnion3 { - // #TEST#: R1460 Rename use of T -@@ -1013,7 +1013,7 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs + // #TEST#: R1464 Rename use of T +@@ -1035,7 +1035,7 @@ union ProductUnion3 + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs diff --git a/results/diffs/R1460.txt b/results/diffs/R1460.txt index 0f64079..657336c 100644 --- a/results/diffs/R1460.txt +++ b/results/diffs/R1460.txt @@ -4,26 +4,26 @@ index 21c29d3..b06406f 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -999,12 +999,12 @@ struct ProductStruct3 - // #TEST#: R1453 Rename template parameter T - // #TEST#: R1454 Rename template parameter U + // #TEST#: R1457 Rename template parameter T + // #TEST#: R1458 Rename template parameter U -template +template - // #TEST#: R1457 Rename concept Multiplicable - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U + // #TEST#: R1461 Rename concept Multiplicable + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U - requires std::is_arithmetic_v && Multiplicable + requires std::is_arithmetic_v && Multiplicable union ProductUnion3 { - // #TEST#: R1460 Rename use of T + // #TEST#: R1464 Rename use of T @@ -1013,7 +1013,7 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs diff --git a/results/diffs/R1461.txt b/results/diffs/R1461.txt index cca4cb9..88604f0 100644 --- a/results/diffs/R1461.txt +++ b/results/diffs/R1461.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..1a7a489 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1013,11 +1013,11 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1462.txt b/results/diffs/R1462.txt index cbcf4a2..657336c 100644 --- a/results/diffs/R1462.txt +++ b/results/diffs/R1462.txt @@ -1,29 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..0441ed8 100644 +index 21c29d3..b06406f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -999,12 +999,12 @@ struct ProductStruct3 - // #TEST#: R1453 Rename template parameter T - // #TEST#: R1454 Rename template parameter U + // #TEST#: R1457 Rename template parameter T + // #TEST#: R1458 Rename template parameter U -template -+template - // #TEST#: R1457 Rename concept Multiplicable - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U ++template + // #TEST#: R1461 Rename concept Multiplicable + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U - requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable union ProductUnion3 { - // #TEST#: R1460 Rename use of T + // #TEST#: R1464 Rename use of T @@ -1013,7 +1013,7 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs diff --git a/results/diffs/R1463.txt b/results/diffs/R1463.txt index 1f98fd1..7d0b4b1 100644 --- a/results/diffs/R1463.txt +++ b/results/diffs/R1463.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..635b078 100644 +index 21c29d3..0441ed8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1013,11 +1013,11 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs +@@ -999,12 +999,12 @@ struct ProductStruct3 + + // #TEST#: R1457 Rename template parameter T + // #TEST#: R1458 Rename template parameter U +-template ++template + // #TEST#: R1461 Rename concept Multiplicable + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1013,7 +1013,7 @@ union ProductUnion3 + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs diff --git a/results/diffs/R1464.txt b/results/diffs/R1464.txt index cca4cb9..657336c 100644 --- a/results/diffs/R1464.txt +++ b/results/diffs/R1464.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..1a7a489 100644 +index 21c29d3..b06406f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1013,11 +1013,11 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs +@@ -999,12 +999,12 @@ struct ProductStruct3 + + // #TEST#: R1457 Rename template parameter T + // #TEST#: R1458 Rename template parameter U +-template ++template + // #TEST#: R1461 Rename concept Multiplicable + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1013,7 +1013,7 @@ union ProductUnion3 + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs diff --git a/results/diffs/R1465.txt b/results/diffs/R1465.txt index 1f98fd1..d310f7c 100644 --- a/results/diffs/R1465.txt +++ b/results/diffs/R1465.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..635b078 100644 +index 21c29d3..1a7a489 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1013,11 +1013,11 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1466.txt b/results/diffs/R1466.txt index cca4cb9..7d0b4b1 100644 --- a/results/diffs/R1466.txt +++ b/results/diffs/R1466.txt @@ -1,19 +1,29 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..1a7a489 100644 +index 21c29d3..0441ed8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1013,11 +1013,11 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs +@@ -999,12 +999,12 @@ struct ProductStruct3 + + // #TEST#: R1457 Rename template parameter T + // #TEST#: R1458 Rename template parameter U +-template ++template + // #TEST#: R1461 Rename concept Multiplicable + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Multiplicable + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1013,7 +1013,7 @@ union ProductUnion3 + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs diff --git a/results/diffs/R1467.txt b/results/diffs/R1467.txt index 1f98fd1..b47f5cd 100644 --- a/results/diffs/R1467.txt +++ b/results/diffs/R1467.txt @@ -3,14 +3,14 @@ index 21c29d3..635b078 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1013,11 +1013,11 @@ union ProductUnion3 - // #TEST#: R1463 Rename parameter rhs - // #TEST#: R1464 Rename first use of lhs - // #TEST#: R1465 Rename first use of rhs + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1466 Rename lhs - // #TEST#: R1467 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1468.txt b/results/diffs/R1468.txt index 2d457e9..d310f7c 100644 --- a/results/diffs/R1468.txt +++ b/results/diffs/R1468.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..4d480f2 100644 +index 21c29d3..1a7a489 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1024,13 +1024,13 @@ union ProductUnion3 - // compound constraint on multiple template parameters, combination - // #TEST#: R1468 Rename template parameter T - // #TEST#: R1469 Rename template parameter U --template -+template - // #TEST#: R1473 Rename concept Multiplicable - // #TEST#: R1471 Rename first use of T - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - class Product4 - { - public: -@@ -1040,7 +1040,7 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs +@@ -1013,11 +1013,11 @@ union ProductUnion3 + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1469.txt b/results/diffs/R1469.txt index 234e5e0..b47f5cd 100644 --- a/results/diffs/R1469.txt +++ b/results/diffs/R1469.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ae38ea1 100644 +index 21c29d3..635b078 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1024,13 +1024,13 @@ union ProductUnion3 - // compound constraint on multiple template parameters, combination - // #TEST#: R1468 Rename template parameter T - // #TEST#: R1469 Rename template parameter U --template -+template - // #TEST#: R1473 Rename concept Multiplicable - // #TEST#: R1471 Rename first use of T - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - class Product4 - { - public: -@@ -1040,7 +1040,7 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs +@@ -1013,11 +1013,11 @@ union ProductUnion3 + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1470.txt b/results/diffs/R1470.txt index e6d768a..d310f7c 100644 --- a/results/diffs/R1470.txt +++ b/results/diffs/R1470.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..1cfe6bd 100644 +index 21c29d3..1a7a489 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1047,13 +1047,13 @@ union ProductUnion3 - // #TEST#: R1468 Rename template parameter T - // #TEST#: R1469 Rename template parameter U - // #TEST#: R1470 Rename use of T --template -+template - // #TEST#: R1471 Rename first use of T - // #TEST#: R1472 Rename second use of T - // #TEST#: R1473 Rename concept Multiplicable - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - class Product4 - { - public: -@@ -1063,7 +1063,7 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs +@@ -1013,11 +1013,11 @@ union ProductUnion3 + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1471.txt b/results/diffs/R1471.txt index 2d457e9..b47f5cd 100644 --- a/results/diffs/R1471.txt +++ b/results/diffs/R1471.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..4d480f2 100644 +index 21c29d3..635b078 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1024,13 +1024,13 @@ union ProductUnion3 - // compound constraint on multiple template parameters, combination - // #TEST#: R1468 Rename template parameter T - // #TEST#: R1469 Rename template parameter U --template -+template - // #TEST#: R1473 Rename concept Multiplicable - // #TEST#: R1471 Rename first use of T - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - class Product4 - { - public: -@@ -1040,7 +1040,7 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs +@@ -1013,11 +1013,11 @@ union ProductUnion3 + // #TEST#: R1467 Rename parameter rhs + // #TEST#: R1468 Rename first use of lhs + // #TEST#: R1469 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1470 Rename lhs + // #TEST#: R1471 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1472.txt b/results/diffs/R1472.txt index 2d457e9..275534e 100644 --- a/results/diffs/R1472.txt +++ b/results/diffs/R1472.txt @@ -4,27 +4,27 @@ index 21c29d3..4d480f2 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1024,13 +1024,13 @@ union ProductUnion3 // compound constraint on multiple template parameters, combination - // #TEST#: R1468 Rename template parameter T - // #TEST#: R1469 Rename template parameter U + // #TEST#: R1472 Rename template parameter T + // #TEST#: R1473 Rename template parameter U -template +template - // #TEST#: R1473 Rename concept Multiplicable - // #TEST#: R1471 Rename first use of T - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U + // #TEST#: R1477 Rename concept Multiplicable + // #TEST#: R1475 Rename first use of T + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable class Product4 { public: @@ -1040,7 +1040,7 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs diff --git a/results/diffs/R1473.txt b/results/diffs/R1473.txt index 1ad368e..f4fefcc 100644 --- a/results/diffs/R1473.txt +++ b/results/diffs/R1473.txt @@ -1,194 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..ae38ea1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U +@@ -1024,13 +1024,13 @@ union ProductUnion3 + // compound constraint on multiple template parameters, combination + // #TEST#: R1472 Rename template parameter T + // #TEST#: R1473 Rename template parameter U +-template ++template + // #TEST#: R1477 Rename concept Multiplicable + // #TEST#: R1475 Rename first use of T + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable class Product4 { public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -1040,7 +1040,7 @@ public: + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) + { + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs diff --git a/results/diffs/R1474.txt b/results/diffs/R1474.txt index 2d457e9..b766a53 100644 --- a/results/diffs/R1474.txt +++ b/results/diffs/R1474.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..4d480f2 100644 +index 977575b..1cfe6bd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1024,13 +1024,13 @@ union ProductUnion3 - // compound constraint on multiple template parameters, combination - // #TEST#: R1468 Rename template parameter T - // #TEST#: R1469 Rename template parameter U +@@ -1047,13 +1047,13 @@ union ProductUnion3 + // #TEST#: R1472 Rename template parameter T + // #TEST#: R1473 Rename template parameter U + // #TEST#: R1474 Rename use of T -template +template - // #TEST#: R1473 Rename concept Multiplicable - // #TEST#: R1471 Rename first use of T - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U + // #TEST#: R1475 Rename first use of T + // #TEST#: R1476 Rename second use of T + // #TEST#: R1477 Rename concept Multiplicable + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable class Product4 { public: -@@ -1040,7 +1040,7 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs +@@ -1063,7 +1063,7 @@ public: + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs diff --git a/results/diffs/R1475.txt b/results/diffs/R1475.txt index 234e5e0..275534e 100644 --- a/results/diffs/R1475.txt +++ b/results/diffs/R1475.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ae38ea1 100644 +index 21c29d3..4d480f2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1024,13 +1024,13 @@ union ProductUnion3 // compound constraint on multiple template parameters, combination - // #TEST#: R1468 Rename template parameter T - // #TEST#: R1469 Rename template parameter U + // #TEST#: R1472 Rename template parameter T + // #TEST#: R1473 Rename template parameter U -template -+template - // #TEST#: R1473 Rename concept Multiplicable - // #TEST#: R1471 Rename first use of T - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U ++template + // #TEST#: R1477 Rename concept Multiplicable + // #TEST#: R1475 Rename first use of T + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable class Product4 { public: @@ -1040,7 +1040,7 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs diff --git a/results/diffs/R1476.txt b/results/diffs/R1476.txt index 2d457e9..275534e 100644 --- a/results/diffs/R1476.txt +++ b/results/diffs/R1476.txt @@ -4,27 +4,27 @@ index 21c29d3..4d480f2 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1024,13 +1024,13 @@ union ProductUnion3 // compound constraint on multiple template parameters, combination - // #TEST#: R1468 Rename template parameter T - // #TEST#: R1469 Rename template parameter U + // #TEST#: R1472 Rename template parameter T + // #TEST#: R1473 Rename template parameter U -template +template - // #TEST#: R1473 Rename concept Multiplicable - // #TEST#: R1471 Rename first use of T - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U + // #TEST#: R1477 Rename concept Multiplicable + // #TEST#: R1475 Rename first use of T + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable class Product4 { public: @@ -1040,7 +1040,7 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs diff --git a/results/diffs/R1477.txt b/results/diffs/R1477.txt index b357102..88604f0 100644 --- a/results/diffs/R1477.txt +++ b/results/diffs/R1477.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e53940e 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1040,11 +1040,11 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1478.txt b/results/diffs/R1478.txt index 234e5e0..275534e 100644 --- a/results/diffs/R1478.txt +++ b/results/diffs/R1478.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..ae38ea1 100644 +index 21c29d3..4d480f2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1024,13 +1024,13 @@ union ProductUnion3 // compound constraint on multiple template parameters, combination - // #TEST#: R1468 Rename template parameter T - // #TEST#: R1469 Rename template parameter U + // #TEST#: R1472 Rename template parameter T + // #TEST#: R1473 Rename template parameter U -template -+template - // #TEST#: R1473 Rename concept Multiplicable - // #TEST#: R1471 Rename first use of T - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U ++template + // #TEST#: R1477 Rename concept Multiplicable + // #TEST#: R1475 Rename first use of T + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable class Product4 { public: @@ -1040,7 +1040,7 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs diff --git a/results/diffs/R1479.txt b/results/diffs/R1479.txt index 3de1a4f..f4fefcc 100644 --- a/results/diffs/R1479.txt +++ b/results/diffs/R1479.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a8a033e 100644 +index 21c29d3..ae38ea1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1040,11 +1040,11 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs +@@ -1024,13 +1024,13 @@ union ProductUnion3 + // compound constraint on multiple template parameters, combination + // #TEST#: R1472 Rename template parameter T + // #TEST#: R1473 Rename template parameter U +-template ++template + // #TEST#: R1477 Rename concept Multiplicable + // #TEST#: R1475 Rename first use of T + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + class Product4 + { + public: +@@ -1040,7 +1040,7 @@ public: + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs diff --git a/results/diffs/R1480.txt b/results/diffs/R1480.txt index b357102..275534e 100644 --- a/results/diffs/R1480.txt +++ b/results/diffs/R1480.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e53940e 100644 +index 21c29d3..4d480f2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1040,11 +1040,11 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs +@@ -1024,13 +1024,13 @@ union ProductUnion3 + // compound constraint on multiple template parameters, combination + // #TEST#: R1472 Rename template parameter T + // #TEST#: R1473 Rename template parameter U +-template ++template + // #TEST#: R1477 Rename concept Multiplicable + // #TEST#: R1475 Rename first use of T + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + class Product4 + { + public: +@@ -1040,7 +1040,7 @@ public: + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs diff --git a/results/diffs/R1481.txt b/results/diffs/R1481.txt index 3de1a4f..3955319 100644 --- a/results/diffs/R1481.txt +++ b/results/diffs/R1481.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a8a033e 100644 +index 21c29d3..e53940e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1040,11 +1040,11 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1482.txt b/results/diffs/R1482.txt index b357102..f4fefcc 100644 --- a/results/diffs/R1482.txt +++ b/results/diffs/R1482.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e53940e 100644 +index 21c29d3..ae38ea1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1040,11 +1040,11 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs +@@ -1024,13 +1024,13 @@ union ProductUnion3 + // compound constraint on multiple template parameters, combination + // #TEST#: R1472 Rename template parameter T + // #TEST#: R1473 Rename template parameter U +-template ++template + // #TEST#: R1477 Rename concept Multiplicable + // #TEST#: R1475 Rename first use of T + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + class Product4 + { + public: +@@ -1040,7 +1040,7 @@ public: + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs diff --git a/results/diffs/R1483.txt b/results/diffs/R1483.txt index 3de1a4f..7e628fe 100644 --- a/results/diffs/R1483.txt +++ b/results/diffs/R1483.txt @@ -3,14 +3,14 @@ index 21c29d3..a8a033e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1040,11 +1040,11 @@ public: - // #TEST#: R1479 Rename parameter rhs - // #TEST#: R1480 Rename first use of lhs - // #TEST#: R1481 Rename first use of rhs + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1482 Rename lhs - // #TEST#: R1483 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1484.txt b/results/diffs/R1484.txt index 4c1e9b0..3955319 100644 --- a/results/diffs/R1484.txt +++ b/results/diffs/R1484.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e502001 100644 +index 21c29d3..e53940e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1050,13 +1050,13 @@ public: - - // #TEST#: R1484 Rename template parameter T - // #TEST#: R1485 Rename template parameter U --template -+template - // #TEST#: R1489 Rename concept Multiplicable - // #TEST#: R1487 Rename first use of T - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1065,7 +1065,7 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs +@@ -1040,11 +1040,11 @@ public: + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1485.txt b/results/diffs/R1485.txt index c780ecd..7e628fe 100644 --- a/results/diffs/R1485.txt +++ b/results/diffs/R1485.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..dc3d6bb 100644 +index 21c29d3..a8a033e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1050,13 +1050,13 @@ public: - - // #TEST#: R1484 Rename template parameter T - // #TEST#: R1485 Rename template parameter U --template -+template - // #TEST#: R1489 Rename concept Multiplicable - // #TEST#: R1487 Rename first use of T - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1065,7 +1065,7 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs +@@ -1040,11 +1040,11 @@ public: + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1486.txt b/results/diffs/R1486.txt index 1cc5286..3955319 100644 --- a/results/diffs/R1486.txt +++ b/results/diffs/R1486.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..837e65b 100644 +index 21c29d3..e53940e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1074,13 +1074,13 @@ public: - // #TEST#: R1484 Rename template parameter T - // #TEST#: R1485 Rename template parameter U - // #TEST#: R1486 Rename use of T --template -+template - // #TEST#: R1487 Rename first use of T - // #TEST#: R1488 Rename second use of T - // #TEST#: R1489 Rename concept Multiplicable - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1089,7 +1089,7 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs +@@ -1040,11 +1040,11 @@ public: + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1487.txt b/results/diffs/R1487.txt index 4c1e9b0..7e628fe 100644 --- a/results/diffs/R1487.txt +++ b/results/diffs/R1487.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e502001 100644 +index 21c29d3..a8a033e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1050,13 +1050,13 @@ public: - - // #TEST#: R1484 Rename template parameter T - // #TEST#: R1485 Rename template parameter U --template -+template - // #TEST#: R1489 Rename concept Multiplicable - // #TEST#: R1487 Rename first use of T - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1065,7 +1065,7 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs +@@ -1040,11 +1040,11 @@ public: + // #TEST#: R1483 Rename parameter rhs + // #TEST#: R1484 Rename first use of lhs + // #TEST#: R1485 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1486 Rename lhs + // #TEST#: R1487 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1488.txt b/results/diffs/R1488.txt index 4c1e9b0..6ae173a 100644 --- a/results/diffs/R1488.txt +++ b/results/diffs/R1488.txt @@ -4,27 +4,27 @@ index 21c29d3..e502001 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1050,13 +1050,13 @@ public: - // #TEST#: R1484 Rename template parameter T - // #TEST#: R1485 Rename template parameter U + // #TEST#: R1488 Rename template parameter T + // #TEST#: R1489 Rename template parameter U -template +template - // #TEST#: R1489 Rename concept Multiplicable - // #TEST#: R1487 Rename first use of T - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U + // #TEST#: R1493 Rename concept Multiplicable + // #TEST#: R1491 Rename first use of T + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable struct ProductStruct4 { - // #TEST#: R1492 Rename use of T + // #TEST#: R1496 Rename use of T @@ -1065,7 +1065,7 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs diff --git a/results/diffs/R1489.txt b/results/diffs/R1489.txt index 1ad368e..ead1889 100644 --- a/results/diffs/R1489.txt +++ b/results/diffs/R1489.txt @@ -1,194 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..dc3d6bb 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U +@@ -1050,13 +1050,13 @@ public: + + // #TEST#: R1488 Rename template parameter T + // #TEST#: R1489 Rename template parameter U +-template ++template + // #TEST#: R1493 Rename concept Multiplicable + // #TEST#: R1491 Rename first use of T + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable struct ProductStruct4 { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T + // #TEST#: R1496 Rename use of T +@@ -1065,7 +1065,7 @@ struct ProductStruct4 + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) + { + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs diff --git a/results/diffs/R1490.txt b/results/diffs/R1490.txt index 4c1e9b0..f355340 100644 --- a/results/diffs/R1490.txt +++ b/results/diffs/R1490.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..e502001 100644 +index 977575b..837e65b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1050,13 +1050,13 @@ public: - - // #TEST#: R1484 Rename template parameter T - // #TEST#: R1485 Rename template parameter U +@@ -1074,13 +1074,13 @@ public: + // #TEST#: R1488 Rename template parameter T + // #TEST#: R1489 Rename template parameter U + // #TEST#: R1490 Rename use of T -template +template - // #TEST#: R1489 Rename concept Multiplicable - // #TEST#: R1487 Rename first use of T - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U + // #TEST#: R1491 Rename first use of T + // #TEST#: R1492 Rename second use of T + // #TEST#: R1493 Rename concept Multiplicable + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable struct ProductStruct4 { - // #TEST#: R1492 Rename use of T -@@ -1065,7 +1065,7 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs + // #TEST#: R1496 Rename use of T +@@ -1089,7 +1089,7 @@ struct ProductStruct4 + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs diff --git a/results/diffs/R1491.txt b/results/diffs/R1491.txt index c780ecd..6ae173a 100644 --- a/results/diffs/R1491.txt +++ b/results/diffs/R1491.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..dc3d6bb 100644 +index 21c29d3..e502001 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1050,13 +1050,13 @@ public: - // #TEST#: R1484 Rename template parameter T - // #TEST#: R1485 Rename template parameter U + // #TEST#: R1488 Rename template parameter T + // #TEST#: R1489 Rename template parameter U -template -+template - // #TEST#: R1489 Rename concept Multiplicable - // #TEST#: R1487 Rename first use of T - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U ++template + // #TEST#: R1493 Rename concept Multiplicable + // #TEST#: R1491 Rename first use of T + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable struct ProductStruct4 { - // #TEST#: R1492 Rename use of T + // #TEST#: R1496 Rename use of T @@ -1065,7 +1065,7 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs diff --git a/results/diffs/R1492.txt b/results/diffs/R1492.txt index 4c1e9b0..6ae173a 100644 --- a/results/diffs/R1492.txt +++ b/results/diffs/R1492.txt @@ -4,27 +4,27 @@ index 21c29d3..e502001 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1050,13 +1050,13 @@ public: - // #TEST#: R1484 Rename template parameter T - // #TEST#: R1485 Rename template parameter U + // #TEST#: R1488 Rename template parameter T + // #TEST#: R1489 Rename template parameter U -template +template - // #TEST#: R1489 Rename concept Multiplicable - // #TEST#: R1487 Rename first use of T - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U + // #TEST#: R1493 Rename concept Multiplicable + // #TEST#: R1491 Rename first use of T + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable struct ProductStruct4 { - // #TEST#: R1492 Rename use of T + // #TEST#: R1496 Rename use of T @@ -1065,7 +1065,7 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs diff --git a/results/diffs/R1493.txt b/results/diffs/R1493.txt index a5e81c7..88604f0 100644 --- a/results/diffs/R1493.txt +++ b/results/diffs/R1493.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..fd54a0f 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1065,11 +1065,11 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1494.txt b/results/diffs/R1494.txt index c780ecd..6ae173a 100644 --- a/results/diffs/R1494.txt +++ b/results/diffs/R1494.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..dc3d6bb 100644 +index 21c29d3..e502001 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1050,13 +1050,13 @@ public: - // #TEST#: R1484 Rename template parameter T - // #TEST#: R1485 Rename template parameter U + // #TEST#: R1488 Rename template parameter T + // #TEST#: R1489 Rename template parameter U -template -+template - // #TEST#: R1489 Rename concept Multiplicable - // #TEST#: R1487 Rename first use of T - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U ++template + // #TEST#: R1493 Rename concept Multiplicable + // #TEST#: R1491 Rename first use of T + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable struct ProductStruct4 { - // #TEST#: R1492 Rename use of T + // #TEST#: R1496 Rename use of T @@ -1065,7 +1065,7 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs diff --git a/results/diffs/R1495.txt b/results/diffs/R1495.txt index 9e8ec89..ead1889 100644 --- a/results/diffs/R1495.txt +++ b/results/diffs/R1495.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..274dfd2 100644 +index 21c29d3..dc3d6bb 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1065,11 +1065,11 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs +@@ -1050,13 +1050,13 @@ public: + + // #TEST#: R1488 Rename template parameter T + // #TEST#: R1489 Rename template parameter U +-template ++template + // #TEST#: R1493 Rename concept Multiplicable + // #TEST#: R1491 Rename first use of T + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1065,7 +1065,7 @@ struct ProductStruct4 + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs diff --git a/results/diffs/R1496.txt b/results/diffs/R1496.txt index a5e81c7..6ae173a 100644 --- a/results/diffs/R1496.txt +++ b/results/diffs/R1496.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..fd54a0f 100644 +index 21c29d3..e502001 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1065,11 +1065,11 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs +@@ -1050,13 +1050,13 @@ public: + + // #TEST#: R1488 Rename template parameter T + // #TEST#: R1489 Rename template parameter U +-template ++template + // #TEST#: R1493 Rename concept Multiplicable + // #TEST#: R1491 Rename first use of T + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1065,7 +1065,7 @@ struct ProductStruct4 + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs diff --git a/results/diffs/R1497.txt b/results/diffs/R1497.txt index 9e8ec89..b11df57 100644 --- a/results/diffs/R1497.txt +++ b/results/diffs/R1497.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..274dfd2 100644 +index 21c29d3..fd54a0f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1065,11 +1065,11 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1498.txt b/results/diffs/R1498.txt index a5e81c7..ead1889 100644 --- a/results/diffs/R1498.txt +++ b/results/diffs/R1498.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..fd54a0f 100644 +index 21c29d3..dc3d6bb 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1065,11 +1065,11 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs +@@ -1050,13 +1050,13 @@ public: + + // #TEST#: R1488 Rename template parameter T + // #TEST#: R1489 Rename template parameter U +-template ++template + // #TEST#: R1493 Rename concept Multiplicable + // #TEST#: R1491 Rename first use of T + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1065,7 +1065,7 @@ struct ProductStruct4 + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs diff --git a/results/diffs/R1499.txt b/results/diffs/R1499.txt index 9e8ec89..f8875cf 100644 --- a/results/diffs/R1499.txt +++ b/results/diffs/R1499.txt @@ -3,14 +3,14 @@ index 21c29d3..274dfd2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1065,11 +1065,11 @@ struct ProductStruct4 - // #TEST#: R1495 Rename parameter rhs - // #TEST#: R1496 Rename first use of lhs - // #TEST#: R1497 Rename first use of rhs + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1498 Rename lhs - // #TEST#: R1499 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1500.txt b/results/diffs/R1500.txt index 4d6c314..b11df57 100644 --- a/results/diffs/R1500.txt +++ b/results/diffs/R1500.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..8b2c218 100644 +index 21c29d3..fd54a0f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1075,13 +1075,13 @@ struct ProductStruct4 - - // #TEST#: R1500 Rename template parameter T - // #TEST#: R1501 Rename template parameter U --template -+template - // #TEST#: R1505 Rename concept Multiplicable - // #TEST#: R1503 Rename first use of T - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T -@@ -1090,7 +1090,7 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs +@@ -1065,11 +1065,11 @@ struct ProductStruct4 + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1501.txt b/results/diffs/R1501.txt index 7527261..f8875cf 100644 --- a/results/diffs/R1501.txt +++ b/results/diffs/R1501.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..3ab9a60 100644 +index 21c29d3..274dfd2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1075,13 +1075,13 @@ struct ProductStruct4 - - // #TEST#: R1500 Rename template parameter T - // #TEST#: R1501 Rename template parameter U --template -+template - // #TEST#: R1505 Rename concept Multiplicable - // #TEST#: R1503 Rename first use of T - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T -@@ -1090,7 +1090,7 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs +@@ -1065,11 +1065,11 @@ struct ProductStruct4 + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1502.txt b/results/diffs/R1502.txt index ead4726..b11df57 100644 --- a/results/diffs/R1502.txt +++ b/results/diffs/R1502.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..9bc4ac6 100644 +index 21c29d3..fd54a0f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1100,13 +1100,13 @@ struct ProductStruct4 - // #TEST#: R1500 Rename template parameter T - // #TEST#: R1501 Rename template parameter U - // #TEST#: R1502 Rename use of T --template -+template - // #TEST#: R1503 Rename first use of T - // #TEST#: R1504 Rename second use of T - // #TEST#: R1505 Rename concept Multiplicable - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T -@@ -1115,7 +1115,7 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs +@@ -1065,11 +1065,11 @@ struct ProductStruct4 + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs +- return lhs * rhs; ++ return goink * rhs; + } + }; + diff --git a/results/diffs/R1503.txt b/results/diffs/R1503.txt index 4d6c314..f8875cf 100644 --- a/results/diffs/R1503.txt +++ b/results/diffs/R1503.txt @@ -1,30 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..8b2c218 100644 +index 21c29d3..274dfd2 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1075,13 +1075,13 @@ struct ProductStruct4 - - // #TEST#: R1500 Rename template parameter T - // #TEST#: R1501 Rename template parameter U --template -+template - // #TEST#: R1505 Rename concept Multiplicable - // #TEST#: R1503 Rename first use of T - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T -@@ -1090,7 +1090,7 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs +@@ -1065,11 +1065,11 @@ struct ProductStruct4 + // #TEST#: R1499 Rename parameter rhs + // #TEST#: R1500 Rename first use of lhs + // #TEST#: R1501 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1502 Rename lhs + // #TEST#: R1503 Rename rhs +- return lhs * rhs; ++ return lhs * goink; + } + }; + diff --git a/results/diffs/R1504.txt b/results/diffs/R1504.txt index 4d6c314..cc57404 100644 --- a/results/diffs/R1504.txt +++ b/results/diffs/R1504.txt @@ -4,27 +4,27 @@ index 21c29d3..8b2c218 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1075,13 +1075,13 @@ struct ProductStruct4 - // #TEST#: R1500 Rename template parameter T - // #TEST#: R1501 Rename template parameter U + // #TEST#: R1504 Rename template parameter T + // #TEST#: R1505 Rename template parameter U -template +template - // #TEST#: R1505 Rename concept Multiplicable - // #TEST#: R1503 Rename first use of T - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U + // #TEST#: R1509 Rename concept Multiplicable + // #TEST#: R1507 Rename first use of T + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable union ProductUnion4 { - // #TEST#: R1508 Rename use of T + // #TEST#: R1512 Rename use of T @@ -1090,7 +1090,7 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs diff --git a/results/diffs/R1505.txt b/results/diffs/R1505.txt index 1ad368e..451ddea 100644 --- a/results/diffs/R1505.txt +++ b/results/diffs/R1505.txt @@ -1,194 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a17d989 100644 +index 21c29d3..3ab9a60 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U +@@ -1075,13 +1075,13 @@ struct ProductStruct4 + + // #TEST#: R1504 Rename template parameter T + // #TEST#: R1505 Rename template parameter U +-template ++template + // #TEST#: R1509 Rename concept Multiplicable + // #TEST#: R1507 Rename first use of T + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable union ProductUnion4 { - // #TEST#: R1508 Rename use of T + // #TEST#: R1512 Rename use of T +@@ -1090,7 +1090,7 @@ union ProductUnion4 + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) + { + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs diff --git a/results/diffs/R1506.txt b/results/diffs/R1506.txt index 4d6c314..ef16cf4 100644 --- a/results/diffs/R1506.txt +++ b/results/diffs/R1506.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..8b2c218 100644 +index 977575b..9bc4ac6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1075,13 +1075,13 @@ struct ProductStruct4 - - // #TEST#: R1500 Rename template parameter T - // #TEST#: R1501 Rename template parameter U +@@ -1100,13 +1100,13 @@ struct ProductStruct4 + // #TEST#: R1504 Rename template parameter T + // #TEST#: R1505 Rename template parameter U + // #TEST#: R1506 Rename use of T -template +template - // #TEST#: R1505 Rename concept Multiplicable - // #TEST#: R1503 Rename first use of T - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U + // #TEST#: R1507 Rename first use of T + // #TEST#: R1508 Rename second use of T + // #TEST#: R1509 Rename concept Multiplicable + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable union ProductUnion4 { - // #TEST#: R1508 Rename use of T -@@ -1090,7 +1090,7 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs + // #TEST#: R1512 Rename use of T +@@ -1115,7 +1115,7 @@ union ProductUnion4 + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs diff --git a/results/diffs/R1507.txt b/results/diffs/R1507.txt index 7527261..cc57404 100644 --- a/results/diffs/R1507.txt +++ b/results/diffs/R1507.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..3ab9a60 100644 +index 21c29d3..8b2c218 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1075,13 +1075,13 @@ struct ProductStruct4 - // #TEST#: R1500 Rename template parameter T - // #TEST#: R1501 Rename template parameter U + // #TEST#: R1504 Rename template parameter T + // #TEST#: R1505 Rename template parameter U -template -+template - // #TEST#: R1505 Rename concept Multiplicable - // #TEST#: R1503 Rename first use of T - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U ++template + // #TEST#: R1509 Rename concept Multiplicable + // #TEST#: R1507 Rename first use of T + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable union ProductUnion4 { - // #TEST#: R1508 Rename use of T + // #TEST#: R1512 Rename use of T @@ -1090,7 +1090,7 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs diff --git a/results/diffs/R1508.txt b/results/diffs/R1508.txt index 4d6c314..cc57404 100644 --- a/results/diffs/R1508.txt +++ b/results/diffs/R1508.txt @@ -4,27 +4,27 @@ index 21c29d3..8b2c218 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1075,13 +1075,13 @@ struct ProductStruct4 - // #TEST#: R1500 Rename template parameter T - // #TEST#: R1501 Rename template parameter U + // #TEST#: R1504 Rename template parameter T + // #TEST#: R1505 Rename template parameter U -template +template - // #TEST#: R1505 Rename concept Multiplicable - // #TEST#: R1503 Rename first use of T - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U + // #TEST#: R1509 Rename concept Multiplicable + // #TEST#: R1507 Rename first use of T + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable union ProductUnion4 { - // #TEST#: R1508 Rename use of T + // #TEST#: R1512 Rename use of T @@ -1090,7 +1090,7 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs diff --git a/results/diffs/R1509.txt b/results/diffs/R1509.txt index c5d51bd..88604f0 100644 --- a/results/diffs/R1509.txt +++ b/results/diffs/R1509.txt @@ -1,19 +1,194 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..8406bb4 100644 +index 21c29d3..a17d989 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1090,11 +1090,11 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs -- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) - { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs +-concept Multiplicable = requires(T lhs, U rhs) ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/diffs/R1510.txt b/results/diffs/R1510.txt index 7527261..cc57404 100644 --- a/results/diffs/R1510.txt +++ b/results/diffs/R1510.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..3ab9a60 100644 +index 21c29d3..8b2c218 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1075,13 +1075,13 @@ struct ProductStruct4 - // #TEST#: R1500 Rename template parameter T - // #TEST#: R1501 Rename template parameter U + // #TEST#: R1504 Rename template parameter T + // #TEST#: R1505 Rename template parameter U -template -+template - // #TEST#: R1505 Rename concept Multiplicable - // #TEST#: R1503 Rename first use of T - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U ++template + // #TEST#: R1509 Rename concept Multiplicable + // #TEST#: R1507 Rename first use of T + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable union ProductUnion4 { - // #TEST#: R1508 Rename use of T + // #TEST#: R1512 Rename use of T @@ -1090,7 +1090,7 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs diff --git a/results/diffs/R1511.txt b/results/diffs/R1511.txt index b08f287..451ddea 100644 --- a/results/diffs/R1511.txt +++ b/results/diffs/R1511.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..b85c02c 100644 +index 21c29d3..3ab9a60 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1090,11 +1090,11 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs +@@ -1075,13 +1075,13 @@ struct ProductStruct4 + + // #TEST#: R1504 Rename template parameter T + // #TEST#: R1505 Rename template parameter U +-template ++template + // #TEST#: R1509 Rename concept Multiplicable + // #TEST#: R1507 Rename first use of T + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T +@@ -1090,7 +1090,7 @@ union ProductUnion4 + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs -- return lhs * rhs; -+ return lhs * goink; - } - }; - + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs diff --git a/results/diffs/R1512.txt b/results/diffs/R1512.txt index c5d51bd..cc57404 100644 --- a/results/diffs/R1512.txt +++ b/results/diffs/R1512.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..8406bb4 100644 +index 21c29d3..8b2c218 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1090,11 +1090,11 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs +@@ -1075,13 +1075,13 @@ struct ProductStruct4 + + // #TEST#: R1504 Rename template parameter T + // #TEST#: R1505 Rename template parameter U +-template ++template + // #TEST#: R1509 Rename concept Multiplicable + // #TEST#: R1507 Rename first use of T + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T +@@ -1090,7 +1090,7 @@ union ProductUnion4 + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(Goink lhs, U rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs diff --git a/results/diffs/R1513.txt b/results/diffs/R1513.txt index b08f287..456dccc 100644 --- a/results/diffs/R1513.txt +++ b/results/diffs/R1513.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..b85c02c 100644 +index 21c29d3..8406bb4 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1090,11 +1090,11 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs - return lhs * rhs; -+ return lhs * goink; ++ return goink * rhs; } }; diff --git a/results/diffs/R1514.txt b/results/diffs/R1514.txt index c5d51bd..451ddea 100644 --- a/results/diffs/R1514.txt +++ b/results/diffs/R1514.txt @@ -1,19 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..8406bb4 100644 +index 21c29d3..3ab9a60 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1090,11 +1090,11 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs +@@ -1075,13 +1075,13 @@ struct ProductStruct4 + + // #TEST#: R1504 Rename template parameter T + // #TEST#: R1505 Rename template parameter U +-template ++template + // #TEST#: R1509 Rename concept Multiplicable + // #TEST#: R1507 Rename first use of T + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T +@@ -1090,7 +1090,7 @@ union ProductUnion4 + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) -+ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) ++ auto operator()(T lhs, Goink rhs) const -> decltype(lhs * rhs) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs -- return lhs * rhs; -+ return goink * rhs; - } - }; - + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs diff --git a/results/diffs/R1515.txt b/results/diffs/R1515.txt index b08f287..8310f32 100644 --- a/results/diffs/R1515.txt +++ b/results/diffs/R1515.txt @@ -3,14 +3,14 @@ index 21c29d3..b85c02c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -1090,11 +1090,11 @@ union ProductUnion4 - // #TEST#: R1511 Rename parameter rhs - // #TEST#: R1512 Rename first use of lhs - // #TEST#: R1513 Rename first use of rhs + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs - auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) + auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1514 Rename lhs - // #TEST#: R1515 Rename rhs + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs - return lhs * rhs; + return lhs * goink; } diff --git a/results/diffs/R1516.txt b/results/diffs/R1516.txt index 90b299c..456dccc 100644 --- a/results/diffs/R1516.txt +++ b/results/diffs/R1516.txt @@ -1,32 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..0a36433 100644 +index 21c29d3..8406bb4 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -609,7 +609,7 @@ template - // #TEST#: R1254 Rename use of T - requires Squareable - // #TEST#: R1255 Rename class Sqr1 --class Sqr1 -+class Goink - { - public: - // #TEST#: R1256 Rename first use of T -@@ -1117,14 +1117,14 @@ void f2() - // single constraint on single template parameter +@@ -1090,11 +1090,11 @@ union ProductUnion4 + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1516 Rename Sqr1 -- Sqr1 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1517 Rename Sqr1 -- Sqr1 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1518 Rename Sqr1 -- Sqr1 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs +- return lhs * rhs; ++ return goink * rhs; } + }; + diff --git a/results/diffs/R1517.txt b/results/diffs/R1517.txt index 90b299c..8310f32 100644 --- a/results/diffs/R1517.txt +++ b/results/diffs/R1517.txt @@ -1,32 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..0a36433 100644 +index 21c29d3..b85c02c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -609,7 +609,7 @@ template - // #TEST#: R1254 Rename use of T - requires Squareable - // #TEST#: R1255 Rename class Sqr1 --class Sqr1 -+class Goink - { - public: - // #TEST#: R1256 Rename first use of T -@@ -1117,14 +1117,14 @@ void f2() - // single constraint on single template parameter +@@ -1090,11 +1090,11 @@ union ProductUnion4 + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1516 Rename Sqr1 -- Sqr1 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1517 Rename Sqr1 -- Sqr1 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1518 Rename Sqr1 -- Sqr1 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs +- return lhs * rhs; ++ return lhs * goink; } + }; + diff --git a/results/diffs/R1518.txt b/results/diffs/R1518.txt index 90b299c..456dccc 100644 --- a/results/diffs/R1518.txt +++ b/results/diffs/R1518.txt @@ -1,32 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..0a36433 100644 +index 21c29d3..8406bb4 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -609,7 +609,7 @@ template - // #TEST#: R1254 Rename use of T - requires Squareable - // #TEST#: R1255 Rename class Sqr1 --class Sqr1 -+class Goink - { - public: - // #TEST#: R1256 Rename first use of T -@@ -1117,14 +1117,14 @@ void f2() - // single constraint on single template parameter +@@ -1090,11 +1090,11 @@ union ProductUnion4 + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T goink, U rhs) const -> decltype(goink * rhs) { - // #TEST#: R1516 Rename Sqr1 -- Sqr1 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1517 Rename Sqr1 -- Sqr1 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1518 Rename Sqr1 -- Sqr1 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs +- return lhs * rhs; ++ return goink * rhs; } + }; + diff --git a/results/diffs/R1519.txt b/results/diffs/R1519.txt index b919d1d..8310f32 100644 --- a/results/diffs/R1519.txt +++ b/results/diffs/R1519.txt @@ -1,32 +1,19 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a7f7c57 100644 +index 21c29d3..b85c02c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -626,7 +626,7 @@ template - // #TEST#: R1260 Rename use of T - requires Squareable - // #TEST#: R1261 Rename class SqrStruct1 --struct SqrStruct1 -+struct Goink - { - // #TEST#: R1262 Rename first use of T - // #TEST#: R1263 Rename second of T -@@ -1130,14 +1130,14 @@ void f2() - } +@@ -1090,11 +1090,11 @@ union ProductUnion4 + // #TEST#: R1515 Rename parameter rhs + // #TEST#: R1516 Rename first use of lhs + // #TEST#: R1517 Rename first use of rhs +- auto operator()(T lhs, U rhs) const -> decltype(lhs * rhs) ++ auto operator()(T lhs, U goink) const -> decltype(lhs * goink) { - // #TEST#: R1519 Rename SqrStruct1 -- SqrStruct1 s1; -+ Goink s1; - REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1520 Rename SqrStruct1 -- SqrStruct1 s2; -+ Goink s2; - const double d = s2(2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1521 Rename SqrStruct1 -- SqrStruct1 s3; -+ Goink s3; - const Rope r = s3(Rope{"square"}); - REQUIRE_EQUAL(Rope{"square square"}, r); + // #TEST#: R1518 Rename lhs + // #TEST#: R1519 Rename rhs +- return lhs * rhs; ++ return lhs * goink; } + }; + diff --git a/results/diffs/R1520.txt b/results/diffs/R1520.txt index b919d1d..1d3c6da 100644 --- a/results/diffs/R1520.txt +++ b/results/diffs/R1520.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a7f7c57 100644 +index 21c29d3..0a36433 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -626,7 +626,7 @@ template - // #TEST#: R1260 Rename use of T +@@ -609,7 +609,7 @@ template + // #TEST#: R1258 Rename use of T requires Squareable - // #TEST#: R1261 Rename class SqrStruct1 --struct SqrStruct1 -+struct Goink + // #TEST#: R1259 Rename class Sqr1 +-class Sqr1 ++class Goink { - // #TEST#: R1262 Rename first use of T - // #TEST#: R1263 Rename second of T -@@ -1130,14 +1130,14 @@ void f2() - } + public: + // #TEST#: R1260 Rename first use of T +@@ -1117,14 +1117,14 @@ void f2() + // single constraint on single template parameter { - // #TEST#: R1519 Rename SqrStruct1 -- SqrStruct1 s1; + // #TEST#: R1520 Rename Sqr1 +- Sqr1 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1520 Rename SqrStruct1 -- SqrStruct1 s2; + // #TEST#: R1521 Rename Sqr1 +- Sqr1 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1521 Rename SqrStruct1 -- SqrStruct1 s3; + // #TEST#: R1522 Rename Sqr1 +- Sqr1 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1521.txt b/results/diffs/R1521.txt index b919d1d..1d3c6da 100644 --- a/results/diffs/R1521.txt +++ b/results/diffs/R1521.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a7f7c57 100644 +index 21c29d3..0a36433 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -626,7 +626,7 @@ template - // #TEST#: R1260 Rename use of T +@@ -609,7 +609,7 @@ template + // #TEST#: R1258 Rename use of T requires Squareable - // #TEST#: R1261 Rename class SqrStruct1 --struct SqrStruct1 -+struct Goink + // #TEST#: R1259 Rename class Sqr1 +-class Sqr1 ++class Goink { - // #TEST#: R1262 Rename first use of T - // #TEST#: R1263 Rename second of T -@@ -1130,14 +1130,14 @@ void f2() - } + public: + // #TEST#: R1260 Rename first use of T +@@ -1117,14 +1117,14 @@ void f2() + // single constraint on single template parameter { - // #TEST#: R1519 Rename SqrStruct1 -- SqrStruct1 s1; + // #TEST#: R1520 Rename Sqr1 +- Sqr1 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1520 Rename SqrStruct1 -- SqrStruct1 s2; + // #TEST#: R1521 Rename Sqr1 +- Sqr1 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1521 Rename SqrStruct1 -- SqrStruct1 s3; + // #TEST#: R1522 Rename Sqr1 +- Sqr1 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1522.txt b/results/diffs/R1522.txt index d5e439f..1d3c6da 100644 --- a/results/diffs/R1522.txt +++ b/results/diffs/R1522.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..d5effc6 100644 +index 21c29d3..0a36433 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -642,7 +642,7 @@ template - // #TEST#: R1266 Rename use of T +@@ -609,7 +609,7 @@ template + // #TEST#: R1258 Rename use of T requires Squareable - // #TEST#: R1267 Rename class SqrUnion1 --union SqrUnion1 -+union Goink + // #TEST#: R1259 Rename class Sqr1 +-class Sqr1 ++class Goink { - // #TEST#: R1268 Rename first use of T - // #TEST#: R1269 Rename second of T -@@ -1143,14 +1143,14 @@ void f2() - } + public: + // #TEST#: R1260 Rename first use of T +@@ -1117,14 +1117,14 @@ void f2() + // single constraint on single template parameter { - // #TEST#: R1522 Rename SqrUnion1 -- SqrUnion1 s1; + // #TEST#: R1520 Rename Sqr1 +- Sqr1 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1523 Rename SqrUnion1 -- SqrUnion1 s2; + // #TEST#: R1521 Rename Sqr1 +- Sqr1 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1524 Rename SqrUnion1 -- SqrUnion1 s3; + // #TEST#: R1522 Rename Sqr1 +- Sqr1 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1523.txt b/results/diffs/R1523.txt index d5e439f..49baf11 100644 --- a/results/diffs/R1523.txt +++ b/results/diffs/R1523.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..d5effc6 100644 +index 21c29d3..a7f7c57 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -642,7 +642,7 @@ template - // #TEST#: R1266 Rename use of T +@@ -626,7 +626,7 @@ template + // #TEST#: R1264 Rename use of T requires Squareable - // #TEST#: R1267 Rename class SqrUnion1 --union SqrUnion1 -+union Goink + // #TEST#: R1265 Rename class SqrStruct1 +-struct SqrStruct1 ++struct Goink { - // #TEST#: R1268 Rename first use of T - // #TEST#: R1269 Rename second of T -@@ -1143,14 +1143,14 @@ void f2() + // #TEST#: R1266 Rename first use of T + // #TEST#: R1267 Rename second of T +@@ -1130,14 +1130,14 @@ void f2() } { - // #TEST#: R1522 Rename SqrUnion1 -- SqrUnion1 s1; + // #TEST#: R1523 Rename SqrStruct1 +- SqrStruct1 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1523 Rename SqrUnion1 -- SqrUnion1 s2; + // #TEST#: R1524 Rename SqrStruct1 +- SqrStruct1 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1524 Rename SqrUnion1 -- SqrUnion1 s3; + // #TEST#: R1525 Rename SqrStruct1 +- SqrStruct1 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1524.txt b/results/diffs/R1524.txt index d5e439f..49baf11 100644 --- a/results/diffs/R1524.txt +++ b/results/diffs/R1524.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..d5effc6 100644 +index 21c29d3..a7f7c57 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -642,7 +642,7 @@ template - // #TEST#: R1266 Rename use of T +@@ -626,7 +626,7 @@ template + // #TEST#: R1264 Rename use of T requires Squareable - // #TEST#: R1267 Rename class SqrUnion1 --union SqrUnion1 -+union Goink + // #TEST#: R1265 Rename class SqrStruct1 +-struct SqrStruct1 ++struct Goink { - // #TEST#: R1268 Rename first use of T - // #TEST#: R1269 Rename second of T -@@ -1143,14 +1143,14 @@ void f2() + // #TEST#: R1266 Rename first use of T + // #TEST#: R1267 Rename second of T +@@ -1130,14 +1130,14 @@ void f2() } { - // #TEST#: R1522 Rename SqrUnion1 -- SqrUnion1 s1; + // #TEST#: R1523 Rename SqrStruct1 +- SqrStruct1 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1523 Rename SqrUnion1 -- SqrUnion1 s2; + // #TEST#: R1524 Rename SqrStruct1 +- SqrStruct1 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1524 Rename SqrUnion1 -- SqrUnion1 s3; + // #TEST#: R1525 Rename SqrStruct1 +- SqrStruct1 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1525.txt b/results/diffs/R1525.txt index f88fa29..49baf11 100644 --- a/results/diffs/R1525.txt +++ b/results/diffs/R1525.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..f243e3b 100644 +index 21c29d3..a7f7c57 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -659,7 +659,7 @@ template - // #TEST#: R1273 Rename use of T - requires std::is_arithmetic_v || Squareable - // #TEST#: R1274 Rename class Sqr2 --class Sqr2 -+class Goink +@@ -626,7 +626,7 @@ template + // #TEST#: R1264 Rename use of T + requires Squareable + // #TEST#: R1265 Rename class SqrStruct1 +-struct SqrStruct1 ++struct Goink { - public: - // #TEST#: R1275 Rename first use of T -@@ -1158,14 +1158,14 @@ void f2() - // compound constraint on single template parameter, disjunction + // #TEST#: R1266 Rename first use of T + // #TEST#: R1267 Rename second of T +@@ -1130,14 +1130,14 @@ void f2() + } { - // #TEST#: R1525 Rename Sqr2 -- Sqr2 s1; + // #TEST#: R1523 Rename SqrStruct1 +- SqrStruct1 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1526 Rename Sqr2 -- Sqr2 s2; + // #TEST#: R1524 Rename SqrStruct1 +- SqrStruct1 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1527 Rename Sqr2 -- Sqr2 s3; + // #TEST#: R1525 Rename SqrStruct1 +- SqrStruct1 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1526.txt b/results/diffs/R1526.txt index f88fa29..5dd2dab 100644 --- a/results/diffs/R1526.txt +++ b/results/diffs/R1526.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..f243e3b 100644 +index 21c29d3..d5effc6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -659,7 +659,7 @@ template - // #TEST#: R1273 Rename use of T - requires std::is_arithmetic_v || Squareable - // #TEST#: R1274 Rename class Sqr2 --class Sqr2 -+class Goink +@@ -642,7 +642,7 @@ template + // #TEST#: R1270 Rename use of T + requires Squareable + // #TEST#: R1271 Rename class SqrUnion1 +-union SqrUnion1 ++union Goink { - public: - // #TEST#: R1275 Rename first use of T -@@ -1158,14 +1158,14 @@ void f2() - // compound constraint on single template parameter, disjunction + // #TEST#: R1272 Rename first use of T + // #TEST#: R1273 Rename second of T +@@ -1143,14 +1143,14 @@ void f2() + } { - // #TEST#: R1525 Rename Sqr2 -- Sqr2 s1; + // #TEST#: R1526 Rename SqrUnion1 +- SqrUnion1 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1526 Rename Sqr2 -- Sqr2 s2; + // #TEST#: R1527 Rename SqrUnion1 +- SqrUnion1 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1527 Rename Sqr2 -- Sqr2 s3; + // #TEST#: R1528 Rename SqrUnion1 +- SqrUnion1 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1527.txt b/results/diffs/R1527.txt index f88fa29..5dd2dab 100644 --- a/results/diffs/R1527.txt +++ b/results/diffs/R1527.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..f243e3b 100644 +index 21c29d3..d5effc6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -659,7 +659,7 @@ template - // #TEST#: R1273 Rename use of T - requires std::is_arithmetic_v || Squareable - // #TEST#: R1274 Rename class Sqr2 --class Sqr2 -+class Goink +@@ -642,7 +642,7 @@ template + // #TEST#: R1270 Rename use of T + requires Squareable + // #TEST#: R1271 Rename class SqrUnion1 +-union SqrUnion1 ++union Goink { - public: - // #TEST#: R1275 Rename first use of T -@@ -1158,14 +1158,14 @@ void f2() - // compound constraint on single template parameter, disjunction + // #TEST#: R1272 Rename first use of T + // #TEST#: R1273 Rename second of T +@@ -1143,14 +1143,14 @@ void f2() + } { - // #TEST#: R1525 Rename Sqr2 -- Sqr2 s1; + // #TEST#: R1526 Rename SqrUnion1 +- SqrUnion1 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1526 Rename Sqr2 -- Sqr2 s2; + // #TEST#: R1527 Rename SqrUnion1 +- SqrUnion1 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1527 Rename Sqr2 -- Sqr2 s3; + // #TEST#: R1528 Rename SqrUnion1 +- SqrUnion1 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1528.txt b/results/diffs/R1528.txt index 9e8072b..5dd2dab 100644 --- a/results/diffs/R1528.txt +++ b/results/diffs/R1528.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..d0ea606 100644 +index 21c29d3..d5effc6 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -676,7 +676,7 @@ template - // #TEST#: R1280 Rename use of T - requires std::is_arithmetic_v || Squareable - // #TEST#: R1281 Rename class SqrStruct2 --struct SqrStruct2 -+struct Goink +@@ -642,7 +642,7 @@ template + // #TEST#: R1270 Rename use of T + requires Squareable + // #TEST#: R1271 Rename class SqrUnion1 +-union SqrUnion1 ++union Goink { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T -@@ -1171,14 +1171,14 @@ void f2() + // #TEST#: R1272 Rename first use of T + // #TEST#: R1273 Rename second of T +@@ -1143,14 +1143,14 @@ void f2() } { - // #TEST#: R1528 Rename SqrStruct2 -- SqrStruct2 s1; + // #TEST#: R1526 Rename SqrUnion1 +- SqrUnion1 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1529 Rename SqrStruct2 -- SqrStruct2 s2; + // #TEST#: R1527 Rename SqrUnion1 +- SqrUnion1 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1530 Rename SqrStruct2 -- SqrStruct2 s3; + // #TEST#: R1528 Rename SqrUnion1 +- SqrUnion1 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1529.txt b/results/diffs/R1529.txt index 9e8072b..9144f3c 100644 --- a/results/diffs/R1529.txt +++ b/results/diffs/R1529.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..d0ea606 100644 +index 21c29d3..f243e3b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -676,7 +676,7 @@ template - // #TEST#: R1280 Rename use of T +@@ -659,7 +659,7 @@ template + // #TEST#: R1277 Rename use of T requires std::is_arithmetic_v || Squareable - // #TEST#: R1281 Rename class SqrStruct2 --struct SqrStruct2 -+struct Goink + // #TEST#: R1278 Rename class Sqr2 +-class Sqr2 ++class Goink { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T -@@ -1171,14 +1171,14 @@ void f2() - } + public: + // #TEST#: R1279 Rename first use of T +@@ -1158,14 +1158,14 @@ void f2() + // compound constraint on single template parameter, disjunction { - // #TEST#: R1528 Rename SqrStruct2 -- SqrStruct2 s1; + // #TEST#: R1529 Rename Sqr2 +- Sqr2 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1529 Rename SqrStruct2 -- SqrStruct2 s2; + // #TEST#: R1530 Rename Sqr2 +- Sqr2 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1530 Rename SqrStruct2 -- SqrStruct2 s3; + // #TEST#: R1531 Rename Sqr2 +- Sqr2 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1530.txt b/results/diffs/R1530.txt index 9e8072b..9144f3c 100644 --- a/results/diffs/R1530.txt +++ b/results/diffs/R1530.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..d0ea606 100644 +index 21c29d3..f243e3b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -676,7 +676,7 @@ template - // #TEST#: R1280 Rename use of T +@@ -659,7 +659,7 @@ template + // #TEST#: R1277 Rename use of T requires std::is_arithmetic_v || Squareable - // #TEST#: R1281 Rename class SqrStruct2 --struct SqrStruct2 -+struct Goink + // #TEST#: R1278 Rename class Sqr2 +-class Sqr2 ++class Goink { - // #TEST#: R1282 Rename first use of T - // #TEST#: R1283 Rename second of T -@@ -1171,14 +1171,14 @@ void f2() - } + public: + // #TEST#: R1279 Rename first use of T +@@ -1158,14 +1158,14 @@ void f2() + // compound constraint on single template parameter, disjunction { - // #TEST#: R1528 Rename SqrStruct2 -- SqrStruct2 s1; + // #TEST#: R1529 Rename Sqr2 +- Sqr2 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1529 Rename SqrStruct2 -- SqrStruct2 s2; + // #TEST#: R1530 Rename Sqr2 +- Sqr2 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1530 Rename SqrStruct2 -- SqrStruct2 s3; + // #TEST#: R1531 Rename Sqr2 +- Sqr2 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1531.txt b/results/diffs/R1531.txt index e6ebd76..9144f3c 100644 --- a/results/diffs/R1531.txt +++ b/results/diffs/R1531.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..08de536 100644 +index 21c29d3..f243e3b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -692,7 +692,7 @@ template - // #TEST#: R1287 Rename use of T +@@ -659,7 +659,7 @@ template + // #TEST#: R1277 Rename use of T requires std::is_arithmetic_v || Squareable - // #TEST#: R1288 Rename class SqrUnion2 --union SqrUnion2 -+union Goink + // #TEST#: R1278 Rename class Sqr2 +-class Sqr2 ++class Goink { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T -@@ -1184,14 +1184,14 @@ void f2() - } + public: + // #TEST#: R1279 Rename first use of T +@@ -1158,14 +1158,14 @@ void f2() + // compound constraint on single template parameter, disjunction { - // #TEST#: R1531 Rename SqrUnion2 -- SqrUnion2 s1; + // #TEST#: R1529 Rename Sqr2 +- Sqr2 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1532 Rename SqrUnion2 -- SqrUnion2 s2; + // #TEST#: R1530 Rename Sqr2 +- Sqr2 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1533 Rename SqrUnion2 -- SqrUnion2 s3; + // #TEST#: R1531 Rename Sqr2 +- Sqr2 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1532.txt b/results/diffs/R1532.txt index e6ebd76..06536bb 100644 --- a/results/diffs/R1532.txt +++ b/results/diffs/R1532.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..08de536 100644 +index 21c29d3..d0ea606 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -692,7 +692,7 @@ template - // #TEST#: R1287 Rename use of T +@@ -676,7 +676,7 @@ template + // #TEST#: R1284 Rename use of T requires std::is_arithmetic_v || Squareable - // #TEST#: R1288 Rename class SqrUnion2 --union SqrUnion2 -+union Goink + // #TEST#: R1285 Rename class SqrStruct2 +-struct SqrStruct2 ++struct Goink { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T -@@ -1184,14 +1184,14 @@ void f2() + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T +@@ -1171,14 +1171,14 @@ void f2() } { - // #TEST#: R1531 Rename SqrUnion2 -- SqrUnion2 s1; + // #TEST#: R1532 Rename SqrStruct2 +- SqrStruct2 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1532 Rename SqrUnion2 -- SqrUnion2 s2; + // #TEST#: R1533 Rename SqrStruct2 +- SqrStruct2 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1533 Rename SqrUnion2 -- SqrUnion2 s3; + // #TEST#: R1534 Rename SqrStruct2 +- SqrStruct2 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1533.txt b/results/diffs/R1533.txt index e6ebd76..06536bb 100644 --- a/results/diffs/R1533.txt +++ b/results/diffs/R1533.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..08de536 100644 +index 21c29d3..d0ea606 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -692,7 +692,7 @@ template - // #TEST#: R1287 Rename use of T +@@ -676,7 +676,7 @@ template + // #TEST#: R1284 Rename use of T requires std::is_arithmetic_v || Squareable - // #TEST#: R1288 Rename class SqrUnion2 --union SqrUnion2 -+union Goink + // #TEST#: R1285 Rename class SqrStruct2 +-struct SqrStruct2 ++struct Goink { - // #TEST#: R1289 Rename first use of T - // #TEST#: R1290 Rename second of T -@@ -1184,14 +1184,14 @@ void f2() + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T +@@ -1171,14 +1171,14 @@ void f2() } { - // #TEST#: R1531 Rename SqrUnion2 -- SqrUnion2 s1; + // #TEST#: R1532 Rename SqrStruct2 +- SqrStruct2 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1532 Rename SqrUnion2 -- SqrUnion2 s2; + // #TEST#: R1533 Rename SqrStruct2 +- SqrStruct2 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1533 Rename SqrUnion2 -- SqrUnion2 s3; + // #TEST#: R1534 Rename SqrStruct2 +- SqrStruct2 s3; + Goink s3; const Rope r = s3(Rope{"square"}); REQUIRE_EQUAL(Rope{"square square"}, r); diff --git a/results/diffs/R1534.txt b/results/diffs/R1534.txt index c8b05b6..06536bb 100644 --- a/results/diffs/R1534.txt +++ b/results/diffs/R1534.txt @@ -1,27 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..831dd05 100644 +index 21c29d3..d0ea606 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -709,7 +709,7 @@ template - // #TEST#: R1294 Rename use of T - requires std::is_arithmetic_v && Squareable - // #TEST#: R1295 Rename class Sqr3 --class Sqr3 -+class Goink +@@ -676,7 +676,7 @@ template + // #TEST#: R1284 Rename use of T + requires std::is_arithmetic_v || Squareable + // #TEST#: R1285 Rename class SqrStruct2 +-struct SqrStruct2 ++struct Goink { - public: - // #TEST#: R1296 Rename first use of T -@@ -1199,10 +1199,10 @@ void f2() - // compound constraint on single template parameter, conjunction + // #TEST#: R1286 Rename first use of T + // #TEST#: R1287 Rename second of T +@@ -1171,14 +1171,14 @@ void f2() + } { - // #TEST#: R1534 Rename Sqr3 -- Sqr3 s1; + // #TEST#: R1532 Rename SqrStruct2 +- SqrStruct2 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1535 Rename Sqr3 -- Sqr3 s2; + // #TEST#: R1533 Rename SqrStruct2 +- SqrStruct2 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1534 Rename SqrStruct2 +- SqrStruct2 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } diff --git a/results/diffs/R1535.txt b/results/diffs/R1535.txt index c8b05b6..a121757 100644 --- a/results/diffs/R1535.txt +++ b/results/diffs/R1535.txt @@ -1,27 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..831dd05 100644 +index 21c29d3..08de536 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -709,7 +709,7 @@ template - // #TEST#: R1294 Rename use of T - requires std::is_arithmetic_v && Squareable - // #TEST#: R1295 Rename class Sqr3 --class Sqr3 -+class Goink +@@ -692,7 +692,7 @@ template + // #TEST#: R1291 Rename use of T + requires std::is_arithmetic_v || Squareable + // #TEST#: R1292 Rename class SqrUnion2 +-union SqrUnion2 ++union Goink { - public: - // #TEST#: R1296 Rename first use of T -@@ -1199,10 +1199,10 @@ void f2() - // compound constraint on single template parameter, conjunction + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T +@@ -1184,14 +1184,14 @@ void f2() + } { - // #TEST#: R1534 Rename Sqr3 -- Sqr3 s1; + // #TEST#: R1535 Rename SqrUnion2 +- SqrUnion2 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1535 Rename Sqr3 -- Sqr3 s2; + // #TEST#: R1536 Rename SqrUnion2 +- SqrUnion2 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1537 Rename SqrUnion2 +- SqrUnion2 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } diff --git a/results/diffs/R1536.txt b/results/diffs/R1536.txt index c4a2ba7..a121757 100644 --- a/results/diffs/R1536.txt +++ b/results/diffs/R1536.txt @@ -1,27 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a2d548f 100644 +index 21c29d3..08de536 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -726,7 +726,7 @@ template - // #TEST#: R1301 Rename use of T - requires std::is_arithmetic_v && Squareable - // #TEST#: R1302 Rename class SqrStruct3 --struct SqrStruct3 -+struct Goink +@@ -692,7 +692,7 @@ template + // #TEST#: R1291 Rename use of T + requires std::is_arithmetic_v || Squareable + // #TEST#: R1292 Rename class SqrUnion2 +-union SqrUnion2 ++union Goink { - // #TEST#: R1303 Rename first use of T - // #TEST#: R1304 Rename second of T -@@ -1209,10 +1209,10 @@ void f2() + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T +@@ -1184,14 +1184,14 @@ void f2() } { - // #TEST#: R1536 Rename SqrStruct3 -- SqrStruct3 s1; + // #TEST#: R1535 Rename SqrUnion2 +- SqrUnion2 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1537 Rename SqrStruct3 -- SqrStruct3 s2; + // #TEST#: R1536 Rename SqrUnion2 +- SqrUnion2 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1537 Rename SqrUnion2 +- SqrUnion2 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } diff --git a/results/diffs/R1537.txt b/results/diffs/R1537.txt index c4a2ba7..a121757 100644 --- a/results/diffs/R1537.txt +++ b/results/diffs/R1537.txt @@ -1,27 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..a2d548f 100644 +index 21c29d3..08de536 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -726,7 +726,7 @@ template - // #TEST#: R1301 Rename use of T - requires std::is_arithmetic_v && Squareable - // #TEST#: R1302 Rename class SqrStruct3 --struct SqrStruct3 -+struct Goink +@@ -692,7 +692,7 @@ template + // #TEST#: R1291 Rename use of T + requires std::is_arithmetic_v || Squareable + // #TEST#: R1292 Rename class SqrUnion2 +-union SqrUnion2 ++union Goink { - // #TEST#: R1303 Rename first use of T - // #TEST#: R1304 Rename second of T -@@ -1209,10 +1209,10 @@ void f2() + // #TEST#: R1293 Rename first use of T + // #TEST#: R1294 Rename second of T +@@ -1184,14 +1184,14 @@ void f2() } { - // #TEST#: R1536 Rename SqrStruct3 -- SqrStruct3 s1; + // #TEST#: R1535 Rename SqrUnion2 +- SqrUnion2 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1537 Rename SqrStruct3 -- SqrStruct3 s2; + // #TEST#: R1536 Rename SqrUnion2 +- SqrUnion2 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1537 Rename SqrUnion2 +- SqrUnion2 s3; ++ Goink s3; + const Rope r = s3(Rope{"square"}); + REQUIRE_EQUAL(Rope{"square square"}, r); + } diff --git a/results/diffs/R1538.txt b/results/diffs/R1538.txt index 01aa9bf..a65dfd5 100644 --- a/results/diffs/R1538.txt +++ b/results/diffs/R1538.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..c2bd647 100644 +index 21c29d3..831dd05 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -742,7 +742,7 @@ template - // #TEST#: R1308 Rename use of T +@@ -709,7 +709,7 @@ template + // #TEST#: R1298 Rename use of T requires std::is_arithmetic_v && Squareable - // #TEST#: R1309 Rename class SqrUnion3 --union SqrUnion3 -+union Goink + // #TEST#: R1299 Rename class Sqr3 +-class Sqr3 ++class Goink { - // #TEST#: R1310 Rename first use of T - // #TEST#: R1311 Rename second of T -@@ -1219,10 +1219,10 @@ void f2() - } + public: + // #TEST#: R1300 Rename first use of T +@@ -1199,10 +1199,10 @@ void f2() + // compound constraint on single template parameter, conjunction { - // #TEST#: R1538 Rename SqrUnion3 -- SqrUnion3 s1; + // #TEST#: R1538 Rename Sqr3 +- Sqr3 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1539 Rename SqrUnion3 -- SqrUnion3 s2; + // #TEST#: R1539 Rename Sqr3 +- Sqr3 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1539.txt b/results/diffs/R1539.txt index 01aa9bf..a65dfd5 100644 --- a/results/diffs/R1539.txt +++ b/results/diffs/R1539.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..c2bd647 100644 +index 21c29d3..831dd05 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -742,7 +742,7 @@ template - // #TEST#: R1308 Rename use of T +@@ -709,7 +709,7 @@ template + // #TEST#: R1298 Rename use of T requires std::is_arithmetic_v && Squareable - // #TEST#: R1309 Rename class SqrUnion3 --union SqrUnion3 -+union Goink + // #TEST#: R1299 Rename class Sqr3 +-class Sqr3 ++class Goink { - // #TEST#: R1310 Rename first use of T - // #TEST#: R1311 Rename second of T -@@ -1219,10 +1219,10 @@ void f2() - } + public: + // #TEST#: R1300 Rename first use of T +@@ -1199,10 +1199,10 @@ void f2() + // compound constraint on single template parameter, conjunction { - // #TEST#: R1538 Rename SqrUnion3 -- SqrUnion3 s1; + // #TEST#: R1538 Rename Sqr3 +- Sqr3 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1539 Rename SqrUnion3 -- SqrUnion3 s2; + // #TEST#: R1539 Rename Sqr3 +- Sqr3 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1540.txt b/results/diffs/R1540.txt index 7645cae..a18212c 100644 --- a/results/diffs/R1540.txt +++ b/results/diffs/R1540.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..3ca2b16 100644 +index 21c29d3..a2d548f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -759,7 +759,7 @@ template - // #TEST#: R1316 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1317 Rename class Sqr4 --class Sqr4 -+class Goink +@@ -726,7 +726,7 @@ template + // #TEST#: R1305 Rename use of T + requires std::is_arithmetic_v && Squareable + // #TEST#: R1306 Rename class SqrStruct3 +-struct SqrStruct3 ++struct Goink { - public: - // #TEST#: R1318 Rename first use of T -@@ -1231,10 +1231,10 @@ void f2() - // compound constraint on single template parameter, combination + // #TEST#: R1307 Rename first use of T + // #TEST#: R1308 Rename second of T +@@ -1209,10 +1209,10 @@ void f2() + } { - // #TEST#: R1540 Rename Sqr4 -- Sqr4 s1; + // #TEST#: R1540 Rename SqrStruct3 +- SqrStruct3 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1541 Rename Sqr4 -- Sqr4 s2; + // #TEST#: R1541 Rename SqrStruct3 +- SqrStruct3 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1541.txt b/results/diffs/R1541.txt index 7645cae..a18212c 100644 --- a/results/diffs/R1541.txt +++ b/results/diffs/R1541.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..3ca2b16 100644 +index 21c29d3..a2d548f 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -759,7 +759,7 @@ template - // #TEST#: R1316 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1317 Rename class Sqr4 --class Sqr4 -+class Goink +@@ -726,7 +726,7 @@ template + // #TEST#: R1305 Rename use of T + requires std::is_arithmetic_v && Squareable + // #TEST#: R1306 Rename class SqrStruct3 +-struct SqrStruct3 ++struct Goink { - public: - // #TEST#: R1318 Rename first use of T -@@ -1231,10 +1231,10 @@ void f2() - // compound constraint on single template parameter, combination + // #TEST#: R1307 Rename first use of T + // #TEST#: R1308 Rename second of T +@@ -1209,10 +1209,10 @@ void f2() + } { - // #TEST#: R1540 Rename Sqr4 -- Sqr4 s1; + // #TEST#: R1540 Rename SqrStruct3 +- SqrStruct3 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1541 Rename Sqr4 -- Sqr4 s2; + // #TEST#: R1541 Rename SqrStruct3 +- SqrStruct3 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1542.txt b/results/diffs/R1542.txt index 8f96c3f..ff4e9fe 100644 --- a/results/diffs/R1542.txt +++ b/results/diffs/R1542.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..59ff287 100644 +index 21c29d3..c2bd647 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -776,7 +776,7 @@ template - // #TEST#: R1324 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1325 Rename class SqrStruct4 --struct SqrStruct4 -+struct Goink +@@ -742,7 +742,7 @@ template + // #TEST#: R1312 Rename use of T + requires std::is_arithmetic_v && Squareable + // #TEST#: R1313 Rename class SqrUnion3 +-union SqrUnion3 ++union Goink { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T -@@ -1241,10 +1241,10 @@ void f2() + // #TEST#: R1314 Rename first use of T + // #TEST#: R1315 Rename second of T +@@ -1219,10 +1219,10 @@ void f2() } { - // #TEST#: R1542 Rename SqrStruct4 -- SqrStruct4 s1; + // #TEST#: R1542 Rename SqrUnion3 +- SqrUnion3 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1543 Rename SqrStruct4 -- SqrStruct4 s2; + // #TEST#: R1543 Rename SqrUnion3 +- SqrUnion3 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1543.txt b/results/diffs/R1543.txt index 8f96c3f..ff4e9fe 100644 --- a/results/diffs/R1543.txt +++ b/results/diffs/R1543.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..59ff287 100644 +index 21c29d3..c2bd647 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -776,7 +776,7 @@ template - // #TEST#: R1324 Rename use of T - requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1325 Rename class SqrStruct4 --struct SqrStruct4 -+struct Goink +@@ -742,7 +742,7 @@ template + // #TEST#: R1312 Rename use of T + requires std::is_arithmetic_v && Squareable + // #TEST#: R1313 Rename class SqrUnion3 +-union SqrUnion3 ++union Goink { - // #TEST#: R1326 Rename first use of T - // #TEST#: R1327 Rename second of T -@@ -1241,10 +1241,10 @@ void f2() + // #TEST#: R1314 Rename first use of T + // #TEST#: R1315 Rename second of T +@@ -1219,10 +1219,10 @@ void f2() } { - // #TEST#: R1542 Rename SqrStruct4 -- SqrStruct4 s1; + // #TEST#: R1542 Rename SqrUnion3 +- SqrUnion3 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1543 Rename SqrStruct4 -- SqrStruct4 s2; + // #TEST#: R1543 Rename SqrUnion3 +- SqrUnion3 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1544.txt b/results/diffs/R1544.txt index 5205745..c1484bd 100644 --- a/results/diffs/R1544.txt +++ b/results/diffs/R1544.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..13b30be 100644 +index 21c29d3..3ca2b16 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -792,7 +792,7 @@ template - // #TEST#: R1332 Rename use of T +@@ -759,7 +759,7 @@ template + // #TEST#: R1320 Rename use of T requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1333 Rename class SqrUnion4 --union SqrUnion4 -+union Goink + // #TEST#: R1321 Rename class Sqr4 +-class Sqr4 ++class Goink { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T -@@ -1251,10 +1251,10 @@ void f2() - } + public: + // #TEST#: R1322 Rename first use of T +@@ -1231,10 +1231,10 @@ void f2() + // compound constraint on single template parameter, combination { - // #TEST#: R1544 Rename SqrUnion4 -- SqrUnion4 s1; + // #TEST#: R1544 Rename Sqr4 +- Sqr4 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1545 Rename SqrUnion4 -- SqrUnion4 s2; + // #TEST#: R1545 Rename Sqr4 +- Sqr4 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1545.txt b/results/diffs/R1545.txt index 5205745..c1484bd 100644 --- a/results/diffs/R1545.txt +++ b/results/diffs/R1545.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 21c29d3..13b30be 100644 +index 21c29d3..3ca2b16 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -792,7 +792,7 @@ template - // #TEST#: R1332 Rename use of T +@@ -759,7 +759,7 @@ template + // #TEST#: R1320 Rename use of T requires(std::is_integral_v || std::is_floating_point_v) && Squareable - // #TEST#: R1333 Rename class SqrUnion4 --union SqrUnion4 -+union Goink + // #TEST#: R1321 Rename class Sqr4 +-class Sqr4 ++class Goink { - // #TEST#: R1334 Rename first use of T - // #TEST#: R1335 Rename second of T -@@ -1251,10 +1251,10 @@ void f2() - } + public: + // #TEST#: R1322 Rename first use of T +@@ -1231,10 +1231,10 @@ void f2() + // compound constraint on single template parameter, combination { - // #TEST#: R1544 Rename SqrUnion4 -- SqrUnion4 s1; + // #TEST#: R1544 Rename Sqr4 +- Sqr4 s1; + Goink s1; REQUIRE_EQUAL(4, s1(2)); - // #TEST#: R1545 Rename SqrUnion4 -- SqrUnion4 s2; + // #TEST#: R1545 Rename Sqr4 +- Sqr4 s2; + Goink s2; const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1546.txt b/results/diffs/R1546.txt index 0b6364d..d7ff8b0 100644 --- a/results/diffs/R1546.txt +++ b/results/diffs/R1546.txt @@ -1,32 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..cc7971c 100644 +index 21c29d3..59ff287 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -824,7 +824,7 @@ template - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U - requires Multiplicable --class Product1 -+class Goink +@@ -776,7 +776,7 @@ template + // #TEST#: R1328 Rename use of T + requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1329 Rename class SqrStruct4 +-struct SqrStruct4 ++struct Goink { - public: - // #TEST#: R1342 Rename use of T -@@ -1288,14 +1288,14 @@ void f2() - // single constraint on multiple template parameters + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T +@@ -1241,10 +1241,10 @@ void f2() + } { - // #TEST#: R1546 Rename Product1 -- Product1 p1; -+ Goink p1; - REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1547 Rename Product1 -- Product1 p2; -+ Goink p2; - const double d = p2(2.0, 2.0); + // #TEST#: R1546 Rename SqrStruct4 +- SqrStruct4 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1547 Rename SqrStruct4 +- SqrStruct4 s2; ++ Goink s2; + const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1548 Rename Product1 -- Product1 s3; -+ Goink s3; - const Rope r = s3(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1547.txt b/results/diffs/R1547.txt index 0b6364d..d7ff8b0 100644 --- a/results/diffs/R1547.txt +++ b/results/diffs/R1547.txt @@ -1,32 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..cc7971c 100644 +index 21c29d3..59ff287 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -824,7 +824,7 @@ template - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U - requires Multiplicable --class Product1 -+class Goink +@@ -776,7 +776,7 @@ template + // #TEST#: R1328 Rename use of T + requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1329 Rename class SqrStruct4 +-struct SqrStruct4 ++struct Goink { - public: - // #TEST#: R1342 Rename use of T -@@ -1288,14 +1288,14 @@ void f2() - // single constraint on multiple template parameters + // #TEST#: R1330 Rename first use of T + // #TEST#: R1331 Rename second of T +@@ -1241,10 +1241,10 @@ void f2() + } { - // #TEST#: R1546 Rename Product1 -- Product1 p1; -+ Goink p1; - REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1547 Rename Product1 -- Product1 p2; -+ Goink p2; - const double d = p2(2.0, 2.0); + // #TEST#: R1546 Rename SqrStruct4 +- SqrStruct4 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1547 Rename SqrStruct4 +- SqrStruct4 s2; ++ Goink s2; + const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1548 Rename Product1 -- Product1 s3; -+ Goink s3; - const Rope r = s3(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1548.txt b/results/diffs/R1548.txt index 0b6364d..a89220b 100644 --- a/results/diffs/R1548.txt +++ b/results/diffs/R1548.txt @@ -1,32 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..cc7971c 100644 +index 21c29d3..13b30be 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -824,7 +824,7 @@ template - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U - requires Multiplicable --class Product1 -+class Goink +@@ -792,7 +792,7 @@ template + // #TEST#: R1336 Rename use of T + requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1337 Rename class SqrUnion4 +-union SqrUnion4 ++union Goink { - public: - // #TEST#: R1342 Rename use of T -@@ -1288,14 +1288,14 @@ void f2() - // single constraint on multiple template parameters + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T +@@ -1251,10 +1251,10 @@ void f2() + } { - // #TEST#: R1546 Rename Product1 -- Product1 p1; -+ Goink p1; - REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1547 Rename Product1 -- Product1 p2; -+ Goink p2; - const double d = p2(2.0, 2.0); + // #TEST#: R1548 Rename SqrUnion4 +- SqrUnion4 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1549 Rename SqrUnion4 +- SqrUnion4 s2; ++ Goink s2; + const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1548 Rename Product1 -- Product1 s3; -+ Goink s3; - const Rope r = s3(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1549.txt b/results/diffs/R1549.txt index e75a709..a89220b 100644 --- a/results/diffs/R1549.txt +++ b/results/diffs/R1549.txt @@ -1,32 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..00e13e8 100644 +index 21c29d3..13b30be 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -849,7 +849,7 @@ template - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U - requires Multiplicable --struct ProductStruct1 -+struct Goink +@@ -792,7 +792,7 @@ template + // #TEST#: R1336 Rename use of T + requires(std::is_integral_v || std::is_floating_point_v) && Squareable + // #TEST#: R1337 Rename class SqrUnion4 +-union SqrUnion4 ++union Goink { - // #TEST#: R1356 Rename use of T - // #TEST#: R1357 Rename parameter lhs -@@ -1301,14 +1301,14 @@ void f2() + // #TEST#: R1338 Rename first use of T + // #TEST#: R1339 Rename second of T +@@ -1251,10 +1251,10 @@ void f2() } { - // #TEST#: R1549 Rename ProductStruct1 -- ProductStruct1 p1; -+ Goink p1; - REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1550 Rename ProductStruct1 -- ProductStruct1 p2; -+ Goink p2; - const double d = p2(2.0, 2.0); + // #TEST#: R1548 Rename SqrUnion4 +- SqrUnion4 s1; ++ Goink s1; + REQUIRE_EQUAL(4, s1(2)); + // #TEST#: R1549 Rename SqrUnion4 +- SqrUnion4 s2; ++ Goink s2; + const double d = s2(2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1551 Rename ProductStruct1 -- ProductStruct1 s3; -+ Goink s3; - const Rope r = s3(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } + // Rope is not std::is_arithmetic diff --git a/results/diffs/R1550.txt b/results/diffs/R1550.txt index e75a709..af0c1e7 100644 --- a/results/diffs/R1550.txt +++ b/results/diffs/R1550.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..00e13e8 100644 +index 977575b..cc7971c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -849,7 +849,7 @@ template - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U +@@ -824,7 +824,7 @@ template + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U requires Multiplicable --struct ProductStruct1 -+struct Goink +-class Product1 ++class Goink { - // #TEST#: R1356 Rename use of T - // #TEST#: R1357 Rename parameter lhs -@@ -1301,14 +1301,14 @@ void f2() - } + public: + // #TEST#: R1346 Rename use of T +@@ -1288,14 +1288,14 @@ void f2() + // single constraint on multiple template parameters { - // #TEST#: R1549 Rename ProductStruct1 -- ProductStruct1 p1; + // #TEST#: R1550 Rename Product1 +- Product1 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1550 Rename ProductStruct1 -- ProductStruct1 p2; + // #TEST#: R1551 Rename Product1 +- Product1 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1551 Rename ProductStruct1 -- ProductStruct1 s3; + // #TEST#: R1552 Rename Product1 +- Product1 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1551.txt b/results/diffs/R1551.txt index e75a709..af0c1e7 100644 --- a/results/diffs/R1551.txt +++ b/results/diffs/R1551.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..00e13e8 100644 +index 977575b..cc7971c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -849,7 +849,7 @@ template - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U +@@ -824,7 +824,7 @@ template + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U requires Multiplicable --struct ProductStruct1 -+struct Goink +-class Product1 ++class Goink { - // #TEST#: R1356 Rename use of T - // #TEST#: R1357 Rename parameter lhs -@@ -1301,14 +1301,14 @@ void f2() - } + public: + // #TEST#: R1346 Rename use of T +@@ -1288,14 +1288,14 @@ void f2() + // single constraint on multiple template parameters { - // #TEST#: R1549 Rename ProductStruct1 -- ProductStruct1 p1; + // #TEST#: R1550 Rename Product1 +- Product1 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1550 Rename ProductStruct1 -- ProductStruct1 p2; + // #TEST#: R1551 Rename Product1 +- Product1 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1551 Rename ProductStruct1 -- ProductStruct1 s3; + // #TEST#: R1552 Rename Product1 +- Product1 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1552.txt b/results/diffs/R1552.txt index 9edac8b..af0c1e7 100644 --- a/results/diffs/R1552.txt +++ b/results/diffs/R1552.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..9ff377e 100644 +index 977575b..cc7971c 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -873,7 +873,7 @@ template - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U +@@ -824,7 +824,7 @@ template + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U requires Multiplicable --union ProductUnion1 -+union Goink +-class Product1 ++class Goink { - // #TEST#: R1370 Rename use of T - // #TEST#: R1371 Rename parameter lhs -@@ -1314,14 +1314,14 @@ void f2() - } + public: + // #TEST#: R1346 Rename use of T +@@ -1288,14 +1288,14 @@ void f2() + // single constraint on multiple template parameters { - // #TEST#: R1552 Rename ProductUnion1 -- ProductUnion1 p1; + // #TEST#: R1550 Rename Product1 +- Product1 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1553 Rename ProductUnion1 -- ProductUnion1 p2; + // #TEST#: R1551 Rename Product1 +- Product1 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1554 Rename ProductUnion1 -- ProductUnion1 s3; + // #TEST#: R1552 Rename Product1 +- Product1 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1553.txt b/results/diffs/R1553.txt index 9edac8b..547670d 100644 --- a/results/diffs/R1553.txt +++ b/results/diffs/R1553.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..9ff377e 100644 +index 977575b..00e13e8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -873,7 +873,7 @@ template - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U +@@ -849,7 +849,7 @@ template + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U requires Multiplicable --union ProductUnion1 -+union Goink +-struct ProductStruct1 ++struct Goink { - // #TEST#: R1370 Rename use of T - // #TEST#: R1371 Rename parameter lhs -@@ -1314,14 +1314,14 @@ void f2() + // #TEST#: R1360 Rename use of T + // #TEST#: R1361 Rename parameter lhs +@@ -1301,14 +1301,14 @@ void f2() } { - // #TEST#: R1552 Rename ProductUnion1 -- ProductUnion1 p1; + // #TEST#: R1553 Rename ProductStruct1 +- ProductStruct1 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1553 Rename ProductUnion1 -- ProductUnion1 p2; + // #TEST#: R1554 Rename ProductStruct1 +- ProductStruct1 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1554 Rename ProductUnion1 -- ProductUnion1 s3; + // #TEST#: R1555 Rename ProductStruct1 +- ProductStruct1 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1554.txt b/results/diffs/R1554.txt index 9edac8b..547670d 100644 --- a/results/diffs/R1554.txt +++ b/results/diffs/R1554.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..9ff377e 100644 +index 977575b..00e13e8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -873,7 +873,7 @@ template - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U +@@ -849,7 +849,7 @@ template + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U requires Multiplicable --union ProductUnion1 -+union Goink +-struct ProductStruct1 ++struct Goink { - // #TEST#: R1370 Rename use of T - // #TEST#: R1371 Rename parameter lhs -@@ -1314,14 +1314,14 @@ void f2() + // #TEST#: R1360 Rename use of T + // #TEST#: R1361 Rename parameter lhs +@@ -1301,14 +1301,14 @@ void f2() } { - // #TEST#: R1552 Rename ProductUnion1 -- ProductUnion1 p1; + // #TEST#: R1553 Rename ProductStruct1 +- ProductStruct1 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1553 Rename ProductUnion1 -- ProductUnion1 p2; + // #TEST#: R1554 Rename ProductStruct1 +- ProductStruct1 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1554 Rename ProductUnion1 -- ProductUnion1 s3; + // #TEST#: R1555 Rename ProductStruct1 +- ProductStruct1 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1555.txt b/results/diffs/R1555.txt index 162f381..547670d 100644 --- a/results/diffs/R1555.txt +++ b/results/diffs/R1555.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..2744738 100644 +index 977575b..00e13e8 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -899,7 +899,7 @@ template - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U - requires std::is_arithmetic_v || Multiplicable --class Product2 -+class Goink +@@ -849,7 +849,7 @@ template + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U + requires Multiplicable +-struct ProductStruct1 ++struct Goink { - public: - // #TEST#: R1385 Rename use of T -@@ -1329,14 +1329,14 @@ void f2() - // compound constraint on multiple template parameters, disjunction + // #TEST#: R1360 Rename use of T + // #TEST#: R1361 Rename parameter lhs +@@ -1301,14 +1301,14 @@ void f2() + } { - // #TEST#: R1555 Rename Product2 -- Product2 p1; + // #TEST#: R1553 Rename ProductStruct1 +- ProductStruct1 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1556 Rename Product2 -- Product2 p2; + // #TEST#: R1554 Rename ProductStruct1 +- ProductStruct1 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1557 Rename Product2 -- Product2 s3; + // #TEST#: R1555 Rename ProductStruct1 +- ProductStruct1 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1556.txt b/results/diffs/R1556.txt index 162f381..62c8a79 100644 --- a/results/diffs/R1556.txt +++ b/results/diffs/R1556.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..2744738 100644 +index 977575b..9ff377e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -899,7 +899,7 @@ template - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U - requires std::is_arithmetic_v || Multiplicable --class Product2 -+class Goink +@@ -873,7 +873,7 @@ template + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U + requires Multiplicable +-union ProductUnion1 ++union Goink { - public: - // #TEST#: R1385 Rename use of T -@@ -1329,14 +1329,14 @@ void f2() - // compound constraint on multiple template parameters, disjunction + // #TEST#: R1374 Rename use of T + // #TEST#: R1375 Rename parameter lhs +@@ -1314,14 +1314,14 @@ void f2() + } { - // #TEST#: R1555 Rename Product2 -- Product2 p1; + // #TEST#: R1556 Rename ProductUnion1 +- ProductUnion1 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1556 Rename Product2 -- Product2 p2; + // #TEST#: R1557 Rename ProductUnion1 +- ProductUnion1 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1557 Rename Product2 -- Product2 s3; + // #TEST#: R1558 Rename ProductUnion1 +- ProductUnion1 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1557.txt b/results/diffs/R1557.txt index 162f381..62c8a79 100644 --- a/results/diffs/R1557.txt +++ b/results/diffs/R1557.txt @@ -1,30 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..2744738 100644 +index 977575b..9ff377e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -899,7 +899,7 @@ template - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U - requires std::is_arithmetic_v || Multiplicable --class Product2 -+class Goink +@@ -873,7 +873,7 @@ template + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U + requires Multiplicable +-union ProductUnion1 ++union Goink { - public: - // #TEST#: R1385 Rename use of T -@@ -1329,14 +1329,14 @@ void f2() - // compound constraint on multiple template parameters, disjunction + // #TEST#: R1374 Rename use of T + // #TEST#: R1375 Rename parameter lhs +@@ -1314,14 +1314,14 @@ void f2() + } { - // #TEST#: R1555 Rename Product2 -- Product2 p1; + // #TEST#: R1556 Rename ProductUnion1 +- ProductUnion1 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1556 Rename Product2 -- Product2 p2; + // #TEST#: R1557 Rename ProductUnion1 +- ProductUnion1 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1557 Rename Product2 -- Product2 s3; + // #TEST#: R1558 Rename ProductUnion1 +- ProductUnion1 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1558.txt b/results/diffs/R1558.txt index 6e4719f..62c8a79 100644 --- a/results/diffs/R1558.txt +++ b/results/diffs/R1558.txt @@ -1,39 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..4c33939 100644 +index 977575b..9ff377e 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -925,7 +925,7 @@ template - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U - requires std::is_arithmetic_v || Multiplicable --struct ProductStruct2 -+struct Goink +@@ -873,7 +873,7 @@ template + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U + requires Multiplicable +-union ProductUnion1 ++union Goink { - // #TEST#: R1400 Rename use of T - // #TEST#: R1401 Rename parameter lhs -@@ -1342,14 +1342,14 @@ void f2() + // #TEST#: R1374 Rename use of T + // #TEST#: R1375 Rename parameter lhs +@@ -1314,14 +1314,14 @@ void f2() } { - // #TEST#: R1558 Rename ProductStruct2 -- ProductStruct2 p1; + // #TEST#: R1556 Rename ProductUnion1 +- ProductUnion1 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1559 Rename ProductStruct2 -- ProductStruct2 p2; + // #TEST#: R1557 Rename ProductUnion1 +- ProductUnion1 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1560 Rename ProductStruct2 -- ProductStruct2 s3; -+ Goink s3; - const Rope r = s3(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } -@@ -1362,7 +1362,7 @@ void f2() - const double d = p2(2.0, 2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1563 Rename ProductUnion2 -- ProductStruct2 s3; + // #TEST#: R1558 Rename ProductUnion1 +- ProductUnion1 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1559.txt b/results/diffs/R1559.txt index 6e4719f..e6d9d74 100644 --- a/results/diffs/R1559.txt +++ b/results/diffs/R1559.txt @@ -1,39 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..4c33939 100644 +index 977575b..2744738 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -925,7 +925,7 @@ template - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U +@@ -899,7 +899,7 @@ template + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U requires std::is_arithmetic_v || Multiplicable --struct ProductStruct2 -+struct Goink +-class Product2 ++class Goink { - // #TEST#: R1400 Rename use of T - // #TEST#: R1401 Rename parameter lhs -@@ -1342,14 +1342,14 @@ void f2() - } + public: + // #TEST#: R1389 Rename use of T +@@ -1329,14 +1329,14 @@ void f2() + // compound constraint on multiple template parameters, disjunction { - // #TEST#: R1558 Rename ProductStruct2 -- ProductStruct2 p1; + // #TEST#: R1559 Rename Product2 +- Product2 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1559 Rename ProductStruct2 -- ProductStruct2 p2; + // #TEST#: R1560 Rename Product2 +- Product2 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1560 Rename ProductStruct2 -- ProductStruct2 s3; -+ Goink s3; - const Rope r = s3(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } -@@ -1362,7 +1362,7 @@ void f2() - const double d = p2(2.0, 2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1563 Rename ProductUnion2 -- ProductStruct2 s3; + // #TEST#: R1561 Rename Product2 +- Product2 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1560.txt b/results/diffs/R1560.txt index 6e4719f..e6d9d74 100644 --- a/results/diffs/R1560.txt +++ b/results/diffs/R1560.txt @@ -1,39 +1,30 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..4c33939 100644 +index 977575b..2744738 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -925,7 +925,7 @@ template - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U +@@ -899,7 +899,7 @@ template + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U requires std::is_arithmetic_v || Multiplicable --struct ProductStruct2 -+struct Goink +-class Product2 ++class Goink { - // #TEST#: R1400 Rename use of T - // #TEST#: R1401 Rename parameter lhs -@@ -1342,14 +1342,14 @@ void f2() - } + public: + // #TEST#: R1389 Rename use of T +@@ -1329,14 +1329,14 @@ void f2() + // compound constraint on multiple template parameters, disjunction { - // #TEST#: R1558 Rename ProductStruct2 -- ProductStruct2 p1; + // #TEST#: R1559 Rename Product2 +- Product2 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1559 Rename ProductStruct2 -- ProductStruct2 p2; + // #TEST#: R1560 Rename Product2 +- Product2 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1560 Rename ProductStruct2 -- ProductStruct2 s3; -+ Goink s3; - const Rope r = s3(Rope{"two"}, Rope{"three"}); - REQUIRE_EQUAL(Rope{"two three"}, r); - } -@@ -1362,7 +1362,7 @@ void f2() - const double d = p2(2.0, 2.0); - REQUIRE_EQUAL(4.0, d); - // #TEST#: R1563 Rename ProductUnion2 -- ProductStruct2 s3; + // #TEST#: R1561 Rename Product2 +- Product2 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); REQUIRE_EQUAL(Rope{"two three"}, r); diff --git a/results/diffs/R1561.txt b/results/diffs/R1561.txt index 548abcc..e6d9d74 100644 --- a/results/diffs/R1561.txt +++ b/results/diffs/R1561.txt @@ -1,27 +1,32 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..6f34005 100644 +index 977575b..2744738 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -950,7 +950,7 @@ template - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U +@@ -899,7 +899,7 @@ template + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U requires std::is_arithmetic_v || Multiplicable --union ProductUnion2 -+union Goink +-class Product2 ++class Goink { - // #TEST#: R1415 Rename use of T - // #TEST#: R1416 Rename parameter lhs -@@ -1355,10 +1355,10 @@ void f2() - } + public: + // #TEST#: R1389 Rename use of T +@@ -1329,14 +1329,14 @@ void f2() + // compound constraint on multiple template parameters, disjunction { - // #TEST#: R1561 Rename ProductUnion2 -- ProductUnion2 p1; + // #TEST#: R1559 Rename Product2 +- Product2 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1562 Rename ProductUnion2 -- ProductUnion2 p2; + // #TEST#: R1560 Rename Product2 +- Product2 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1563 Rename ProductUnion2 + // #TEST#: R1561 Rename Product2 +- Product2 s3; ++ Goink s3; + const Rope r = s3(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } diff --git a/results/diffs/R1562.txt b/results/diffs/R1562.txt index 548abcc..79dbe28 100644 --- a/results/diffs/R1562.txt +++ b/results/diffs/R1562.txt @@ -1,27 +1,41 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..6f34005 100644 +index 977575b..4c33939 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -950,7 +950,7 @@ template - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U +@@ -925,7 +925,7 @@ template + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U requires std::is_arithmetic_v || Multiplicable --union ProductUnion2 -+union Goink +-struct ProductStruct2 ++struct Goink { - // #TEST#: R1415 Rename use of T - // #TEST#: R1416 Rename parameter lhs -@@ -1355,10 +1355,10 @@ void f2() + // #TEST#: R1404 Rename use of T + // #TEST#: R1405 Rename parameter lhs +@@ -1342,14 +1342,14 @@ void f2() } { - // #TEST#: R1561 Rename ProductUnion2 -- ProductUnion2 p1; + // #TEST#: R1562 Rename ProductStruct2 +- ProductStruct2 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1562 Rename ProductUnion2 -- ProductUnion2 p2; + // #TEST#: R1563 Rename ProductStruct2 +- ProductStruct2 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1563 Rename ProductUnion2 + // #TEST#: R1564 Rename ProductStruct2 +- ProductStruct2 s3; ++ Goink s3; + const Rope r = s3(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } +@@ -1362,7 +1362,7 @@ void f2() + const double d = p2(2.0, 2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1567 Rename ProductUnion2 +- ProductStruct2 s3; ++ Goink s3; + const Rope r = s3(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } diff --git a/results/diffs/R1563.txt b/results/diffs/R1563.txt index 6e4719f..79dbe28 100644 --- a/results/diffs/R1563.txt +++ b/results/diffs/R1563.txt @@ -3,27 +3,27 @@ index 977575b..4c33939 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -925,7 +925,7 @@ template - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U requires std::is_arithmetic_v || Multiplicable -struct ProductStruct2 +struct Goink { - // #TEST#: R1400 Rename use of T - // #TEST#: R1401 Rename parameter lhs + // #TEST#: R1404 Rename use of T + // #TEST#: R1405 Rename parameter lhs @@ -1342,14 +1342,14 @@ void f2() } { - // #TEST#: R1558 Rename ProductStruct2 + // #TEST#: R1562 Rename ProductStruct2 - ProductStruct2 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1559 Rename ProductStruct2 + // #TEST#: R1563 Rename ProductStruct2 - ProductStruct2 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1560 Rename ProductStruct2 + // #TEST#: R1564 Rename ProductStruct2 - ProductStruct2 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); @@ -32,7 +32,7 @@ index 977575b..4c33939 100644 @@ -1362,7 +1362,7 @@ void f2() const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // #TEST#: R1563 Rename ProductUnion2 + // #TEST#: R1567 Rename ProductUnion2 - ProductStruct2 s3; + Goink s3; const Rope r = s3(Rope{"two"}, Rope{"three"}); diff --git a/results/diffs/R1564.txt b/results/diffs/R1564.txt index 25b3202..79dbe28 100644 --- a/results/diffs/R1564.txt +++ b/results/diffs/R1564.txt @@ -1,27 +1,41 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..f732a07 100644 +index 977575b..4c33939 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -976,7 +976,7 @@ template - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U - requires std::is_arithmetic_v && Multiplicable --class Product3 -+class Goink +@@ -925,7 +925,7 @@ template + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U + requires std::is_arithmetic_v || Multiplicable +-struct ProductStruct2 ++struct Goink { - public: - // #TEST#: R1430 Rename use of T -@@ -1370,10 +1370,10 @@ void f2() - // compound constraint on multiple template parameters, conjunction + // #TEST#: R1404 Rename use of T + // #TEST#: R1405 Rename parameter lhs +@@ -1342,14 +1342,14 @@ void f2() + } { - // #TEST#: R1564 Rename Product3 -- Product3 p1; + // #TEST#: R1562 Rename ProductStruct2 +- ProductStruct2 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1565 Rename Product3 -- Product3 p2; + // #TEST#: R1563 Rename ProductStruct2 +- ProductStruct2 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1564 Rename ProductStruct2 +- ProductStruct2 s3; ++ Goink s3; + const Rope r = s3(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } +@@ -1362,7 +1362,7 @@ void f2() + const double d = p2(2.0, 2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1567 Rename ProductUnion2 +- ProductStruct2 s3; ++ Goink s3; + const Rope r = s3(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } diff --git a/results/diffs/R1565.txt b/results/diffs/R1565.txt index 25b3202..47b0e2b 100644 --- a/results/diffs/R1565.txt +++ b/results/diffs/R1565.txt @@ -1,27 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..f732a07 100644 +index 977575b..6f34005 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -976,7 +976,7 @@ template - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U - requires std::is_arithmetic_v && Multiplicable --class Product3 -+class Goink +@@ -950,7 +950,7 @@ template + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U + requires std::is_arithmetic_v || Multiplicable +-union ProductUnion2 ++union Goink { - public: - // #TEST#: R1430 Rename use of T -@@ -1370,10 +1370,10 @@ void f2() - // compound constraint on multiple template parameters, conjunction + // #TEST#: R1419 Rename use of T + // #TEST#: R1420 Rename parameter lhs +@@ -1355,10 +1355,10 @@ void f2() + } { - // #TEST#: R1564 Rename Product3 -- Product3 p1; + // #TEST#: R1565 Rename ProductUnion2 +- ProductUnion2 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1565 Rename Product3 -- Product3 p2; + // #TEST#: R1566 Rename ProductUnion2 +- ProductUnion2 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1567 Rename ProductUnion2 diff --git a/results/diffs/R1566.txt b/results/diffs/R1566.txt index a291328..47b0e2b 100644 --- a/results/diffs/R1566.txt +++ b/results/diffs/R1566.txt @@ -1,27 +1,27 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..65d1b29 100644 +index 977575b..6f34005 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1002,7 +1002,7 @@ template - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U - requires std::is_arithmetic_v && Multiplicable --struct ProductStruct3 -+struct Goink +@@ -950,7 +950,7 @@ template + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U + requires std::is_arithmetic_v || Multiplicable +-union ProductUnion2 ++union Goink { - // #TEST#: R1445 Rename use of T - // #TEST#: R1446 Rename parameter lhs -@@ -1380,10 +1380,10 @@ void f2() + // #TEST#: R1419 Rename use of T + // #TEST#: R1420 Rename parameter lhs +@@ -1355,10 +1355,10 @@ void f2() } { - // #TEST#: R1566 Rename ProductStruct3 -- ProductStruct3 p1; + // #TEST#: R1565 Rename ProductUnion2 +- ProductUnion2 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1567 Rename ProductStruct3 -- ProductStruct3 p2; + // #TEST#: R1566 Rename ProductUnion2 +- ProductUnion2 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1567 Rename ProductUnion2 diff --git a/results/diffs/R1567.txt b/results/diffs/R1567.txt index a291328..79dbe28 100644 --- a/results/diffs/R1567.txt +++ b/results/diffs/R1567.txt @@ -1,27 +1,41 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..65d1b29 100644 +index 977575b..4c33939 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1002,7 +1002,7 @@ template - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U - requires std::is_arithmetic_v && Multiplicable --struct ProductStruct3 +@@ -925,7 +925,7 @@ template + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U + requires std::is_arithmetic_v || Multiplicable +-struct ProductStruct2 +struct Goink { - // #TEST#: R1445 Rename use of T - // #TEST#: R1446 Rename parameter lhs -@@ -1380,10 +1380,10 @@ void f2() + // #TEST#: R1404 Rename use of T + // #TEST#: R1405 Rename parameter lhs +@@ -1342,14 +1342,14 @@ void f2() } { - // #TEST#: R1566 Rename ProductStruct3 -- ProductStruct3 p1; + // #TEST#: R1562 Rename ProductStruct2 +- ProductStruct2 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1567 Rename ProductStruct3 -- ProductStruct3 p2; + // #TEST#: R1563 Rename ProductStruct2 +- ProductStruct2 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); - // Rope is not std::is_arithmetic + // #TEST#: R1564 Rename ProductStruct2 +- ProductStruct2 s3; ++ Goink s3; + const Rope r = s3(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } +@@ -1362,7 +1362,7 @@ void f2() + const double d = p2(2.0, 2.0); + REQUIRE_EQUAL(4.0, d); + // #TEST#: R1567 Rename ProductUnion2 +- ProductStruct2 s3; ++ Goink s3; + const Rope r = s3(Rope{"two"}, Rope{"three"}); + REQUIRE_EQUAL(Rope{"two three"}, r); + } diff --git a/results/diffs/R1568.txt b/results/diffs/R1568.txt index 0fef748..7f8ab4e 100644 --- a/results/diffs/R1568.txt +++ b/results/diffs/R1568.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..8ee14fd 100644 +index 977575b..f732a07 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1027,7 +1027,7 @@ template - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U +@@ -976,7 +976,7 @@ template + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U requires std::is_arithmetic_v && Multiplicable --union ProductUnion3 -+union Goink +-class Product3 ++class Goink { - // #TEST#: R1460 Rename use of T - // #TEST#: R1461 Rename parameter lhs -@@ -1390,10 +1390,10 @@ void f2() - } + public: + // #TEST#: R1434 Rename use of T +@@ -1370,10 +1370,10 @@ void f2() + // compound constraint on multiple template parameters, conjunction { - // #TEST#: R1568 Rename ProductUnion3 -- ProductUnion3 p1; + // #TEST#: R1568 Rename Product3 +- Product3 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1569 Rename ProductUnion3 -- ProductUnion3 p2; + // #TEST#: R1569 Rename Product3 +- Product3 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1569.txt b/results/diffs/R1569.txt index 0fef748..7f8ab4e 100644 --- a/results/diffs/R1569.txt +++ b/results/diffs/R1569.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..8ee14fd 100644 +index 977575b..f732a07 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1027,7 +1027,7 @@ template - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U +@@ -976,7 +976,7 @@ template + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U requires std::is_arithmetic_v && Multiplicable --union ProductUnion3 -+union Goink +-class Product3 ++class Goink { - // #TEST#: R1460 Rename use of T - // #TEST#: R1461 Rename parameter lhs -@@ -1390,10 +1390,10 @@ void f2() - } + public: + // #TEST#: R1434 Rename use of T +@@ -1370,10 +1370,10 @@ void f2() + // compound constraint on multiple template parameters, conjunction { - // #TEST#: R1568 Rename ProductUnion3 -- ProductUnion3 p1; + // #TEST#: R1568 Rename Product3 +- Product3 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1569 Rename ProductUnion3 -- ProductUnion3 p2; + // #TEST#: R1569 Rename Product3 +- Product3 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1570.txt b/results/diffs/R1570.txt index 48d67d4..3093849 100644 --- a/results/diffs/R1570.txt +++ b/results/diffs/R1570.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..01b3c14 100644 +index 977575b..65d1b29 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1054,7 +1054,7 @@ template - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable --class Product4 -+class Goink +@@ -1002,7 +1002,7 @@ template + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U + requires std::is_arithmetic_v && Multiplicable +-struct ProductStruct3 ++struct Goink { - public: - // #TEST#: R1476 Rename use of T -@@ -1402,10 +1402,10 @@ void f2() - // compound constraint on multiple template parameters, combination + // #TEST#: R1449 Rename use of T + // #TEST#: R1450 Rename parameter lhs +@@ -1380,10 +1380,10 @@ void f2() + } { - // #TEST#: R1570 Rename Product4 -- Product4 p1; + // #TEST#: R1570 Rename ProductStruct3 +- ProductStruct3 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1571 Rename Product4 -- Product4 p2; + // #TEST#: R1571 Rename ProductStruct3 +- ProductStruct3 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1571.txt b/results/diffs/R1571.txt index 48d67d4..3093849 100644 --- a/results/diffs/R1571.txt +++ b/results/diffs/R1571.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..01b3c14 100644 +index 977575b..65d1b29 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1054,7 +1054,7 @@ template - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable --class Product4 -+class Goink +@@ -1002,7 +1002,7 @@ template + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U + requires std::is_arithmetic_v && Multiplicable +-struct ProductStruct3 ++struct Goink { - public: - // #TEST#: R1476 Rename use of T -@@ -1402,10 +1402,10 @@ void f2() - // compound constraint on multiple template parameters, combination + // #TEST#: R1449 Rename use of T + // #TEST#: R1450 Rename parameter lhs +@@ -1380,10 +1380,10 @@ void f2() + } { - // #TEST#: R1570 Rename Product4 -- Product4 p1; + // #TEST#: R1570 Rename ProductStruct3 +- ProductStruct3 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1571 Rename Product4 -- Product4 p2; + // #TEST#: R1571 Rename ProductStruct3 +- ProductStruct3 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1572.txt b/results/diffs/R1572.txt index 8fde25d..e5886ed 100644 --- a/results/diffs/R1572.txt +++ b/results/diffs/R1572.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..c6768f5 100644 +index 977575b..8ee14fd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable --struct ProductStruct4 -+struct Goink +@@ -1027,7 +1027,7 @@ template + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U + requires std::is_arithmetic_v && Multiplicable +-union ProductUnion3 ++union Goink { - // #TEST#: R1492 Rename use of T - // #TEST#: R1493 Rename parameter lhs -@@ -1412,10 +1412,10 @@ void f2() + // #TEST#: R1464 Rename use of T + // #TEST#: R1465 Rename parameter lhs +@@ -1390,10 +1390,10 @@ void f2() } { - // #TEST#: R1572 Rename ProductStruct4 -- ProductStruct4 p1; + // #TEST#: R1572 Rename ProductUnion3 +- ProductUnion3 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1573 Rename ProductStruct4 -- ProductStruct4 p2; + // #TEST#: R1573 Rename ProductUnion3 +- ProductUnion3 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1573.txt b/results/diffs/R1573.txt index 8fde25d..e5886ed 100644 --- a/results/diffs/R1573.txt +++ b/results/diffs/R1573.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..c6768f5 100644 +index 977575b..8ee14fd 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U - requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable --struct ProductStruct4 -+struct Goink +@@ -1027,7 +1027,7 @@ template + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U + requires std::is_arithmetic_v && Multiplicable +-union ProductUnion3 ++union Goink { - // #TEST#: R1492 Rename use of T - // #TEST#: R1493 Rename parameter lhs -@@ -1412,10 +1412,10 @@ void f2() + // #TEST#: R1464 Rename use of T + // #TEST#: R1465 Rename parameter lhs +@@ -1390,10 +1390,10 @@ void f2() } { - // #TEST#: R1572 Rename ProductStruct4 -- ProductStruct4 p1; + // #TEST#: R1572 Rename ProductUnion3 +- ProductUnion3 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1573 Rename ProductStruct4 -- ProductStruct4 p2; + // #TEST#: R1573 Rename ProductUnion3 +- ProductUnion3 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1574.txt b/results/diffs/R1574.txt index 1b212f0..0ccd97d 100644 --- a/results/diffs/R1574.txt +++ b/results/diffs/R1574.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..a81a957 100644 +index 977575b..01b3c14 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1107,7 +1107,7 @@ template - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U +@@ -1054,7 +1054,7 @@ template + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable --union ProductUnion4 -+union Goink +-class Product4 ++class Goink { - // #TEST#: R1508 Rename use of T - // #TEST#: R1509 Rename parameter lhs -@@ -1422,10 +1422,10 @@ void f2() - } + public: + // #TEST#: R1480 Rename use of T +@@ -1402,10 +1402,10 @@ void f2() + // compound constraint on multiple template parameters, combination { - // #TEST#: R1574 Rename ProductUnion4 -- ProductUnion4 p1; + // #TEST#: R1574 Rename Product4 +- Product4 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1575 Rename ProductUnion4 -- ProductUnion4 p2; + // #TEST#: R1575 Rename Product4 +- Product4 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1575.txt b/results/diffs/R1575.txt index 1b212f0..0ccd97d 100644 --- a/results/diffs/R1575.txt +++ b/results/diffs/R1575.txt @@ -1,25 +1,25 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 977575b..a81a957 100644 +index 977575b..01b3c14 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -1107,7 +1107,7 @@ template - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U +@@ -1054,7 +1054,7 @@ template + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable --union ProductUnion4 -+union Goink +-class Product4 ++class Goink { - // #TEST#: R1508 Rename use of T - // #TEST#: R1509 Rename parameter lhs -@@ -1422,10 +1422,10 @@ void f2() - } + public: + // #TEST#: R1480 Rename use of T +@@ -1402,10 +1402,10 @@ void f2() + // compound constraint on multiple template parameters, combination { - // #TEST#: R1574 Rename ProductUnion4 -- ProductUnion4 p1; + // #TEST#: R1574 Rename Product4 +- Product4 p1; + Goink p1; REQUIRE_EQUAL(6.0, p1(2, 3.0)); - // #TEST#: R1575 Rename ProductUnion4 -- ProductUnion4 p2; + // #TEST#: R1575 Rename Product4 +- Product4 p2; + Goink p2; const double d = p2(2.0, 2.0); REQUIRE_EQUAL(4.0, d); diff --git a/results/diffs/R1576.txt b/results/diffs/R1576.txt new file mode 100644 index 0000000..ad040d9 --- /dev/null +++ b/results/diffs/R1576.txt @@ -0,0 +1,27 @@ +diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp +index 977575b..c6768f5 100644 +--- a/RefactorTest/RenameCpp20Constraints.cpp ++++ b/RefactorTest/RenameCpp20Constraints.cpp +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable +-struct ProductStruct4 ++struct Goink + { + // #TEST#: R1496 Rename use of T + // #TEST#: R1497 Rename parameter lhs +@@ -1412,10 +1412,10 @@ void f2() + } + { + // #TEST#: R1576 Rename ProductStruct4 +- ProductStruct4 p1; ++ Goink p1; + REQUIRE_EQUAL(6.0, p1(2, 3.0)); + // #TEST#: R1577 Rename ProductStruct4 +- ProductStruct4 p2; ++ Goink p2; + const double d = p2(2.0, 2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic + diff --git a/results/diffs/R1577.txt b/results/diffs/R1577.txt new file mode 100644 index 0000000..ad040d9 --- /dev/null +++ b/results/diffs/R1577.txt @@ -0,0 +1,27 @@ +diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp +index 977575b..c6768f5 100644 +--- a/RefactorTest/RenameCpp20Constraints.cpp ++++ b/RefactorTest/RenameCpp20Constraints.cpp +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable +-struct ProductStruct4 ++struct Goink + { + // #TEST#: R1496 Rename use of T + // #TEST#: R1497 Rename parameter lhs +@@ -1412,10 +1412,10 @@ void f2() + } + { + // #TEST#: R1576 Rename ProductStruct4 +- ProductStruct4 p1; ++ Goink p1; + REQUIRE_EQUAL(6.0, p1(2, 3.0)); + // #TEST#: R1577 Rename ProductStruct4 +- ProductStruct4 p2; ++ Goink p2; + const double d = p2(2.0, 2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic + diff --git a/results/diffs/R1578.txt b/results/diffs/R1578.txt new file mode 100644 index 0000000..b1fa6ec --- /dev/null +++ b/results/diffs/R1578.txt @@ -0,0 +1,27 @@ +diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp +index 977575b..a81a957 100644 +--- a/RefactorTest/RenameCpp20Constraints.cpp ++++ b/RefactorTest/RenameCpp20Constraints.cpp +@@ -1107,7 +1107,7 @@ template + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable +-union ProductUnion4 ++union Goink + { + // #TEST#: R1512 Rename use of T + // #TEST#: R1513 Rename parameter lhs +@@ -1422,10 +1422,10 @@ void f2() + } + { + // #TEST#: R1578 Rename ProductUnion4 +- ProductUnion4 p1; ++ Goink p1; + REQUIRE_EQUAL(6.0, p1(2, 3.0)); + // #TEST#: R1579 Rename ProductUnion4 +- ProductUnion4 p2; ++ Goink p2; + const double d = p2(2.0, 2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic + diff --git a/results/diffs/R1579.txt b/results/diffs/R1579.txt new file mode 100644 index 0000000..b1fa6ec --- /dev/null +++ b/results/diffs/R1579.txt @@ -0,0 +1,27 @@ +diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp +index 977575b..a81a957 100644 +--- a/RefactorTest/RenameCpp20Constraints.cpp ++++ b/RefactorTest/RenameCpp20Constraints.cpp +@@ -1107,7 +1107,7 @@ template + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U + requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable +-union ProductUnion4 ++union Goink + { + // #TEST#: R1512 Rename use of T + // #TEST#: R1513 Rename parameter lhs +@@ -1422,10 +1422,10 @@ void f2() + } + { + // #TEST#: R1578 Rename ProductUnion4 +- ProductUnion4 p1; ++ Goink p1; + REQUIRE_EQUAL(6.0, p1(2, 3.0)); + // #TEST#: R1579 Rename ProductUnion4 +- ProductUnion4 p2; ++ Goink p2; + const double d = p2(2.0, 2.0); + REQUIRE_EQUAL(4.0, d); + // Rope is not std::is_arithmetic + diff --git a/results/diffs/R987.txt b/results/diffs/R987.txt index a8facd4..cb496d4 100644 --- a/results/diffs/R987.txt +++ b/results/diffs/R987.txt @@ -1,18 +1 @@ -diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..800c318 100644 ---- a/RefactorTest/RenameCpp20Constraints.cpp -+++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -46,11 +46,11 @@ inline std::ostream &operator<<(std::ostream &str, const Rope &value) - // clang-format off - // Simple concept with single template parameter - // #TEST#: R987 Rename template parameter T --template -+template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Squareable = requires(Goink lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs +AWAITING TEST RESULTS diff --git a/results/diffs/R988.txt b/results/diffs/R988.txt index fad60ad..cb496d4 100644 --- a/results/diffs/R988.txt +++ b/results/diffs/R988.txt @@ -1,193 +1 @@ -diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..5328eef 100644 ---- a/RefactorTest/RenameCpp20Constraints.cpp -+++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,7 +50,7 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Goink = requires(T lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) - template - // #TEST#: R1003 Rename concept Squareable - // #TEST#: R1004 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1005 Rename first use of T - // #TEST#: R1006 Rename function square1 - // #TEST#: R1007 Rename second use of T -@@ -101,7 +101,7 @@ template - T square2(T value) - // #TEST#: R1016 Rename concept Squareable - // #TEST#: R1017 Rename use of T -- requires Squareable -+ requires Goink - { - // #TEST#: R1018 Rename first use of value - // #TEST#: R1019 Rename second use of value -@@ -114,7 +114,7 @@ template - // #TEST#: R1021 Rename first use of T - // #TEST#: R1022 Rename concept Squareable - // #TEST#: R1023 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1024 Rename first use of T - // #TEST#: R1025 Rename function square3 - // #TEST#: R1026 Rename second use of T -@@ -132,7 +132,7 @@ template - // #TEST#: R1031 Rename first use of T - // #TEST#: R1032 Rename concept Squareable - // #TEST#: R1033 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1034 Rename first use of T - // #TEST#: R1035 Rename function square4 - // #TEST#: R1036 Rename second use of T -@@ -155,7 +155,7 @@ T square5(T value) - // #TEST#: R1045 Rename first use of T - // #TEST#: R1046 Rename concept Squareable - // #TEST#: R1047 Rename second use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1048 Rename first use of value - // #TEST#: R1049 Rename second use of value -@@ -173,7 +173,7 @@ T square6(T value) - // #TEST#: R1055 Rename first use of T - // #TEST#: R1056 Rename concept Squareable - // #TEST#: R1057 Rename second use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1058 Rename first use of value - // #TEST#: R1059 Rename second use of value -@@ -187,7 +187,7 @@ template - // #TEST#: R1062 Rename second use of T - // #TEST#: R1063 Rename concept Squareable - // #TEST#: R1064 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1065 Rename first use of T - // #TEST#: R1066 Rename function square7 - // #TEST#: R1067 Rename second use of T -@@ -211,7 +211,7 @@ T square8(T value) - // #TEST#: R1077 Rename second use of T - // #TEST#: R1078 Rename concept Squareable - // #TEST#: R1079 Rename third use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - { - // #TEST#: R1080 Rename first use of value - // #TEST#: R1081 Rename second use of value -@@ -607,7 +607,7 @@ void f1() - template - // #TEST#: R1253 Rename concept Squareable - // #TEST#: R1254 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1255 Rename class Sqr1 - class Sqr1 - { -@@ -624,7 +624,7 @@ public: - template - // #TEST#: R1259 Rename concept Squareable - // #TEST#: R1260 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1261 Rename class SqrStruct1 - struct SqrStruct1 - { -@@ -640,7 +640,7 @@ struct SqrStruct1 - template - // #TEST#: R1265 Rename concept Squareable - // #TEST#: R1266 Rename use of T -- requires Squareable -+ requires Goink - // #TEST#: R1267 Rename class SqrUnion1 - union SqrUnion1 - { -@@ -657,7 +657,7 @@ union SqrUnion1 - template - // #TEST#: R1272 Rename concept Squareable - // #TEST#: R1273 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1274 Rename class Sqr2 - class Sqr2 - { -@@ -674,7 +674,7 @@ public: - template - // #TEST#: R1279 Rename concept Squareable - // #TEST#: R1280 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1281 Rename class SqrStruct2 - struct SqrStruct2 - { -@@ -690,7 +690,7 @@ struct SqrStruct2 - template - // #TEST#: R1286 Rename concept Squareable - // #TEST#: R1287 Rename use of T -- requires std::is_arithmetic_v || Squareable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1288 Rename class SqrUnion2 - union SqrUnion2 - { -@@ -707,7 +707,7 @@ union SqrUnion2 - template - // #TEST#: R1293 Rename concept Squareable - // #TEST#: R1294 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1295 Rename class Sqr3 - class Sqr3 - { -@@ -724,7 +724,7 @@ public: - template - // #TEST#: R1300 Rename concept Squareable - // #TEST#: R1301 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1302 Rename class SqrStruct3 - struct SqrStruct3 - { -@@ -740,7 +740,7 @@ struct SqrStruct3 - template - // #TEST#: R1307 Rename concept Squareable - // #TEST#: R1308 Rename use of T -- requires std::is_arithmetic_v && Squareable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1309 Rename class SqrUnion3 - union SqrUnion3 - { -@@ -757,7 +757,7 @@ union SqrUnion3 - template - // #TEST#: R1315 Rename concept Squareable - // #TEST#: R1316 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1317 Rename class Sqr4 - class Sqr4 - { -@@ -774,7 +774,7 @@ public: - template - // #TEST#: R1323 Rename concept Squareable - // #TEST#: R1324 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1325 Rename class SqrStruct4 - struct SqrStruct4 - { -@@ -790,7 +790,7 @@ struct SqrStruct4 - template - // #TEST#: R1331 Rename concept Squareable - // #TEST#: R1332 Rename use of T -- requires(std::is_integral_v || std::is_floating_point_v) && Squareable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - // #TEST#: R1333 Rename class SqrUnion4 - union SqrUnion4 - { +AWAITING TEST RESULTS diff --git a/results/diffs/R989.txt b/results/diffs/R989.txt index a8facd4..cb496d4 100644 --- a/results/diffs/R989.txt +++ b/results/diffs/R989.txt @@ -1,18 +1 @@ -diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..800c318 100644 ---- a/RefactorTest/RenameCpp20Constraints.cpp -+++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -46,11 +46,11 @@ inline std::ostream &operator<<(std::ostream &str, const Rope &value) - // clang-format off - // Simple concept with single template parameter - // #TEST#: R987 Rename template parameter T --template -+template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Squareable = requires(Goink lhs) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs +AWAITING TEST RESULTS diff --git a/results/diffs/R990.txt b/results/diffs/R990.txt index f291d77..cb496d4 100644 --- a/results/diffs/R990.txt +++ b/results/diffs/R990.txt @@ -1,18 +1 @@ -diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ba70fe1 100644 ---- a/RefactorTest/RenameCpp20Constraints.cpp -+++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,11 +50,11 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs --concept Squareable = requires(T lhs) -+concept Squareable = requires(T goink) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -- lhs * lhs; -+ goink * goink; - }; - - // Simple concept with multiple template parameters +AWAITING TEST RESULTS diff --git a/results/diffs/R991.txt b/results/diffs/R991.txt index f291d77..9eff4e7 100644 --- a/results/diffs/R991.txt +++ b/results/diffs/R991.txt @@ -1,18 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ba70fe1 100644 +index 024d6a2..800c318 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,11 +50,11 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs +@@ -46,11 +46,11 @@ inline std::ostream &operator<<(std::ostream &str, const Rope &value) + // clang-format off + // Simple concept with single template parameter + // #TEST#: R991 Rename template parameter T +-template ++template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs -concept Squareable = requires(T lhs) -+concept Squareable = requires(T goink) ++concept Squareable = requires(Goink lhs) { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -- lhs * lhs; -+ goink * goink; - }; - - // Simple concept with multiple template parameters + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs diff --git a/results/diffs/R992.txt b/results/diffs/R992.txt index f291d77..e0b28a0 100644 --- a/results/diffs/R992.txt +++ b/results/diffs/R992.txt @@ -1,18 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..ba70fe1 100644 +index 024d6a2..5328eef 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -50,11 +50,11 @@ template - // #TEST#: R988 Rename concept Squareable - // #TEST#: R989 Rename use of T - // #TEST#: R990 Rename parameter lhs +@@ -50,7 +50,7 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs -concept Squareable = requires(T lhs) -+concept Squareable = requires(T goink) - { - // #TEST#: R991 Rename first use of lhs - // #TEST#: R992 Rename second use of lhs -- lhs * lhs; -+ goink * goink; - }; - - // Simple concept with multiple template parameters ++concept Goink = requires(T lhs) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +@@ -79,7 +79,7 @@ concept Multiplicable = requires(T lhs, U rhs) + template + // #TEST#: R1007 Rename concept Squareable + // #TEST#: R1008 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1009 Rename first use of T + // #TEST#: R1010 Rename function square1 + // #TEST#: R1011 Rename second use of T +@@ -101,7 +101,7 @@ template + T square2(T value) + // #TEST#: R1020 Rename concept Squareable + // #TEST#: R1021 Rename use of T +- requires Squareable ++ requires Goink + { + // #TEST#: R1022 Rename first use of value + // #TEST#: R1023 Rename second use of value +@@ -114,7 +114,7 @@ template + // #TEST#: R1025 Rename first use of T + // #TEST#: R1026 Rename concept Squareable + // #TEST#: R1027 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1028 Rename first use of T + // #TEST#: R1029 Rename function square3 + // #TEST#: R1030 Rename second use of T +@@ -132,7 +132,7 @@ template + // #TEST#: R1035 Rename first use of T + // #TEST#: R1036 Rename concept Squareable + // #TEST#: R1037 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1038 Rename first use of T + // #TEST#: R1039 Rename function square4 + // #TEST#: R1040 Rename second use of T +@@ -155,7 +155,7 @@ T square5(T value) + // #TEST#: R1049 Rename first use of T + // #TEST#: R1050 Rename concept Squareable + // #TEST#: R1051 Rename second use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1052 Rename first use of value + // #TEST#: R1053 Rename second use of value +@@ -173,7 +173,7 @@ T square6(T value) + // #TEST#: R1059 Rename first use of T + // #TEST#: R1060 Rename concept Squareable + // #TEST#: R1061 Rename second use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1062 Rename first use of value + // #TEST#: R1063 Rename second use of value +@@ -187,7 +187,7 @@ template + // #TEST#: R1066 Rename second use of T + // #TEST#: R1067 Rename concept Squareable + // #TEST#: R1068 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1069 Rename first use of T + // #TEST#: R1070 Rename function square7 + // #TEST#: R1071 Rename second use of T +@@ -211,7 +211,7 @@ T square8(T value) + // #TEST#: R1081 Rename second use of T + // #TEST#: R1082 Rename concept Squareable + // #TEST#: R1083 Rename third use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + { + // #TEST#: R1084 Rename first use of value + // #TEST#: R1085 Rename second use of value +@@ -607,7 +607,7 @@ void f1() + template + // #TEST#: R1257 Rename concept Squareable + // #TEST#: R1258 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1259 Rename class Sqr1 + class Sqr1 + { +@@ -624,7 +624,7 @@ public: + template + // #TEST#: R1263 Rename concept Squareable + // #TEST#: R1264 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1265 Rename class SqrStruct1 + struct SqrStruct1 + { +@@ -640,7 +640,7 @@ struct SqrStruct1 + template + // #TEST#: R1269 Rename concept Squareable + // #TEST#: R1270 Rename use of T +- requires Squareable ++ requires Goink + // #TEST#: R1271 Rename class SqrUnion1 + union SqrUnion1 + { +@@ -657,7 +657,7 @@ union SqrUnion1 + template + // #TEST#: R1276 Rename concept Squareable + // #TEST#: R1277 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1278 Rename class Sqr2 + class Sqr2 + { +@@ -674,7 +674,7 @@ public: + template + // #TEST#: R1283 Rename concept Squareable + // #TEST#: R1284 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1285 Rename class SqrStruct2 + struct SqrStruct2 + { +@@ -690,7 +690,7 @@ struct SqrStruct2 + template + // #TEST#: R1290 Rename concept Squareable + // #TEST#: R1291 Rename use of T +- requires std::is_arithmetic_v || Squareable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1292 Rename class SqrUnion2 + union SqrUnion2 + { +@@ -707,7 +707,7 @@ union SqrUnion2 + template + // #TEST#: R1297 Rename concept Squareable + // #TEST#: R1298 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1299 Rename class Sqr3 + class Sqr3 + { +@@ -724,7 +724,7 @@ public: + template + // #TEST#: R1304 Rename concept Squareable + // #TEST#: R1305 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1306 Rename class SqrStruct3 + struct SqrStruct3 + { +@@ -740,7 +740,7 @@ struct SqrStruct3 + template + // #TEST#: R1311 Rename concept Squareable + // #TEST#: R1312 Rename use of T +- requires std::is_arithmetic_v && Squareable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1313 Rename class SqrUnion3 + union SqrUnion3 + { +@@ -757,7 +757,7 @@ union SqrUnion3 + template + // #TEST#: R1319 Rename concept Squareable + // #TEST#: R1320 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1321 Rename class Sqr4 + class Sqr4 + { +@@ -774,7 +774,7 @@ public: + template + // #TEST#: R1327 Rename concept Squareable + // #TEST#: R1328 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1329 Rename class SqrStruct4 + struct SqrStruct4 + { +@@ -790,7 +790,7 @@ struct SqrStruct4 + template + // #TEST#: R1335 Rename concept Squareable + // #TEST#: R1336 Rename use of T +- requires(std::is_integral_v || std::is_floating_point_v) && Squareable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + // #TEST#: R1337 Rename class SqrUnion4 + union SqrUnion4 + { diff --git a/results/diffs/R993.txt b/results/diffs/R993.txt index abea07a..9eff4e7 100644 --- a/results/diffs/R993.txt +++ b/results/diffs/R993.txt @@ -1,20 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..9fcf33d 100644 +index 024d6a2..800c318 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -60,13 +60,13 @@ concept Squareable = requires(T lhs) - // Simple concept with multiple template parameters - // #TEST#: R993 Rename template parameter T - // #TEST#: R994 Rename template parameter U --template -+template - // #TEST#: R995 Rename concept Multiplicable - // #TEST#: R996 Rename use of T - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Multiplicable = requires(Goink lhs, U rhs) +@@ -46,11 +46,11 @@ inline std::ostream &operator<<(std::ostream &str, const Rope &value) + // clang-format off + // Simple concept with single template parameter + // #TEST#: R991 Rename template parameter T +-template ++template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Squareable = requires(Goink lhs) { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs diff --git a/results/diffs/R994.txt b/results/diffs/R994.txt index 00be10a..78dbb66 100644 --- a/results/diffs/R994.txt +++ b/results/diffs/R994.txt @@ -1,20 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..da1bd41 100644 +index 024d6a2..ba70fe1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -60,13 +60,13 @@ concept Squareable = requires(T lhs) - // Simple concept with multiple template parameters - // #TEST#: R993 Rename template parameter T - // #TEST#: R994 Rename template parameter U --template -+template - // #TEST#: R995 Rename concept Multiplicable - // #TEST#: R996 Rename use of T - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Multiplicable = requires(T lhs, Goink rhs) +@@ -50,11 +50,11 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Squareable = requires(T goink) { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +- lhs * lhs; ++ goink * goink; + }; + + // Simple concept with multiple template parameters diff --git a/results/diffs/R995.txt b/results/diffs/R995.txt index 13a8d1e..78dbb66 100644 --- a/results/diffs/R995.txt +++ b/results/diffs/R995.txt @@ -1,193 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..f44d43b 100644 +index 024d6a2..ba70fe1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,7 +66,7 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Goink = requires(T lhs, U rhs) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -@@ -226,7 +226,7 @@ template - // #TEST#: R1085 Rename concept Multiplicable - // #TEST#: R1086 Rename use of T - // #TEST#: R1087 Rename use of U -- requires Multiplicable -+ requires Goink - // #TEST#: R1088 Rename function product1 - // #TEST#: R1089 Rename use of T - // #TEST#: R1090 Rename parameter lhs -@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1107 Rename concept Multiplicable - // #TEST#: R1108 Rename use of T - // #TEST#: R1109 Rename use of U -- requires Multiplicable -+ requires Goink - { - // #TEST#: R1110 Rename use of lhs - // #TEST#: R1111 Rename use of rhs -@@ -273,7 +273,7 @@ template - // #TEST#: R1116 Rename concept Multiplicable - // #TEST#: R1117 Rename second use of T - // #TEST#: R1118 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - // #TEST#: R1119 Rename function product3 - // #TEST#: R1120 Rename use of T - // #TEST#: R1121 Rename parameter lhs -@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1139 Rename concept Multiplicable - // #TEST#: R1140 Rename second use of T - // #TEST#: R1141 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - { - // #TEST#: R1142 Rename use of lhs - // #TEST#: R1143 Rename use of rhs -@@ -321,7 +321,7 @@ template - // #TEST#: R1148 Rename concept Multiplicable - // #TEST#: R1149 Rename second use of T - // #TEST#: R1150 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - // #TEST#: R1151 Rename function product5 - // #TEST#: R1152 Rename use of T - // #TEST#: R1153 Rename parameter lhs -@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1171 Rename concept Multiplicable - // #TEST#: R1172 Rename second use of T - // #TEST#: R1173 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - { - // #TEST#: R1174 Rename use of lhs - // #TEST#: R1175 Rename use of rhs -@@ -370,7 +370,7 @@ template - // #TEST#: R1181 Rename concept Multiplicable - // #TEST#: R1182 Rename second use of T - // #TEST#: R1183 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - // #TEST#: R1184 Rename function product7 - // #TEST#: R1185 Rename use of T - // #TEST#: R1186 Rename parameter lhs -@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) - // #TEST#: R1205 Rename concept Multiplicable - // #TEST#: R1206 Rename second use of T - // #TEST#: R1207 Rename second use of U -- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable -+ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink - { - // #TEST#: R1208 Rename use of lhs - // #TEST#: R1209 Rename use of rhs -@@ -809,7 +809,7 @@ template - // #TEST#: R1339 Rename concept Multiplicable - // #TEST#: R1340 Rename use of T - // #TEST#: R1341 Rename use of U -- requires Multiplicable -+ requires Goink - class Product1 - { - public: -@@ -833,7 +833,7 @@ template - // #TEST#: R1353 Rename concept Multiplicable - // #TEST#: R1354 Rename use of T - // #TEST#: R1355 Rename use of U -- requires Multiplicable -+ requires Goink - struct ProductStruct1 - { - // #TEST#: R1356 Rename use of T -@@ -856,7 +856,7 @@ template - // #TEST#: R1367 Rename concept Multiplicable - // #TEST#: R1368 Rename use of T - // #TEST#: R1369 Rename use of U -- requires Multiplicable -+ requires Goink - union ProductUnion1 - { - // #TEST#: R1370 Rename use of T -@@ -881,7 +881,7 @@ template - // #TEST#: R1381 Rename first use of T - // #TEST#: R1383 Rename second use of T - // #TEST#: R1384 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - class Product2 - { - public: -@@ -906,7 +906,7 @@ template - // #TEST#: R1396 Rename first use of T - // #TEST#: R1398 Rename second use of T - // #TEST#: R1399 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - struct ProductStruct2 - { - // #TEST#: R1400 Rename use of T -@@ -930,7 +930,7 @@ template - // #TEST#: R1411 Rename first use of T - // #TEST#: R1413 Rename second use of T - // #TEST#: R1414 Rename use of U -- requires std::is_arithmetic_v || Multiplicable -+ requires std::is_arithmetic_v || Goink - union ProductUnion2 - { - // #TEST#: R1415 Rename use of T -@@ -955,7 +955,7 @@ template - // #TEST#: R1426 Rename first use of T - // #TEST#: R1428 Rename second use of T - // #TEST#: R1429 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - class Product3 - { - public: -@@ -980,7 +980,7 @@ template - // #TEST#: R1441 Rename first use of T - // #TEST#: R1443 Rename second use of T - // #TEST#: R1444 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - struct ProductStruct3 - { - // #TEST#: R1445 Rename use of T -@@ -1004,7 +1004,7 @@ template - // #TEST#: R1456 Rename first use of T - // #TEST#: R1458 Rename second use of T - // #TEST#: R1459 Rename use of U -- requires std::is_arithmetic_v && Multiplicable -+ requires std::is_arithmetic_v && Goink - union ProductUnion3 - { - // #TEST#: R1460 Rename use of T -@@ -1030,7 +1030,7 @@ template - // #TEST#: R1472 Rename second use of T - // #TEST#: R1474 Rename third use of T - // #TEST#: R1475 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - class Product4 - { - public: -@@ -1056,7 +1056,7 @@ template - // #TEST#: R1488 Rename second use of T - // #TEST#: R1490 Rename third use of T - // #TEST#: R1491 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - struct ProductStruct4 - { - // #TEST#: R1492 Rename use of T -@@ -1081,7 +1081,7 @@ template - // #TEST#: R1504 Rename second use of T - // #TEST#: R1506 Rename third use of T - // #TEST#: R1507 Rename use of U -- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable -+ requires(std::is_integral_v || std::is_floating_point_v) && Goink - union ProductUnion4 - { - // #TEST#: R1508 Rename use of T +@@ -50,11 +50,11 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Squareable = requires(T goink) + { + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +- lhs * lhs; ++ goink * goink; + }; + + // Simple concept with multiple template parameters diff --git a/results/diffs/R996.txt b/results/diffs/R996.txt index abea07a..78dbb66 100644 --- a/results/diffs/R996.txt +++ b/results/diffs/R996.txt @@ -1,20 +1,18 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..9fcf33d 100644 +index 024d6a2..ba70fe1 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -60,13 +60,13 @@ concept Squareable = requires(T lhs) - // Simple concept with multiple template parameters - // #TEST#: R993 Rename template parameter T - // #TEST#: R994 Rename template parameter U --template -+template - // #TEST#: R995 Rename concept Multiplicable - // #TEST#: R996 Rename use of T - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs --concept Multiplicable = requires(T lhs, U rhs) -+concept Multiplicable = requires(Goink lhs, U rhs) +@@ -50,11 +50,11 @@ template + // #TEST#: R992 Rename concept Squareable + // #TEST#: R993 Rename use of T + // #TEST#: R994 Rename parameter lhs +-concept Squareable = requires(T lhs) ++concept Squareable = requires(T goink) { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs + // #TEST#: R995 Rename first use of lhs + // #TEST#: R996 Rename second use of lhs +- lhs * lhs; ++ goink * goink; + }; + + // Simple concept with multiple template parameters diff --git a/results/diffs/R997.txt b/results/diffs/R997.txt index 056a405..1332e90 100644 --- a/results/diffs/R997.txt +++ b/results/diffs/R997.txt @@ -1,18 +1,20 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..2400686 100644 +index 024d6a2..9fcf33d 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,11 +66,11 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs +@@ -60,13 +60,13 @@ concept Squareable = requires(T lhs) + // Simple concept with multiple template parameters + // #TEST#: R997 Rename template parameter T + // #TEST#: R998 Rename template parameter U +-template ++template + // #TEST#: R999 Rename concept Multiplicable + // #TEST#: R1000 Rename use of T + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs -concept Multiplicable = requires(T lhs, U rhs) -+concept Multiplicable = requires(T goink, U rhs) ++concept Multiplicable = requires(Goink lhs, U rhs) { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -- lhs * rhs; -+ goink * rhs; - }; - // clang-format on - + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs diff --git a/results/diffs/R998.txt b/results/diffs/R998.txt index 00be10a..c8706c0 100644 --- a/results/diffs/R998.txt +++ b/results/diffs/R998.txt @@ -4,17 +4,17 @@ index 024d6a2..da1bd41 100644 +++ b/RefactorTest/RenameCpp20Constraints.cpp @@ -60,13 +60,13 @@ concept Squareable = requires(T lhs) // Simple concept with multiple template parameters - // #TEST#: R993 Rename template parameter T - // #TEST#: R994 Rename template parameter U + // #TEST#: R997 Rename template parameter T + // #TEST#: R998 Rename template parameter U -template +template - // #TEST#: R995 Rename concept Multiplicable - // #TEST#: R996 Rename use of T - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs + // #TEST#: R999 Rename concept Multiplicable + // #TEST#: R1000 Rename use of T + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs -concept Multiplicable = requires(T lhs, U rhs) +concept Multiplicable = requires(T lhs, Goink rhs) { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs diff --git a/results/diffs/R999.txt b/results/diffs/R999.txt index b001c49..1d062b9 100644 --- a/results/diffs/R999.txt +++ b/results/diffs/R999.txt @@ -1,18 +1,193 @@ diff --git a/RefactorTest/RenameCpp20Constraints.cpp b/RefactorTest/RenameCpp20Constraints.cpp -index 024d6a2..35ef80b 100644 +index 024d6a2..f44d43b 100644 --- a/RefactorTest/RenameCpp20Constraints.cpp +++ b/RefactorTest/RenameCpp20Constraints.cpp -@@ -66,11 +66,11 @@ template - // #TEST#: R997 Rename parameter lhs - // #TEST#: R998 Rename use of U - // #TEST#: R999 Rename parameter rhs +@@ -66,7 +66,7 @@ template + // #TEST#: R1001 Rename parameter lhs + // #TEST#: R1002 Rename use of U + // #TEST#: R1003 Rename parameter rhs -concept Multiplicable = requires(T lhs, U rhs) -+concept Multiplicable = requires(T lhs, U goink) - { - // #TEST#: R1000 Rename use of lhs - // #TEST#: R1001 Rename use of rhs -- lhs * rhs; -+ lhs * goink; - }; - // clang-format on - ++concept Goink = requires(T lhs, U rhs) + { + // #TEST#: R1004 Rename use of lhs + // #TEST#: R1005 Rename use of rhs +@@ -226,7 +226,7 @@ template + // #TEST#: R1089 Rename concept Multiplicable + // #TEST#: R1090 Rename use of T + // #TEST#: R1091 Rename use of U +- requires Multiplicable ++ requires Goink + // #TEST#: R1092 Rename function product1 + // #TEST#: R1093 Rename use of T + // #TEST#: R1094 Rename parameter lhs +@@ -257,7 +257,7 @@ auto product2(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1111 Rename concept Multiplicable + // #TEST#: R1112 Rename use of T + // #TEST#: R1113 Rename use of U +- requires Multiplicable ++ requires Goink + { + // #TEST#: R1114 Rename use of lhs + // #TEST#: R1115 Rename use of rhs +@@ -273,7 +273,7 @@ template + // #TEST#: R1120 Rename concept Multiplicable + // #TEST#: R1121 Rename second use of T + // #TEST#: R1122 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + // #TEST#: R1123 Rename function product3 + // #TEST#: R1124 Rename use of T + // #TEST#: R1125 Rename parameter lhs +@@ -305,7 +305,7 @@ auto product4(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1143 Rename concept Multiplicable + // #TEST#: R1144 Rename second use of T + // #TEST#: R1145 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + { + // #TEST#: R1146 Rename use of lhs + // #TEST#: R1147 Rename use of rhs +@@ -321,7 +321,7 @@ template + // #TEST#: R1152 Rename concept Multiplicable + // #TEST#: R1153 Rename second use of T + // #TEST#: R1154 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + // #TEST#: R1155 Rename function product5 + // #TEST#: R1156 Rename use of T + // #TEST#: R1157 Rename parameter lhs +@@ -353,7 +353,7 @@ auto product6(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1175 Rename concept Multiplicable + // #TEST#: R1176 Rename second use of T + // #TEST#: R1177 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + { + // #TEST#: R1178 Rename use of lhs + // #TEST#: R1179 Rename use of rhs +@@ -370,7 +370,7 @@ template + // #TEST#: R1185 Rename concept Multiplicable + // #TEST#: R1186 Rename second use of T + // #TEST#: R1187 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + // #TEST#: R1188 Rename function product7 + // #TEST#: R1189 Rename use of T + // #TEST#: R1190 Rename parameter lhs +@@ -403,7 +403,7 @@ auto product8(T lhs, U rhs) -> decltype(lhs * rhs) + // #TEST#: R1209 Rename concept Multiplicable + // #TEST#: R1210 Rename second use of T + // #TEST#: R1211 Rename second use of U +- requires(std::is_arithmetic_v && std::is_arithmetic_v) || Multiplicable ++ requires(std::is_arithmetic_v && std::is_arithmetic_v) || Goink + { + // #TEST#: R1212 Rename use of lhs + // #TEST#: R1213 Rename use of rhs +@@ -809,7 +809,7 @@ template + // #TEST#: R1343 Rename concept Multiplicable + // #TEST#: R1344 Rename use of T + // #TEST#: R1345 Rename use of U +- requires Multiplicable ++ requires Goink + class Product1 + { + public: +@@ -833,7 +833,7 @@ template + // #TEST#: R1357 Rename concept Multiplicable + // #TEST#: R1358 Rename use of T + // #TEST#: R1359 Rename use of U +- requires Multiplicable ++ requires Goink + struct ProductStruct1 + { + // #TEST#: R1360 Rename use of T +@@ -856,7 +856,7 @@ template + // #TEST#: R1371 Rename concept Multiplicable + // #TEST#: R1372 Rename use of T + // #TEST#: R1373 Rename use of U +- requires Multiplicable ++ requires Goink + union ProductUnion1 + { + // #TEST#: R1374 Rename use of T +@@ -881,7 +881,7 @@ template + // #TEST#: R1385 Rename first use of T + // #TEST#: R1387 Rename second use of T + // #TEST#: R1388 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + class Product2 + { + public: +@@ -906,7 +906,7 @@ template + // #TEST#: R1400 Rename first use of T + // #TEST#: R1402 Rename second use of T + // #TEST#: R1403 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + struct ProductStruct2 + { + // #TEST#: R1404 Rename use of T +@@ -930,7 +930,7 @@ template + // #TEST#: R1415 Rename first use of T + // #TEST#: R1417 Rename second use of T + // #TEST#: R1418 Rename use of U +- requires std::is_arithmetic_v || Multiplicable ++ requires std::is_arithmetic_v || Goink + union ProductUnion2 + { + // #TEST#: R1419 Rename use of T +@@ -955,7 +955,7 @@ template + // #TEST#: R1430 Rename first use of T + // #TEST#: R1432 Rename second use of T + // #TEST#: R1433 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + class Product3 + { + public: +@@ -980,7 +980,7 @@ template + // #TEST#: R1445 Rename first use of T + // #TEST#: R1447 Rename second use of T + // #TEST#: R1448 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + struct ProductStruct3 + { + // #TEST#: R1449 Rename use of T +@@ -1004,7 +1004,7 @@ template + // #TEST#: R1460 Rename first use of T + // #TEST#: R1462 Rename second use of T + // #TEST#: R1463 Rename use of U +- requires std::is_arithmetic_v && Multiplicable ++ requires std::is_arithmetic_v && Goink + union ProductUnion3 + { + // #TEST#: R1464 Rename use of T +@@ -1030,7 +1030,7 @@ template + // #TEST#: R1476 Rename second use of T + // #TEST#: R1478 Rename third use of T + // #TEST#: R1479 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + class Product4 + { + public: +@@ -1056,7 +1056,7 @@ template + // #TEST#: R1492 Rename second use of T + // #TEST#: R1494 Rename third use of T + // #TEST#: R1495 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + struct ProductStruct4 + { + // #TEST#: R1496 Rename use of T +@@ -1081,7 +1081,7 @@ template + // #TEST#: R1508 Rename second use of T + // #TEST#: R1510 Rename third use of T + // #TEST#: R1511 Rename use of U +- requires(std::is_integral_v || std::is_floating_point_v) && Multiplicable ++ requires(std::is_integral_v || std::is_floating_point_v) && Goink + union ProductUnion4 + { + // #TEST#: R1512 Rename use of T diff --git a/results/preliminary/AppleXcodeResults.md b/results/preliminary/AppleXcodeResults.md index 1e535b3..5ea6bbb 100644 --- a/results/preliminary/AppleXcodeResults.md +++ b/results/preliminary/AppleXcodeResults.md @@ -1590,3 +1590,7 @@ R1572 | R1573 | R1574 | R1575 | +R1576 | +R1577 | +R1578 | +R1579 | diff --git a/results/preliminary/EclipseCDTResults.md b/results/preliminary/EclipseCDTResults.md index dcaf415..b6044f8 100644 --- a/results/preliminary/EclipseCDTResults.md +++ b/results/preliminary/EclipseCDTResults.md @@ -1887,3 +1887,7 @@ R1572 | R1573 | R1574 | R1575 | +R1576 | +R1577 | +R1578 | +R1579 | diff --git a/results/preliminary/QtCreatorResults.md b/results/preliminary/QtCreatorResults.md index fb15697..6116dd0 100644 --- a/results/preliminary/QtCreatorResults.md +++ b/results/preliminary/QtCreatorResults.md @@ -1591,3 +1591,7 @@ R1572 | R1573 | R1574 | R1575 | +R1576 | +R1577 | +R1578 | +R1579 | diff --git a/results/preliminary/annotated/AppleXcodeResults.md b/results/preliminary/annotated/AppleXcodeResults.md index 5d6a708..c47452f 100644 --- a/results/preliminary/annotated/AppleXcodeResults.md +++ b/results/preliminary/annotated/AppleXcodeResults.md @@ -1001,592 +1001,596 @@ R983 | | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/ref 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 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) -R1242 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) -R1243 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) -R1244 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) -R1245 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) -R1246 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) -R1247 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) -R1248 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) -R1249 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) -R1250 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) -R1251 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) -R1252 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [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 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) -R1255 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [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 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) -R1258 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [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 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) -R1261 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [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 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) -R1264 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [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 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) -R1267 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [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 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) -R1270 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [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 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) -R1273 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) -R1274 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) -R1275 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) -R1276 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) -R1277 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) -R1278 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) -R1279 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) -R1280 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) -R1281 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) -R1282 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) -R1283 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) -R1284 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) -R1285 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) -R1286 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) -R1287 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) -R1288 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) -R1289 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) -R1290 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) -R1291 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) -R1292 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) -R1293 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) -R1294 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) -R1295 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) -R1296 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) -R1297 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) -R1298 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) -R1299 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) -R1300 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) -R1301 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) -R1302 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) -R1303 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) -R1304 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) -R1305 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) -R1306 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) -R1307 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) -R1308 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) -R1309 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) -R1310 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) -R1311 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) -R1312 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) -R1313 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) -R1314 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) -R1315 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) -R1316 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) -R1317 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) -R1318 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) -R1319 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) -R1320 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) -R1321 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) -R1322 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) -R1323 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) -R1324 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) -R1325 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) -R1326 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) -R1327 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) -R1328 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) -R1329 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) -R1330 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) -R1331 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) -R1332 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) -R1333 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) -R1334 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) -R1335 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) -R1336 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) -R1337 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) -R1338 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) -R1339 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) -R1340 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) -R1341 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) -R1342 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) -R1343 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) -R1344 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) -R1345 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) -R1346 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) -R1347 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) -R1348 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) -R1349 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) -R1350 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) -R1351 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) -R1352 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) -R1353 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) -R1354 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) -R1355 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) -R1356 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) -R1357 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) -R1358 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) -R1359 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) -R1360 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) -R1361 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) -R1362 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) -R1363 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) -R1364 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) -R1365 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) -R1366 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) -R1367 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) -R1368 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) -R1369 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) -R1370 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) -R1371 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) -R1372 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) -R1373 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) -R1374 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) -R1375 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) -R1376 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) -R1377 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) -R1378 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) -R1379 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) -R1380 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) -R1381 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) -R1382 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) -R1383 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) -R1384 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) -R1385 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) -R1386 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) -R1387 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) -R1388 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) -R1389 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) -R1390 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) -R1391 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) -R1392 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) -R1393 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) -R1394 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) -R1395 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) -R1396 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) -R1397 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) -R1398 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) -R1399 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) -R1400 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) -R1401 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) -R1402 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) -R1403 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) -R1404 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) -R1405 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) -R1406 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) -R1407 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) -R1408 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) -R1409 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) -R1410 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) -R1411 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) -R1412 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) -R1413 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) -R1414 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) -R1415 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) -R1416 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) -R1417 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) -R1418 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) -R1419 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) -R1420 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) -R1421 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) -R1422 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) -R1423 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) -R1424 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) -R1425 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) -R1426 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) -R1427 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) -R1428 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) -R1429 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) -R1430 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) -R1431 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) -R1432 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) -R1433 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) -R1434 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) -R1435 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) -R1436 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) -R1437 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) -R1438 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) -R1439 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) -R1440 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) -R1441 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) -R1442 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) -R1443 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) -R1444 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) -R1445 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) -R1446 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) -R1447 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) -R1448 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) -R1449 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) -R1450 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) -R1451 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) -R1452 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) -R1453 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) -R1454 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) -R1455 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) -R1456 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) -R1457 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) -R1458 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) -R1459 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) -R1460 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) -R1461 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) -R1462 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) -R1463 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) -R1464 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) -R1465 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) -R1466 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) -R1467 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) -R1468 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) -R1469 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) -R1470 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) -R1471 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) -R1472 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) -R1473 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) -R1474 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) -R1475 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) -R1476 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) -R1477 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) -R1478 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) -R1479 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) -R1480 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) -R1481 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) -R1482 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) -R1483 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) -R1484 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) -R1485 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) -R1486 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) -R1487 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) -R1488 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) -R1489 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) -R1490 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) -R1491 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) -R1492 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) -R1493 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) -R1494 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) -R1495 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) -R1496 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) -R1497 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) -R1498 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) -R1499 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) -R1500 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) -R1501 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) -R1502 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) -R1503 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) -R1504 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) -R1505 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) -R1506 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) -R1507 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) -R1508 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) -R1509 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) -R1510 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) -R1511 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) -R1512 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) -R1513 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) -R1514 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) -R1515 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) -R1516 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) -R1517 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) -R1518 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) -R1519 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) -R1520 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) -R1521 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) -R1522 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) -R1523 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) -R1524 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) -R1525 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) -R1526 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) -R1527 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) -R1528 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) -R1529 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) -R1530 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) -R1531 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) -R1532 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) -R1533 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) -R1534 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) -R1535 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) -R1536 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) -R1537 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) -R1538 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) -R1539 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) -R1540 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) -R1541 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) -R1542 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) -R1543 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) -R1544 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) -R1545 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) -R1546 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) -R1547 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) -R1548 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) -R1549 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) -R1550 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) -R1551 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) -R1552 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) -R1553 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) -R1554 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) -R1555 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) -R1556 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) -R1557 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) -R1558 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) -R1559 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) -R1560 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) -R1561 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) -R1562 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) -R1563 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) -R1564 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) -R1565 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) -R1566 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) -R1567 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) -R1568 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) -R1569 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) -R1570 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) -R1571 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) -R1572 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) -R1573 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) -R1574 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) -R1575 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) +R987 | +R988 | +R989 | +R990 | +R991 | | [`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) +R992 | | [`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) +R993 | | [`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) +R994 | | [`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) +R995 | | [`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) +R996 | | [`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) +R997 | | [`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) +R998 | | [`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) +R999 | | [`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) +R1000 | | [`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) +R1001 | | [`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) +R1002 | | [`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) +R1003 | | [`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) +R1004 | | [`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) +R1005 | | [`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) +R1006 | | [`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) +R1007 | | [`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) +R1008 | | [`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) +R1009 | | [`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) +R1010 | | [`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) +R1011 | | [`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) +R1012 | | [`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) +R1013 | | [`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) +R1014 | | [`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) +R1015 | | [`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) +R1016 | | [`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) +R1017 | | [`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) +R1018 | | [`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) +R1019 | | [`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) +R1020 | | [`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) +R1021 | | [`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) +R1022 | | [`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) +R1023 | | [`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) +R1024 | | [`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) +R1025 | | [`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) +R1026 | | [`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) +R1027 | | [`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) +R1028 | | [`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) +R1029 | | [`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) +R1030 | | [`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) +R1031 | | [`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) +R1032 | | [`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) +R1033 | | [`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) +R1034 | | [`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) +R1035 | | [`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) +R1036 | | [`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) +R1037 | | [`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) +R1038 | | [`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) +R1039 | | [`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) +R1040 | | [`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) +R1041 | | [`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) +R1042 | | [`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) +R1043 | | [`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) +R1044 | | [`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) +R1045 | | [`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) +R1046 | | [`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) +R1047 | | [`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) +R1048 | | [`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) +R1049 | | [`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) +R1050 | | [`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) +R1051 | | [`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) +R1052 | | [`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) +R1053 | | [`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) +R1054 | | [`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) +R1055 | | [`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) +R1056 | | [`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) +R1057 | | [`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) +R1058 | | [`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) +R1059 | | [`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) +R1060 | | [`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) +R1061 | | [`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) +R1062 | | [`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) +R1063 | | [`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) +R1064 | | [`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) +R1065 | | [`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) +R1066 | | [`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) +R1067 | | [`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) +R1068 | | [`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) +R1069 | | [`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) +R1070 | | [`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) +R1071 | | [`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) +R1072 | | [`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) +R1073 | | [`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) +R1074 | | [`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) +R1075 | | [`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) +R1076 | | [`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) +R1077 | | [`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) +R1078 | | [`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) +R1079 | | [`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) +R1080 | | [`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) +R1081 | | [`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) +R1082 | | [`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) +R1083 | | [`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) +R1084 | | [`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) +R1085 | | [`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) +R1086 | | [`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) +R1087 | | [`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) +R1088 | | [`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) +R1089 | | [`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) +R1090 | | [`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) +R1091 | | [`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) +R1092 | | [`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) +R1093 | | [`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) +R1094 | | [`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) +R1095 | | [`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) +R1096 | | [`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) +R1097 | | [`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) +R1098 | | [`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) +R1099 | | [`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) +R1100 | | [`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) +R1101 | | [`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) +R1102 | | [`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) +R1103 | | [`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) +R1104 | | [`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) +R1105 | | [`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) +R1106 | | [`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) +R1107 | | [`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) +R1108 | | [`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) +R1109 | | [`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) +R1110 | | [`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) +R1111 | | [`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) +R1112 | | [`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) +R1113 | | [`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) +R1114 | | [`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) +R1115 | | [`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) +R1116 | | [`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) +R1117 | | [`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) +R1118 | | [`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) +R1119 | | [`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) +R1120 | | [`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) +R1121 | | [`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) +R1122 | | [`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) +R1123 | | [`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) +R1124 | | [`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) +R1125 | | [`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) +R1126 | | [`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) +R1127 | | [`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) +R1128 | | [`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) +R1129 | | [`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) +R1130 | | [`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) +R1131 | | [`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) +R1132 | | [`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) +R1133 | | [`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) +R1134 | | [`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) +R1135 | | [`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) +R1136 | | [`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) +R1137 | | [`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) +R1138 | | [`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) +R1139 | | [`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) +R1140 | | [`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) +R1141 | | [`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) +R1142 | | [`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) +R1143 | | [`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) +R1144 | | [`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) +R1145 | | [`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) +R1146 | | [`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) +R1147 | | [`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) +R1148 | | [`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) +R1149 | | [`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) +R1150 | | [`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) +R1151 | | [`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) +R1152 | | [`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) +R1153 | | [`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) +R1154 | | [`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) +R1155 | | [`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) +R1156 | | [`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) +R1157 | | [`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) +R1158 | | [`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) +R1159 | | [`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) +R1160 | | [`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) +R1161 | | [`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) +R1162 | | [`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) +R1163 | | [`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) +R1164 | | [`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) +R1165 | | [`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) +R1166 | | [`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) +R1167 | | [`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) +R1168 | | [`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) +R1169 | | [`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) +R1170 | | [`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) +R1171 | | [`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) +R1172 | | [`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) +R1173 | | [`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) +R1174 | | [`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) +R1175 | | [`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) +R1176 | | [`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) +R1177 | | [`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) +R1178 | | [`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) +R1179 | | [`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) +R1180 | | [`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) +R1181 | | [`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) +R1182 | | [`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) +R1183 | | [`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) +R1184 | | [`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) +R1185 | | [`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) +R1186 | | [`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) +R1187 | | [`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) +R1188 | | [`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) +R1189 | | [`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) +R1190 | | [`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) +R1191 | | [`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) +R1192 | | [`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) +R1193 | | [`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) +R1194 | | [`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) +R1195 | | [`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) +R1196 | | [`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) +R1197 | | [`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) +R1198 | | [`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) +R1199 | | [`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) +R1200 | | [`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) +R1201 | | [`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) +R1202 | | [`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) +R1203 | | [`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) +R1204 | | [`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) +R1205 | | [`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) +R1206 | | [`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) +R1207 | | [`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) +R1208 | | [`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) +R1209 | | [`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) +R1210 | | [`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) +R1211 | | [`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) +R1212 | | [`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) +R1213 | | [`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) +R1214 | | [`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) +R1215 | | [`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) +R1216 | | [`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) +R1217 | | [`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) +R1218 | | [`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) +R1219 | | [`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) +R1220 | | [`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) +R1221 | | [`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) +R1222 | | [`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) +R1223 | | [`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) +R1224 | | [`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) +R1225 | | [`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) +R1226 | | [`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) +R1227 | | [`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) +R1228 | | [`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) +R1229 | | [`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) +R1230 | | [`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) +R1231 | | [`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) +R1232 | | [`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) +R1233 | | [`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) +R1234 | | [`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) +R1235 | | [`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) +R1236 | | [`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) +R1237 | | [`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) +R1238 | | [`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) +R1239 | | [`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) +R1240 | | [`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) +R1241 | | [`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) +R1242 | | [`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) +R1243 | | [`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) +R1244 | | [`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) +R1245 | | [`RenameCpp20Constraints.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1257 | | [`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) +R1258 | | [`RenameCpp20Constraints.cpp`, line 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1260 | | [`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) +R1261 | | [`RenameCpp20Constraints.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1263 | | [`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) +R1264 | | [`RenameCpp20Constraints.cpp`, line 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1266 | | [`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) +R1267 | | [`RenameCpp20Constraints.cpp`, line 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1269 | | [`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) +R1270 | | [`RenameCpp20Constraints.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1272 | | [`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) +R1273 | | [`RenameCpp20Constraints.cpp`, line 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1275 | | [`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) +R1276 | | [`RenameCpp20Constraints.cpp`, line 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1521 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1522 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1523 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1524 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) +R1525 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) +R1526 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) +R1527 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) +R1528 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) +R1529 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) +R1530 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) +R1531 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) +R1532 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) +R1533 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) +R1534 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) +R1535 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) +R1536 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) +R1537 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) +R1538 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) +R1539 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) +R1540 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) +R1541 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) +R1542 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) +R1543 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) +R1544 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) +R1545 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) +R1546 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) +R1547 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) +R1548 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) +R1549 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) +R1550 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) +R1551 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) +R1552 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) +R1553 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) +R1554 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) +R1555 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) +R1556 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) +R1557 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) +R1558 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) +R1559 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) +R1560 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) +R1561 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) +R1562 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) +R1563 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) +R1564 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) +R1565 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) +R1566 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) +R1567 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) +R1568 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) +R1569 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) +R1570 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) +R1571 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) +R1572 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) +R1573 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) +R1574 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) +R1575 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) +R1576 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) +R1577 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) +R1578 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) +R1579 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) diff --git a/results/preliminary/annotated/EclipseCDTResults.md b/results/preliminary/annotated/EclipseCDTResults.md index deb6192..e84739d 100644 --- a/results/preliminary/annotated/EclipseCDTResults.md +++ b/results/preliminary/annotated/EclipseCDTResults.md @@ -1298,592 +1298,596 @@ R983 | | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/ref 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 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) -R1242 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) -R1243 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) -R1244 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) -R1245 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) -R1246 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) -R1247 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) -R1248 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) -R1249 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) -R1250 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) -R1251 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) -R1252 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [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 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) -R1255 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [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 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) -R1258 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [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 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) -R1261 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [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 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) -R1264 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [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 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) -R1267 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [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 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) -R1270 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [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 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) -R1273 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) -R1274 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) -R1275 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) -R1276 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) -R1277 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) -R1278 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) -R1279 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) -R1280 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) -R1281 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) -R1282 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) -R1283 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) -R1284 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) -R1285 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) -R1286 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) -R1287 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) -R1288 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) -R1289 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) -R1290 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) -R1291 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) -R1292 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) -R1293 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) -R1294 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) -R1295 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) -R1296 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) -R1297 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) -R1298 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) -R1299 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) -R1300 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) -R1301 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) -R1302 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) -R1303 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) -R1304 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) -R1305 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) -R1306 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) -R1307 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) -R1308 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) -R1309 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) -R1310 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) -R1311 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) -R1312 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) -R1313 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) -R1314 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) -R1315 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) -R1316 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) -R1317 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) -R1318 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) -R1319 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) -R1320 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) -R1321 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) -R1322 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) -R1323 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) -R1324 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) -R1325 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) -R1326 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) -R1327 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) -R1328 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) -R1329 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) -R1330 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) -R1331 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) -R1332 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) -R1333 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) -R1334 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) -R1335 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) -R1336 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) -R1337 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) -R1338 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) -R1339 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) -R1340 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) -R1341 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) -R1342 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) -R1343 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) -R1344 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) -R1345 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) -R1346 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) -R1347 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) -R1348 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) -R1349 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) -R1350 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) -R1351 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) -R1352 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) -R1353 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) -R1354 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) -R1355 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) -R1356 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) -R1357 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) -R1358 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) -R1359 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) -R1360 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) -R1361 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) -R1362 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) -R1363 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) -R1364 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) -R1365 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) -R1366 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) -R1367 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) -R1368 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) -R1369 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) -R1370 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) -R1371 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) -R1372 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) -R1373 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) -R1374 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) -R1375 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) -R1376 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) -R1377 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) -R1378 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) -R1379 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) -R1380 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) -R1381 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) -R1382 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) -R1383 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) -R1384 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) -R1385 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) -R1386 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) -R1387 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) -R1388 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) -R1389 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) -R1390 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) -R1391 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) -R1392 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) -R1393 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) -R1394 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) -R1395 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) -R1396 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) -R1397 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) -R1398 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) -R1399 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) -R1400 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) -R1401 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) -R1402 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) -R1403 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) -R1404 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) -R1405 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) -R1406 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) -R1407 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) -R1408 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) -R1409 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) -R1410 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) -R1411 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) -R1412 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) -R1413 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) -R1414 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) -R1415 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) -R1416 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) -R1417 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) -R1418 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) -R1419 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) -R1420 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) -R1421 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) -R1422 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) -R1423 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) -R1424 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) -R1425 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) -R1426 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) -R1427 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) -R1428 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) -R1429 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) -R1430 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) -R1431 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) -R1432 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) -R1433 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) -R1434 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) -R1435 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) -R1436 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) -R1437 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) -R1438 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) -R1439 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) -R1440 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) -R1441 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) -R1442 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) -R1443 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) -R1444 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) -R1445 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) -R1446 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) -R1447 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) -R1448 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) -R1449 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) -R1450 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) -R1451 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) -R1452 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) -R1453 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) -R1454 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) -R1455 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) -R1456 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) -R1457 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) -R1458 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) -R1459 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) -R1460 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) -R1461 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) -R1462 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) -R1463 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) -R1464 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) -R1465 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) -R1466 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) -R1467 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) -R1468 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) -R1469 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) -R1470 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) -R1471 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) -R1472 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) -R1473 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) -R1474 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) -R1475 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) -R1476 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) -R1477 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) -R1478 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) -R1479 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) -R1480 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) -R1481 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) -R1482 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) -R1483 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) -R1484 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) -R1485 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) -R1486 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) -R1487 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) -R1488 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) -R1489 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) -R1490 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) -R1491 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) -R1492 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) -R1493 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) -R1494 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) -R1495 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) -R1496 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) -R1497 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) -R1498 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) -R1499 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) -R1500 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) -R1501 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) -R1502 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) -R1503 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) -R1504 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) -R1505 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) -R1506 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) -R1507 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) -R1508 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) -R1509 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) -R1510 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) -R1511 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) -R1512 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) -R1513 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) -R1514 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) -R1515 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) -R1516 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) -R1517 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) -R1518 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) -R1519 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) -R1520 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) -R1521 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) -R1522 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) -R1523 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) -R1524 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) -R1525 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) -R1526 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) -R1527 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) -R1528 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) -R1529 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) -R1530 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) -R1531 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) -R1532 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) -R1533 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) -R1534 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) -R1535 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) -R1536 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) -R1537 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) -R1538 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) -R1539 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) -R1540 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) -R1541 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) -R1542 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) -R1543 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) -R1544 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) -R1545 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) -R1546 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) -R1547 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) -R1548 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) -R1549 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) -R1550 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) -R1551 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) -R1552 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) -R1553 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) -R1554 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) -R1555 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) -R1556 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) -R1557 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) -R1558 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) -R1559 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) -R1560 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) -R1561 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) -R1562 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) -R1563 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) -R1564 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) -R1565 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) -R1566 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) -R1567 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) -R1568 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) -R1569 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) -R1570 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) -R1571 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) -R1572 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) -R1573 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) -R1574 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) -R1575 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) +R987 | +R988 | +R989 | +R990 | +R991 | | [`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) +R992 | | [`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) +R993 | | [`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) +R994 | | [`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) +R995 | | [`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) +R996 | | [`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) +R997 | | [`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) +R998 | | [`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) +R999 | | [`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) +R1000 | | [`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) +R1001 | | [`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) +R1002 | | [`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) +R1003 | | [`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) +R1004 | | [`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) +R1005 | | [`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) +R1006 | | [`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) +R1007 | | [`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) +R1008 | | [`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) +R1009 | | [`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) +R1010 | | [`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) +R1011 | | [`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) +R1012 | | [`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) +R1013 | | [`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) +R1014 | | [`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) +R1015 | | [`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) +R1016 | | [`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) +R1017 | | [`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) +R1018 | | [`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) +R1019 | | [`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) +R1020 | | [`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) +R1021 | | [`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) +R1022 | | [`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) +R1023 | | [`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) +R1024 | | [`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) +R1025 | | [`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) +R1026 | | [`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) +R1027 | | [`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) +R1028 | | [`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) +R1029 | | [`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) +R1030 | | [`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) +R1031 | | [`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) +R1032 | | [`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) +R1033 | | [`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) +R1034 | | [`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) +R1035 | | [`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) +R1036 | | [`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) +R1037 | | [`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) +R1038 | | [`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) +R1039 | | [`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) +R1040 | | [`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) +R1041 | | [`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) +R1042 | | [`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) +R1043 | | [`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) +R1044 | | [`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) +R1045 | | [`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) +R1046 | | [`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) +R1047 | | [`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) +R1048 | | [`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) +R1049 | | [`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) +R1050 | | [`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) +R1051 | | [`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) +R1052 | | [`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) +R1053 | | [`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) +R1054 | | [`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) +R1055 | | [`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) +R1056 | | [`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) +R1057 | | [`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) +R1058 | | [`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) +R1059 | | [`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) +R1060 | | [`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) +R1061 | | [`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) +R1062 | | [`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) +R1063 | | [`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) +R1064 | | [`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) +R1065 | | [`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) +R1066 | | [`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) +R1067 | | [`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) +R1068 | | [`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) +R1069 | | [`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) +R1070 | | [`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) +R1071 | | [`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) +R1072 | | [`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) +R1073 | | [`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) +R1074 | | [`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) +R1075 | | [`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) +R1076 | | [`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) +R1077 | | [`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) +R1078 | | [`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) +R1079 | | [`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) +R1080 | | [`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) +R1081 | | [`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) +R1082 | | [`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) +R1083 | | [`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) +R1084 | | [`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) +R1085 | | [`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) +R1086 | | [`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) +R1087 | | [`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) +R1088 | | [`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) +R1089 | | [`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) +R1090 | | [`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) +R1091 | | [`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) +R1092 | | [`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) +R1093 | | [`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) +R1094 | | [`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) +R1095 | | [`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) +R1096 | | [`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) +R1097 | | [`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) +R1098 | | [`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) +R1099 | | [`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) +R1100 | | [`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) +R1101 | | [`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) +R1102 | | [`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) +R1103 | | [`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) +R1104 | | [`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) +R1105 | | [`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) +R1106 | | [`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) +R1107 | | [`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) +R1108 | | [`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) +R1109 | | [`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) +R1110 | | [`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) +R1111 | | [`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) +R1112 | | [`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) +R1113 | | [`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) +R1114 | | [`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) +R1115 | | [`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) +R1116 | | [`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) +R1117 | | [`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) +R1118 | | [`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) +R1119 | | [`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) +R1120 | | [`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) +R1121 | | [`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) +R1122 | | [`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) +R1123 | | [`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) +R1124 | | [`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) +R1125 | | [`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) +R1126 | | [`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) +R1127 | | [`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) +R1128 | | [`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) +R1129 | | [`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) +R1130 | | [`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) +R1131 | | [`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) +R1132 | | [`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) +R1133 | | [`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) +R1134 | | [`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) +R1135 | | [`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) +R1136 | | [`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) +R1137 | | [`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) +R1138 | | [`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) +R1139 | | [`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) +R1140 | | [`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) +R1141 | | [`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) +R1142 | | [`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) +R1143 | | [`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) +R1144 | | [`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) +R1145 | | [`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) +R1146 | | [`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) +R1147 | | [`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) +R1148 | | [`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) +R1149 | | [`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) +R1150 | | [`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) +R1151 | | [`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) +R1152 | | [`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) +R1153 | | [`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) +R1154 | | [`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) +R1155 | | [`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) +R1156 | | [`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) +R1157 | | [`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) +R1158 | | [`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) +R1159 | | [`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) +R1160 | | [`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) +R1161 | | [`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) +R1162 | | [`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) +R1163 | | [`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) +R1164 | | [`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) +R1165 | | [`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) +R1166 | | [`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) +R1167 | | [`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) +R1168 | | [`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) +R1169 | | [`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) +R1170 | | [`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) +R1171 | | [`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) +R1172 | | [`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) +R1173 | | [`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) +R1174 | | [`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) +R1175 | | [`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) +R1176 | | [`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) +R1177 | | [`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) +R1178 | | [`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) +R1179 | | [`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) +R1180 | | [`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) +R1181 | | [`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) +R1182 | | [`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) +R1183 | | [`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) +R1184 | | [`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) +R1185 | | [`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) +R1186 | | [`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) +R1187 | | [`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) +R1188 | | [`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) +R1189 | | [`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) +R1190 | | [`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) +R1191 | | [`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) +R1192 | | [`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) +R1193 | | [`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) +R1194 | | [`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) +R1195 | | [`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) +R1196 | | [`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) +R1197 | | [`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) +R1198 | | [`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) +R1199 | | [`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) +R1200 | | [`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) +R1201 | | [`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) +R1202 | | [`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) +R1203 | | [`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) +R1204 | | [`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) +R1205 | | [`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) +R1206 | | [`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) +R1207 | | [`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) +R1208 | | [`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) +R1209 | | [`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) +R1210 | | [`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) +R1211 | | [`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) +R1212 | | [`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) +R1213 | | [`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) +R1214 | | [`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) +R1215 | | [`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) +R1216 | | [`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) +R1217 | | [`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) +R1218 | | [`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) +R1219 | | [`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) +R1220 | | [`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) +R1221 | | [`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) +R1222 | | [`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) +R1223 | | [`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) +R1224 | | [`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) +R1225 | | [`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) +R1226 | | [`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) +R1227 | | [`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) +R1228 | | [`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) +R1229 | | [`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) +R1230 | | [`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) +R1231 | | [`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) +R1232 | | [`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) +R1233 | | [`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) +R1234 | | [`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) +R1235 | | [`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) +R1236 | | [`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) +R1237 | | [`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) +R1238 | | [`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) +R1239 | | [`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) +R1240 | | [`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) +R1241 | | [`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) +R1242 | | [`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) +R1243 | | [`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) +R1244 | | [`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) +R1245 | | [`RenameCpp20Constraints.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1257 | | [`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) +R1258 | | [`RenameCpp20Constraints.cpp`, line 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1260 | | [`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) +R1261 | | [`RenameCpp20Constraints.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1263 | | [`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) +R1264 | | [`RenameCpp20Constraints.cpp`, line 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1266 | | [`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) +R1267 | | [`RenameCpp20Constraints.cpp`, line 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1269 | | [`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) +R1270 | | [`RenameCpp20Constraints.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1272 | | [`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) +R1273 | | [`RenameCpp20Constraints.cpp`, line 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1275 | | [`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) +R1276 | | [`RenameCpp20Constraints.cpp`, line 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1521 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1522 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1523 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1524 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) +R1525 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) +R1526 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) +R1527 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) +R1528 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) +R1529 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) +R1530 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) +R1531 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) +R1532 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) +R1533 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) +R1534 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) +R1535 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) +R1536 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) +R1537 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) +R1538 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) +R1539 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) +R1540 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) +R1541 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) +R1542 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) +R1543 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) +R1544 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) +R1545 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) +R1546 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) +R1547 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) +R1548 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) +R1549 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) +R1550 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) +R1551 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) +R1552 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) +R1553 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) +R1554 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) +R1555 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) +R1556 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) +R1557 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) +R1558 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) +R1559 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) +R1560 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) +R1561 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) +R1562 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) +R1563 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) +R1564 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) +R1565 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) +R1566 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) +R1567 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) +R1568 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) +R1569 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) +R1570 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) +R1571 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) +R1572 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) +R1573 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) +R1574 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) +R1575 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) +R1576 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) +R1577 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) +R1578 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) +R1579 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) diff --git a/results/preliminary/annotated/QtCreatorResults.md b/results/preliminary/annotated/QtCreatorResults.md index c8406f5..6aadb7c 100644 --- a/results/preliminary/annotated/QtCreatorResults.md +++ b/results/preliminary/annotated/QtCreatorResults.md @@ -1002,592 +1002,596 @@ R983 | | [`RenameCpp20.cpp`, line 449](https://github.com/LegalizeAdulthood/ref 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 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) -R1242 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) -R1243 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) -R1244 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) -R1245 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) -R1246 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) -R1247 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) -R1248 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) -R1249 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) -R1250 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) -R1251 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) -R1252 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [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 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) -R1255 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [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 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) -R1258 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [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 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) -R1261 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [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 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) -R1264 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [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 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) -R1267 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [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 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) -R1270 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [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 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) -R1273 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) -R1274 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) -R1275 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) -R1276 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) -R1277 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) -R1278 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) -R1279 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) -R1280 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) -R1281 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) -R1282 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) -R1283 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) -R1284 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) -R1285 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) -R1286 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) -R1287 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) -R1288 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) -R1289 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) -R1290 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) -R1291 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) -R1292 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) -R1293 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) -R1294 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) -R1295 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) -R1296 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) -R1297 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) -R1298 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) -R1299 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) -R1300 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) -R1301 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) -R1302 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) -R1303 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) -R1304 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) -R1305 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) -R1306 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) -R1307 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) -R1308 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) -R1309 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) -R1310 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) -R1311 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) -R1312 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) -R1313 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) -R1314 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) -R1315 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) -R1316 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) -R1317 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) -R1318 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) -R1319 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) -R1320 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) -R1321 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) -R1322 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) -R1323 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) -R1324 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) -R1325 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) -R1326 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) -R1327 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) -R1328 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) -R1329 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) -R1330 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) -R1331 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) -R1332 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) -R1333 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) -R1334 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) -R1335 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) -R1336 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) -R1337 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) -R1338 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) -R1339 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) -R1340 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) -R1341 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) -R1342 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) -R1343 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) -R1344 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) -R1345 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) -R1346 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) -R1347 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) -R1348 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) -R1349 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) -R1350 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) -R1351 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) -R1352 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) -R1353 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) -R1354 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) -R1355 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) -R1356 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) -R1357 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) -R1358 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) -R1359 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) -R1360 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) -R1361 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) -R1362 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) -R1363 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) -R1364 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) -R1365 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) -R1366 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) -R1367 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) -R1368 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) -R1369 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) -R1370 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) -R1371 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) -R1372 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) -R1373 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) -R1374 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) -R1375 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) -R1376 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) -R1377 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) -R1378 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) -R1379 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) -R1380 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) -R1381 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) -R1382 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) -R1383 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) -R1384 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) -R1385 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) -R1386 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) -R1387 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) -R1388 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) -R1389 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) -R1390 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) -R1391 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) -R1392 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) -R1393 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) -R1394 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) -R1395 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) -R1396 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) -R1397 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) -R1398 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) -R1399 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) -R1400 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) -R1401 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) -R1402 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) -R1403 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) -R1404 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) -R1405 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) -R1406 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) -R1407 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) -R1408 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) -R1409 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) -R1410 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) -R1411 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) -R1412 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) -R1413 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) -R1414 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) -R1415 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) -R1416 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) -R1417 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) -R1418 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) -R1419 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) -R1420 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) -R1421 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) -R1422 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) -R1423 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) -R1424 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) -R1425 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) -R1426 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) -R1427 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) -R1428 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) -R1429 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) -R1430 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) -R1431 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) -R1432 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) -R1433 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) -R1434 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) -R1435 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) -R1436 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) -R1437 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) -R1438 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) -R1439 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) -R1440 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) -R1441 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) -R1442 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) -R1443 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) -R1444 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) -R1445 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) -R1446 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) -R1447 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) -R1448 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) -R1449 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) -R1450 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) -R1451 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) -R1452 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) -R1453 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) -R1454 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) -R1455 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) -R1456 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) -R1457 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) -R1458 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) -R1459 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) -R1460 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) -R1461 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) -R1462 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) -R1463 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) -R1464 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) -R1465 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) -R1466 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) -R1467 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) -R1468 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) -R1469 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) -R1470 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) -R1471 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) -R1472 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) -R1473 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) -R1474 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) -R1475 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) -R1476 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) -R1477 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) -R1478 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) -R1479 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) -R1480 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) -R1481 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) -R1482 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) -R1483 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) -R1484 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) -R1485 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) -R1486 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) -R1487 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) -R1488 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) -R1489 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) -R1490 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) -R1491 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) -R1492 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) -R1493 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) -R1494 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) -R1495 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) -R1496 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) -R1497 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) -R1498 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) -R1499 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) -R1500 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) -R1501 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) -R1502 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) -R1503 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) -R1504 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) -R1505 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) -R1506 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) -R1507 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) -R1508 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) -R1509 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) -R1510 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) -R1511 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) -R1512 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) -R1513 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) -R1514 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) -R1515 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) -R1516 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) -R1517 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) -R1518 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) -R1519 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) -R1520 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) -R1521 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) -R1522 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) -R1523 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) -R1524 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) -R1525 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) -R1526 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) -R1527 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) -R1528 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) -R1529 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) -R1530 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) -R1531 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) -R1532 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) -R1533 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) -R1534 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) -R1535 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) -R1536 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) -R1537 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) -R1538 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) -R1539 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) -R1540 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) -R1541 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) -R1542 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) -R1543 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) -R1544 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) -R1545 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) -R1546 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) -R1547 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) -R1548 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) -R1549 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) -R1550 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) -R1551 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) -R1552 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) -R1553 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) -R1554 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) -R1555 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) -R1556 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) -R1557 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) -R1558 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) -R1559 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) -R1560 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) -R1561 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) -R1562 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) -R1563 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) -R1564 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) -R1565 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) -R1566 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) -R1567 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) -R1568 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) -R1569 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) -R1570 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) -R1571 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) -R1572 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) -R1573 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) -R1574 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) -R1575 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt) +R987 | +R988 | +R989 | +R990 | +R991 | | [`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) +R992 | | [`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) +R993 | | [`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) +R994 | | [`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) +R995 | | [`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) +R996 | | [`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) +R997 | | [`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) +R998 | | [`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) +R999 | | [`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) +R1000 | | [`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) +R1001 | | [`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) +R1002 | | [`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) +R1003 | | [`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) +R1004 | | [`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) +R1005 | | [`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) +R1006 | | [`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) +R1007 | | [`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) +R1008 | | [`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) +R1009 | | [`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) +R1010 | | [`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) +R1011 | | [`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) +R1012 | | [`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) +R1013 | | [`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) +R1014 | | [`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) +R1015 | | [`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) +R1016 | | [`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) +R1017 | | [`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) +R1018 | | [`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) +R1019 | | [`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) +R1020 | | [`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) +R1021 | | [`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) +R1022 | | [`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) +R1023 | | [`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) +R1024 | | [`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) +R1025 | | [`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) +R1026 | | [`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) +R1027 | | [`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) +R1028 | | [`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) +R1029 | | [`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) +R1030 | | [`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) +R1031 | | [`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) +R1032 | | [`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) +R1033 | | [`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) +R1034 | | [`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) +R1035 | | [`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) +R1036 | | [`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) +R1037 | | [`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) +R1038 | | [`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) +R1039 | | [`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) +R1040 | | [`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) +R1041 | | [`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) +R1042 | | [`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) +R1043 | | [`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) +R1044 | | [`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) +R1045 | | [`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) +R1046 | | [`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) +R1047 | | [`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) +R1048 | | [`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) +R1049 | | [`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) +R1050 | | [`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) +R1051 | | [`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) +R1052 | | [`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) +R1053 | | [`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) +R1054 | | [`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) +R1055 | | [`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) +R1056 | | [`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) +R1057 | | [`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) +R1058 | | [`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) +R1059 | | [`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) +R1060 | | [`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) +R1061 | | [`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) +R1062 | | [`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) +R1063 | | [`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) +R1064 | | [`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) +R1065 | | [`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) +R1066 | | [`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) +R1067 | | [`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) +R1068 | | [`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) +R1069 | | [`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) +R1070 | | [`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) +R1071 | | [`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) +R1072 | | [`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) +R1073 | | [`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) +R1074 | | [`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) +R1075 | | [`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) +R1076 | | [`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) +R1077 | | [`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) +R1078 | | [`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) +R1079 | | [`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) +R1080 | | [`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) +R1081 | | [`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) +R1082 | | [`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) +R1083 | | [`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) +R1084 | | [`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) +R1085 | | [`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) +R1086 | | [`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) +R1087 | | [`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) +R1088 | | [`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) +R1089 | | [`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) +R1090 | | [`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) +R1091 | | [`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) +R1092 | | [`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) +R1093 | | [`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) +R1094 | | [`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) +R1095 | | [`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) +R1096 | | [`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) +R1097 | | [`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) +R1098 | | [`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) +R1099 | | [`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) +R1100 | | [`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) +R1101 | | [`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) +R1102 | | [`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) +R1103 | | [`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) +R1104 | | [`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) +R1105 | | [`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) +R1106 | | [`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) +R1107 | | [`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) +R1108 | | [`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) +R1109 | | [`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) +R1110 | | [`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) +R1111 | | [`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) +R1112 | | [`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) +R1113 | | [`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) +R1114 | | [`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) +R1115 | | [`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) +R1116 | | [`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) +R1117 | | [`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) +R1118 | | [`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) +R1119 | | [`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) +R1120 | | [`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) +R1121 | | [`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) +R1122 | | [`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) +R1123 | | [`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) +R1124 | | [`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) +R1125 | | [`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) +R1126 | | [`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) +R1127 | | [`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) +R1128 | | [`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) +R1129 | | [`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) +R1130 | | [`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) +R1131 | | [`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) +R1132 | | [`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) +R1133 | | [`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) +R1134 | | [`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) +R1135 | | [`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) +R1136 | | [`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) +R1137 | | [`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) +R1138 | | [`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) +R1139 | | [`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) +R1140 | | [`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) +R1141 | | [`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) +R1142 | | [`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) +R1143 | | [`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) +R1144 | | [`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) +R1145 | | [`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) +R1146 | | [`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) +R1147 | | [`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) +R1148 | | [`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) +R1149 | | [`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) +R1150 | | [`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) +R1151 | | [`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) +R1152 | | [`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) +R1153 | | [`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) +R1154 | | [`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) +R1155 | | [`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) +R1156 | | [`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) +R1157 | | [`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) +R1158 | | [`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) +R1159 | | [`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) +R1160 | | [`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) +R1161 | | [`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) +R1162 | | [`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) +R1163 | | [`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) +R1164 | | [`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) +R1165 | | [`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) +R1166 | | [`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) +R1167 | | [`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) +R1168 | | [`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) +R1169 | | [`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) +R1170 | | [`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) +R1171 | | [`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) +R1172 | | [`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) +R1173 | | [`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) +R1174 | | [`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) +R1175 | | [`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) +R1176 | | [`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) +R1177 | | [`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) +R1178 | | [`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) +R1179 | | [`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) +R1180 | | [`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) +R1181 | | [`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) +R1182 | | [`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) +R1183 | | [`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) +R1184 | | [`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) +R1185 | | [`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) +R1186 | | [`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) +R1187 | | [`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) +R1188 | | [`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) +R1189 | | [`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) +R1190 | | [`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) +R1191 | | [`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) +R1192 | | [`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) +R1193 | | [`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) +R1194 | | [`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) +R1195 | | [`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) +R1196 | | [`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) +R1197 | | [`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) +R1198 | | [`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) +R1199 | | [`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) +R1200 | | [`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) +R1201 | | [`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) +R1202 | | [`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) +R1203 | | [`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) +R1204 | | [`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) +R1205 | | [`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) +R1206 | | [`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) +R1207 | | [`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) +R1208 | | [`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) +R1209 | | [`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) +R1210 | | [`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) +R1211 | | [`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) +R1212 | | [`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) +R1213 | | [`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) +R1214 | | [`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) +R1215 | | [`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) +R1216 | | [`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) +R1217 | | [`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) +R1218 | | [`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) +R1219 | | [`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) +R1220 | | [`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) +R1221 | | [`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) +R1222 | | [`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) +R1223 | | [`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) +R1224 | | [`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) +R1225 | | [`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) +R1226 | | [`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) +R1227 | | [`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) +R1228 | | [`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) +R1229 | | [`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) +R1230 | | [`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) +R1231 | | [`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) +R1232 | | [`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) +R1233 | | [`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) +R1234 | | [`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) +R1235 | | [`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) +R1236 | | [`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) +R1237 | | [`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) +R1238 | | [`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) +R1239 | | [`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) +R1240 | | [`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) +R1241 | | [`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) +R1242 | | [`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) +R1243 | | [`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) +R1244 | | [`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) +R1245 | | [`RenameCpp20Constraints.cpp`, line 560](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L560) | [R1241.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1241.txt) +R1246 | | [`RenameCpp20Constraints.cpp`, line 566](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L566) | [R1242.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1242.txt) +R1247 | | [`RenameCpp20Constraints.cpp`, line 568](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L568) | [R1243.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1243.txt) +R1248 | | [`RenameCpp20Constraints.cpp`, line 575](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L575) | [R1244.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1244.txt) +R1249 | | [`RenameCpp20Constraints.cpp`, line 577](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L577) | [R1245.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1245.txt) +R1250 | | [`RenameCpp20Constraints.cpp`, line 584](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L584) | [R1246.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1246.txt) +R1251 | | [`RenameCpp20Constraints.cpp`, line 586](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L586) | [R1247.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1247.txt) +R1252 | | [`RenameCpp20Constraints.cpp`, line 589](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L589) | [R1248.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1248.txt) +R1253 | | [`RenameCpp20Constraints.cpp`, line 595](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L595) | [R1249.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1249.txt) +R1254 | | [`RenameCpp20Constraints.cpp`, line 597](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L597) | [R1250.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1250.txt) +R1255 | | [`RenameCpp20Constraints.cpp`, line 600](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L600) | [R1251.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1251.txt) +R1256 | | [`RenameCpp20Constraints.cpp`, line 607](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L607) | [R1252.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1252.txt) +R1257 | | [`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) +R1258 | | [`RenameCpp20Constraints.cpp`, line 610](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L610) | [R1254.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1254.txt) +R1259 | | [`RenameCpp20Constraints.cpp`, line 612](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L612) | [R1255.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1255.txt) +R1260 | | [`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) +R1261 | | [`RenameCpp20Constraints.cpp`, line 617](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L617) | [R1257.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1257.txt) +R1262 | | [`RenameCpp20Constraints.cpp`, line 624](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L624) | [R1258.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1258.txt) +R1263 | | [`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) +R1264 | | [`RenameCpp20Constraints.cpp`, line 627](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L627) | [R1260.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1260.txt) +R1265 | | [`RenameCpp20Constraints.cpp`, line 629](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L629) | [R1261.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1261.txt) +R1266 | | [`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) +R1267 | | [`RenameCpp20Constraints.cpp`, line 633](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L633) | [R1263.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1263.txt) +R1268 | | [`RenameCpp20Constraints.cpp`, line 640](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L640) | [R1264.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1264.txt) +R1269 | | [`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) +R1270 | | [`RenameCpp20Constraints.cpp`, line 643](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L643) | [R1266.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1266.txt) +R1271 | | [`RenameCpp20Constraints.cpp`, line 645](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L645) | [R1267.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1267.txt) +R1272 | | [`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) +R1273 | | [`RenameCpp20Constraints.cpp`, line 649](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L649) | [R1269.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1269.txt) +R1274 | | [`RenameCpp20Constraints.cpp`, line 657](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L657) | [R1270.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1270.txt) +R1275 | | [`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) +R1276 | | [`RenameCpp20Constraints.cpp`, line 660](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L660) | [R1272.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1272.txt) +R1277 | | [`RenameCpp20Constraints.cpp`, line 661](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L661) | [R1273.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1273.txt) +R1278 | | [`RenameCpp20Constraints.cpp`, line 663](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L663) | [R1274.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1274.txt) +R1279 | | [`RenameCpp20Constraints.cpp`, line 667](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L667) | [R1275.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1275.txt) +R1280 | | [`RenameCpp20Constraints.cpp`, line 668](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L668) | [R1276.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1276.txt) +R1281 | | [`RenameCpp20Constraints.cpp`, line 675](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L675) | [R1277.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1277.txt) +R1282 | | [`RenameCpp20Constraints.cpp`, line 677](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L677) | [R1278.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1278.txt) +R1283 | | [`RenameCpp20Constraints.cpp`, line 678](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L678) | [R1279.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1279.txt) +R1284 | | [`RenameCpp20Constraints.cpp`, line 679](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L679) | [R1280.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1280.txt) +R1285 | | [`RenameCpp20Constraints.cpp`, line 681](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L681) | [R1281.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1281.txt) +R1286 | | [`RenameCpp20Constraints.cpp`, line 684](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L684) | [R1282.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1282.txt) +R1287 | | [`RenameCpp20Constraints.cpp`, line 685](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L685) | [R1283.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1283.txt) +R1288 | | [`RenameCpp20Constraints.cpp`, line 692](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L692) | [R1284.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1284.txt) +R1289 | | [`RenameCpp20Constraints.cpp`, line 694](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L694) | [R1285.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1285.txt) +R1290 | | [`RenameCpp20Constraints.cpp`, line 695](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L695) | [R1286.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1286.txt) +R1291 | | [`RenameCpp20Constraints.cpp`, line 696](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L696) | [R1287.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1287.txt) +R1292 | | [`RenameCpp20Constraints.cpp`, line 698](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L698) | [R1288.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1288.txt) +R1293 | | [`RenameCpp20Constraints.cpp`, line 701](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L701) | [R1289.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1289.txt) +R1294 | | [`RenameCpp20Constraints.cpp`, line 702](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L702) | [R1290.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1290.txt) +R1295 | | [`RenameCpp20Constraints.cpp`, line 710](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L710) | [R1291.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1291.txt) +R1296 | | [`RenameCpp20Constraints.cpp`, line 712](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L712) | [R1292.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1292.txt) +R1297 | | [`RenameCpp20Constraints.cpp`, line 713](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L713) | [R1293.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1293.txt) +R1298 | | [`RenameCpp20Constraints.cpp`, line 714](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L714) | [R1294.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1294.txt) +R1299 | | [`RenameCpp20Constraints.cpp`, line 716](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L716) | [R1295.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1295.txt) +R1300 | | [`RenameCpp20Constraints.cpp`, line 720](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L720) | [R1296.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1296.txt) +R1301 | | [`RenameCpp20Constraints.cpp`, line 721](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L721) | [R1297.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1297.txt) +R1302 | | [`RenameCpp20Constraints.cpp`, line 728](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L728) | [R1298.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1298.txt) +R1303 | | [`RenameCpp20Constraints.cpp`, line 730](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L730) | [R1299.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1299.txt) +R1304 | | [`RenameCpp20Constraints.cpp`, line 731](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L731) | [R1300.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1300.txt) +R1305 | | [`RenameCpp20Constraints.cpp`, line 732](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L732) | [R1301.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1301.txt) +R1306 | | [`RenameCpp20Constraints.cpp`, line 734](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L734) | [R1302.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1302.txt) +R1307 | | [`RenameCpp20Constraints.cpp`, line 737](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L737) | [R1303.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1303.txt) +R1308 | | [`RenameCpp20Constraints.cpp`, line 738](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L738) | [R1304.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1304.txt) +R1309 | | [`RenameCpp20Constraints.cpp`, line 745](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L745) | [R1305.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1305.txt) +R1310 | | [`RenameCpp20Constraints.cpp`, line 747](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L747) | [R1306.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1306.txt) +R1311 | | [`RenameCpp20Constraints.cpp`, line 748](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L748) | [R1307.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1307.txt) +R1312 | | [`RenameCpp20Constraints.cpp`, line 749](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L749) | [R1308.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1308.txt) +R1313 | | [`RenameCpp20Constraints.cpp`, line 751](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L751) | [R1309.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1309.txt) +R1314 | | [`RenameCpp20Constraints.cpp`, line 754](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L754) | [R1310.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1310.txt) +R1315 | | [`RenameCpp20Constraints.cpp`, line 755](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L755) | [R1311.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1311.txt) +R1316 | | [`RenameCpp20Constraints.cpp`, line 763](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L763) | [R1312.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1312.txt) +R1317 | | [`RenameCpp20Constraints.cpp`, line 765](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L765) | [R1313.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1313.txt) +R1318 | | [`RenameCpp20Constraints.cpp`, line 766](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L766) | [R1314.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1314.txt) +R1319 | | [`RenameCpp20Constraints.cpp`, line 767](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L767) | [R1315.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1315.txt) +R1320 | | [`RenameCpp20Constraints.cpp`, line 768](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L768) | [R1316.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1316.txt) +R1321 | | [`RenameCpp20Constraints.cpp`, line 770](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L770) | [R1317.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1317.txt) +R1322 | | [`RenameCpp20Constraints.cpp`, line 774](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L774) | [R1318.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1318.txt) +R1323 | | [`RenameCpp20Constraints.cpp`, line 775](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L775) | [R1319.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1319.txt) +R1324 | | [`RenameCpp20Constraints.cpp`, line 782](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L782) | [R1320.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1320.txt) +R1325 | | [`RenameCpp20Constraints.cpp`, line 784](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L784) | [R1321.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1321.txt) +R1326 | | [`RenameCpp20Constraints.cpp`, line 785](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L785) | [R1322.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1322.txt) +R1327 | | [`RenameCpp20Constraints.cpp`, line 786](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L786) | [R1323.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1323.txt) +R1328 | | [`RenameCpp20Constraints.cpp`, line 787](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L787) | [R1324.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1324.txt) +R1329 | | [`RenameCpp20Constraints.cpp`, line 789](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L789) | [R1325.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1325.txt) +R1330 | | [`RenameCpp20Constraints.cpp`, line 792](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L792) | [R1326.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1326.txt) +R1331 | | [`RenameCpp20Constraints.cpp`, line 793](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L793) | [R1327.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1327.txt) +R1332 | | [`RenameCpp20Constraints.cpp`, line 800](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L800) | [R1328.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1328.txt) +R1333 | | [`RenameCpp20Constraints.cpp`, line 802](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L802) | [R1329.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1329.txt) +R1334 | | [`RenameCpp20Constraints.cpp`, line 803](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L803) | [R1330.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1330.txt) +R1335 | | [`RenameCpp20Constraints.cpp`, line 804](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L804) | [R1331.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1331.txt) +R1336 | | [`RenameCpp20Constraints.cpp`, line 805](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L805) | [R1332.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1332.txt) +R1337 | | [`RenameCpp20Constraints.cpp`, line 807](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L807) | [R1333.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1333.txt) +R1338 | | [`RenameCpp20Constraints.cpp`, line 810](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L810) | [R1334.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1334.txt) +R1339 | | [`RenameCpp20Constraints.cpp`, line 811](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L811) | [R1335.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1335.txt) +R1340 | | [`RenameCpp20Constraints.cpp`, line 819](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L819) | [R1336.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1336.txt) +R1341 | | [`RenameCpp20Constraints.cpp`, line 820](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L820) | [R1337.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1337.txt) +R1342 | | [`RenameCpp20Constraints.cpp`, line 821](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L821) | [R1338.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1338.txt) +R1343 | | [`RenameCpp20Constraints.cpp`, line 823](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L823) | [R1339.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1339.txt) +R1344 | | [`RenameCpp20Constraints.cpp`, line 824](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L824) | [R1340.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1340.txt) +R1345 | | [`RenameCpp20Constraints.cpp`, line 825](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L825) | [R1341.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1341.txt) +R1346 | | [`RenameCpp20Constraints.cpp`, line 830](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L830) | [R1342.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1342.txt) +R1347 | | [`RenameCpp20Constraints.cpp`, line 831](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L831) | [R1343.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1343.txt) +R1348 | | [`RenameCpp20Constraints.cpp`, line 832](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L832) | [R1344.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1344.txt) +R1349 | | [`RenameCpp20Constraints.cpp`, line 833](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L833) | [R1345.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1345.txt) +R1350 | | [`RenameCpp20Constraints.cpp`, line 834](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L834) | [R1346.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1346.txt) +R1351 | | [`RenameCpp20Constraints.cpp`, line 835](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L835) | [R1347.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1347.txt) +R1352 | | [`RenameCpp20Constraints.cpp`, line 838](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L838) | [R1348.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1348.txt) +R1353 | | [`RenameCpp20Constraints.cpp`, line 839](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L839) | [R1349.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1349.txt) +R1354 | | [`RenameCpp20Constraints.cpp`, line 844](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L844) | [R1350.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1350.txt) +R1355 | | [`RenameCpp20Constraints.cpp`, line 845](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L845) | [R1351.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1351.txt) +R1356 | | [`RenameCpp20Constraints.cpp`, line 846](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L846) | [R1352.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1352.txt) +R1357 | | [`RenameCpp20Constraints.cpp`, line 848](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L848) | [R1353.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1353.txt) +R1358 | | [`RenameCpp20Constraints.cpp`, line 849](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L849) | [R1354.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1354.txt) +R1359 | | [`RenameCpp20Constraints.cpp`, line 850](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L850) | [R1355.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1355.txt) +R1360 | | [`RenameCpp20Constraints.cpp`, line 854](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L854) | [R1356.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1356.txt) +R1361 | | [`RenameCpp20Constraints.cpp`, line 855](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L855) | [R1357.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1357.txt) +R1362 | | [`RenameCpp20Constraints.cpp`, line 856](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L856) | [R1358.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1358.txt) +R1363 | | [`RenameCpp20Constraints.cpp`, line 857](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L857) | [R1359.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1359.txt) +R1364 | | [`RenameCpp20Constraints.cpp`, line 858](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L858) | [R1360.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1360.txt) +R1365 | | [`RenameCpp20Constraints.cpp`, line 859](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L859) | [R1361.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1361.txt) +R1366 | | [`RenameCpp20Constraints.cpp`, line 862](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L862) | [R1362.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1362.txt) +R1367 | | [`RenameCpp20Constraints.cpp`, line 863](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L863) | [R1363.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1363.txt) +R1368 | | [`RenameCpp20Constraints.cpp`, line 868](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L868) | [R1364.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1364.txt) +R1369 | | [`RenameCpp20Constraints.cpp`, line 869](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L869) | [R1365.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1365.txt) +R1370 | | [`RenameCpp20Constraints.cpp`, line 870](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L870) | [R1366.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1366.txt) +R1371 | | [`RenameCpp20Constraints.cpp`, line 872](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L872) | [R1367.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1367.txt) +R1372 | | [`RenameCpp20Constraints.cpp`, line 873](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L873) | [R1368.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1368.txt) +R1373 | | [`RenameCpp20Constraints.cpp`, line 874](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L874) | [R1369.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1369.txt) +R1374 | | [`RenameCpp20Constraints.cpp`, line 878](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L878) | [R1370.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1370.txt) +R1375 | | [`RenameCpp20Constraints.cpp`, line 879](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L879) | [R1371.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1371.txt) +R1376 | | [`RenameCpp20Constraints.cpp`, line 880](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L880) | [R1372.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1372.txt) +R1377 | | [`RenameCpp20Constraints.cpp`, line 881](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L881) | [R1373.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1373.txt) +R1378 | | [`RenameCpp20Constraints.cpp`, line 882](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L882) | [R1374.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1374.txt) +R1379 | | [`RenameCpp20Constraints.cpp`, line 883](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L883) | [R1375.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1375.txt) +R1380 | | [`RenameCpp20Constraints.cpp`, line 886](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L886) | [R1376.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1376.txt) +R1381 | | [`RenameCpp20Constraints.cpp`, line 887](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L887) | [R1377.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1377.txt) +R1382 | | [`RenameCpp20Constraints.cpp`, line 893](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L893) | [R1378.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1378.txt) +R1383 | | [`RenameCpp20Constraints.cpp`, line 894](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L894) | [R1379.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1379.txt) +R1384 | | [`RenameCpp20Constraints.cpp`, line 895](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L895) | [R1380.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1380.txt) +R1385 | | [`RenameCpp20Constraints.cpp`, line 897](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L897) | [R1381.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1381.txt) +R1386 | | [`RenameCpp20Constraints.cpp`, line 898](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L898) | [R1382.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1382.txt) +R1387 | | [`RenameCpp20Constraints.cpp`, line 899](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L899) | [R1383.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1383.txt) +R1388 | | [`RenameCpp20Constraints.cpp`, line 900](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L900) | [R1384.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1384.txt) +R1389 | | [`RenameCpp20Constraints.cpp`, line 905](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L905) | [R1385.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1385.txt) +R1390 | | [`RenameCpp20Constraints.cpp`, line 906](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L906) | [R1386.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1386.txt) +R1391 | | [`RenameCpp20Constraints.cpp`, line 907](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L907) | [R1387.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1387.txt) +R1392 | | [`RenameCpp20Constraints.cpp`, line 908](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L908) | [R1388.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1388.txt) +R1393 | | [`RenameCpp20Constraints.cpp`, line 909](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L909) | [R1389.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1389.txt) +R1394 | | [`RenameCpp20Constraints.cpp`, line 910](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L910) | [R1390.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1390.txt) +R1395 | | [`RenameCpp20Constraints.cpp`, line 913](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L913) | [R1391.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1391.txt) +R1396 | | [`RenameCpp20Constraints.cpp`, line 914](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L914) | [R1392.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1392.txt) +R1397 | | [`RenameCpp20Constraints.cpp`, line 919](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L919) | [R1393.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1393.txt) +R1398 | | [`RenameCpp20Constraints.cpp`, line 920](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L920) | [R1394.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1394.txt) +R1399 | | [`RenameCpp20Constraints.cpp`, line 921](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L921) | [R1395.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1395.txt) +R1400 | | [`RenameCpp20Constraints.cpp`, line 923](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L923) | [R1396.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1396.txt) +R1401 | | [`RenameCpp20Constraints.cpp`, line 924](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L924) | [R1397.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1397.txt) +R1402 | | [`RenameCpp20Constraints.cpp`, line 925](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L925) | [R1398.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1398.txt) +R1403 | | [`RenameCpp20Constraints.cpp`, line 926](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L926) | [R1399.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1399.txt) +R1404 | | [`RenameCpp20Constraints.cpp`, line 930](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L930) | [R1400.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1400.txt) +R1405 | | [`RenameCpp20Constraints.cpp`, line 931](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L931) | [R1401.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1401.txt) +R1406 | | [`RenameCpp20Constraints.cpp`, line 932](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L932) | [R1402.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1402.txt) +R1407 | | [`RenameCpp20Constraints.cpp`, line 933](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L933) | [R1403.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1403.txt) +R1408 | | [`RenameCpp20Constraints.cpp`, line 934](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L934) | [R1404.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1404.txt) +R1409 | | [`RenameCpp20Constraints.cpp`, line 935](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L935) | [R1405.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1405.txt) +R1410 | | [`RenameCpp20Constraints.cpp`, line 938](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L938) | [R1406.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1406.txt) +R1411 | | [`RenameCpp20Constraints.cpp`, line 939](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L939) | [R1407.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1407.txt) +R1412 | | [`RenameCpp20Constraints.cpp`, line 944](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L944) | [R1408.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1408.txt) +R1413 | | [`RenameCpp20Constraints.cpp`, line 945](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L945) | [R1409.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1409.txt) +R1414 | | [`RenameCpp20Constraints.cpp`, line 946](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L946) | [R1410.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1410.txt) +R1415 | | [`RenameCpp20Constraints.cpp`, line 948](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L948) | [R1411.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1411.txt) +R1416 | | [`RenameCpp20Constraints.cpp`, line 949](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L949) | [R1412.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1412.txt) +R1417 | | [`RenameCpp20Constraints.cpp`, line 950](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L950) | [R1413.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1413.txt) +R1418 | | [`RenameCpp20Constraints.cpp`, line 951](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L951) | [R1414.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1414.txt) +R1419 | | [`RenameCpp20Constraints.cpp`, line 955](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L955) | [R1415.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1415.txt) +R1420 | | [`RenameCpp20Constraints.cpp`, line 956](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L956) | [R1416.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1416.txt) +R1421 | | [`RenameCpp20Constraints.cpp`, line 957](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L957) | [R1417.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1417.txt) +R1422 | | [`RenameCpp20Constraints.cpp`, line 958](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L958) | [R1418.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1418.txt) +R1423 | | [`RenameCpp20Constraints.cpp`, line 959](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L959) | [R1419.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1419.txt) +R1424 | | [`RenameCpp20Constraints.cpp`, line 960](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L960) | [R1420.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1420.txt) +R1425 | | [`RenameCpp20Constraints.cpp`, line 963](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L963) | [R1421.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1421.txt) +R1426 | | [`RenameCpp20Constraints.cpp`, line 964](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L964) | [R1422.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1422.txt) +R1427 | | [`RenameCpp20Constraints.cpp`, line 970](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L970) | [R1423.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1423.txt) +R1428 | | [`RenameCpp20Constraints.cpp`, line 971](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L971) | [R1424.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1424.txt) +R1429 | | [`RenameCpp20Constraints.cpp`, line 972](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L972) | [R1425.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1425.txt) +R1430 | | [`RenameCpp20Constraints.cpp`, line 974](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L974) | [R1426.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1426.txt) +R1431 | | [`RenameCpp20Constraints.cpp`, line 975](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L975) | [R1427.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1427.txt) +R1432 | | [`RenameCpp20Constraints.cpp`, line 976](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L976) | [R1428.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1428.txt) +R1433 | | [`RenameCpp20Constraints.cpp`, line 977](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L977) | [R1429.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1429.txt) +R1434 | | [`RenameCpp20Constraints.cpp`, line 982](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L982) | [R1430.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1430.txt) +R1435 | | [`RenameCpp20Constraints.cpp`, line 983](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L983) | [R1431.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1431.txt) +R1436 | | [`RenameCpp20Constraints.cpp`, line 984](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L984) | [R1432.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1432.txt) +R1437 | | [`RenameCpp20Constraints.cpp`, line 985](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L985) | [R1433.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1433.txt) +R1438 | | [`RenameCpp20Constraints.cpp`, line 986](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L986) | [R1434.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1434.txt) +R1439 | | [`RenameCpp20Constraints.cpp`, line 987](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L987) | [R1435.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1435.txt) +R1440 | | [`RenameCpp20Constraints.cpp`, line 990](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L990) | [R1436.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1436.txt) +R1441 | | [`RenameCpp20Constraints.cpp`, line 991](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L991) | [R1437.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1437.txt) +R1442 | | [`RenameCpp20Constraints.cpp`, line 996](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L996) | [R1438.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1438.txt) +R1443 | | [`RenameCpp20Constraints.cpp`, line 997](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L997) | [R1439.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1439.txt) +R1444 | | [`RenameCpp20Constraints.cpp`, line 998](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L998) | [R1440.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1440.txt) +R1445 | | [`RenameCpp20Constraints.cpp`, line 1000](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1000) | [R1441.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1441.txt) +R1446 | | [`RenameCpp20Constraints.cpp`, line 1001](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1001) | [R1442.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1442.txt) +R1447 | | [`RenameCpp20Constraints.cpp`, line 1002](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1002) | [R1443.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1443.txt) +R1448 | | [`RenameCpp20Constraints.cpp`, line 1003](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1003) | [R1444.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1444.txt) +R1449 | | [`RenameCpp20Constraints.cpp`, line 1007](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1007) | [R1445.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1445.txt) +R1450 | | [`RenameCpp20Constraints.cpp`, line 1008](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1008) | [R1446.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1446.txt) +R1451 | | [`RenameCpp20Constraints.cpp`, line 1009](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1009) | [R1447.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1447.txt) +R1452 | | [`RenameCpp20Constraints.cpp`, line 1010](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1010) | [R1448.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1448.txt) +R1453 | | [`RenameCpp20Constraints.cpp`, line 1011](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1011) | [R1449.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1449.txt) +R1454 | | [`RenameCpp20Constraints.cpp`, line 1012](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1012) | [R1450.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1450.txt) +R1455 | | [`RenameCpp20Constraints.cpp`, line 1015](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1015) | [R1451.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1451.txt) +R1456 | | [`RenameCpp20Constraints.cpp`, line 1016](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1016) | [R1452.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1452.txt) +R1457 | | [`RenameCpp20Constraints.cpp`, line 1021](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1021) | [R1453.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1453.txt) +R1458 | | [`RenameCpp20Constraints.cpp`, line 1022](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1022) | [R1454.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1454.txt) +R1459 | | [`RenameCpp20Constraints.cpp`, line 1023](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1023) | [R1455.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1455.txt) +R1460 | | [`RenameCpp20Constraints.cpp`, line 1025](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1025) | [R1456.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1456.txt) +R1461 | | [`RenameCpp20Constraints.cpp`, line 1026](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1026) | [R1457.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1457.txt) +R1462 | | [`RenameCpp20Constraints.cpp`, line 1027](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1027) | [R1458.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1458.txt) +R1463 | | [`RenameCpp20Constraints.cpp`, line 1028](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1028) | [R1459.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1459.txt) +R1464 | | [`RenameCpp20Constraints.cpp`, line 1032](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1032) | [R1460.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1460.txt) +R1465 | | [`RenameCpp20Constraints.cpp`, line 1033](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1033) | [R1461.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1461.txt) +R1466 | | [`RenameCpp20Constraints.cpp`, line 1034](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1034) | [R1462.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1462.txt) +R1467 | | [`RenameCpp20Constraints.cpp`, line 1035](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1035) | [R1463.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1463.txt) +R1468 | | [`RenameCpp20Constraints.cpp`, line 1036](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1036) | [R1464.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1464.txt) +R1469 | | [`RenameCpp20Constraints.cpp`, line 1037](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1037) | [R1465.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1465.txt) +R1470 | | [`RenameCpp20Constraints.cpp`, line 1040](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1040) | [R1466.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1466.txt) +R1471 | | [`RenameCpp20Constraints.cpp`, line 1041](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1041) | [R1467.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1467.txt) +R1472 | | [`RenameCpp20Constraints.cpp`, line 1047](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1047) | [R1468.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1468.txt) +R1473 | | [`RenameCpp20Constraints.cpp`, line 1048](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1048) | [R1469.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1469.txt) +R1474 | | [`RenameCpp20Constraints.cpp`, line 1049](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1049) | [R1470.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1470.txt) +R1475 | | [`RenameCpp20Constraints.cpp`, line 1051](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1051) | [R1471.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1471.txt) +R1476 | | [`RenameCpp20Constraints.cpp`, line 1052](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1052) | [R1472.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1472.txt) +R1477 | | [`RenameCpp20Constraints.cpp`, line 1053](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1053) | [R1473.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1473.txt) +R1478 | | [`RenameCpp20Constraints.cpp`, line 1054](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1054) | [R1474.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1474.txt) +R1479 | | [`RenameCpp20Constraints.cpp`, line 1055](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1055) | [R1475.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1475.txt) +R1480 | | [`RenameCpp20Constraints.cpp`, line 1060](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1060) | [R1476.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1476.txt) +R1481 | | [`RenameCpp20Constraints.cpp`, line 1061](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1061) | [R1477.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1477.txt) +R1482 | | [`RenameCpp20Constraints.cpp`, line 1062](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1062) | [R1478.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1478.txt) +R1483 | | [`RenameCpp20Constraints.cpp`, line 1063](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1063) | [R1479.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1479.txt) +R1484 | | [`RenameCpp20Constraints.cpp`, line 1064](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1064) | [R1480.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1480.txt) +R1485 | | [`RenameCpp20Constraints.cpp`, line 1065](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1065) | [R1481.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1481.txt) +R1486 | | [`RenameCpp20Constraints.cpp`, line 1068](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1068) | [R1482.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1482.txt) +R1487 | | [`RenameCpp20Constraints.cpp`, line 1069](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1069) | [R1483.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1483.txt) +R1488 | | [`RenameCpp20Constraints.cpp`, line 1074](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1074) | [R1484.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1484.txt) +R1489 | | [`RenameCpp20Constraints.cpp`, line 1075](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1075) | [R1485.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1485.txt) +R1490 | | [`RenameCpp20Constraints.cpp`, line 1076](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1076) | [R1486.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1486.txt) +R1491 | | [`RenameCpp20Constraints.cpp`, line 1078](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1078) | [R1487.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1487.txt) +R1492 | | [`RenameCpp20Constraints.cpp`, line 1079](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1079) | [R1488.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1488.txt) +R1493 | | [`RenameCpp20Constraints.cpp`, line 1080](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1080) | [R1489.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1489.txt) +R1494 | | [`RenameCpp20Constraints.cpp`, line 1081](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1081) | [R1490.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1490.txt) +R1495 | | [`RenameCpp20Constraints.cpp`, line 1082](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1082) | [R1491.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1491.txt) +R1496 | | [`RenameCpp20Constraints.cpp`, line 1086](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1086) | [R1492.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1492.txt) +R1497 | | [`RenameCpp20Constraints.cpp`, line 1087](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1087) | [R1493.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1493.txt) +R1498 | | [`RenameCpp20Constraints.cpp`, line 1088](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1088) | [R1494.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1494.txt) +R1499 | | [`RenameCpp20Constraints.cpp`, line 1089](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1089) | [R1495.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1495.txt) +R1500 | | [`RenameCpp20Constraints.cpp`, line 1090](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1090) | [R1496.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1496.txt) +R1501 | | [`RenameCpp20Constraints.cpp`, line 1091](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1091) | [R1497.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1497.txt) +R1502 | | [`RenameCpp20Constraints.cpp`, line 1094](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1094) | [R1498.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1498.txt) +R1503 | | [`RenameCpp20Constraints.cpp`, line 1095](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1095) | [R1499.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1499.txt) +R1504 | | [`RenameCpp20Constraints.cpp`, line 1100](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1100) | [R1500.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1500.txt) +R1505 | | [`RenameCpp20Constraints.cpp`, line 1101](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1101) | [R1501.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1501.txt) +R1506 | | [`RenameCpp20Constraints.cpp`, line 1102](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1102) | [R1502.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1502.txt) +R1507 | | [`RenameCpp20Constraints.cpp`, line 1104](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1104) | [R1503.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1503.txt) +R1508 | | [`RenameCpp20Constraints.cpp`, line 1105](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1105) | [R1504.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1504.txt) +R1509 | | [`RenameCpp20Constraints.cpp`, line 1106](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1106) | [R1505.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1505.txt) +R1510 | | [`RenameCpp20Constraints.cpp`, line 1107](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1107) | [R1506.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1506.txt) +R1511 | | [`RenameCpp20Constraints.cpp`, line 1108](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1108) | [R1507.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1507.txt) +R1512 | | [`RenameCpp20Constraints.cpp`, line 1112](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1112) | [R1508.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1508.txt) +R1513 | | [`RenameCpp20Constraints.cpp`, line 1113](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1113) | [R1509.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1509.txt) +R1514 | | [`RenameCpp20Constraints.cpp`, line 1114](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1114) | [R1510.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1510.txt) +R1515 | | [`RenameCpp20Constraints.cpp`, line 1115](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1115) | [R1511.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1511.txt) +R1516 | | [`RenameCpp20Constraints.cpp`, line 1116](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1116) | [R1512.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1512.txt) +R1517 | | [`RenameCpp20Constraints.cpp`, line 1117](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1117) | [R1513.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1513.txt) +R1518 | | [`RenameCpp20Constraints.cpp`, line 1120](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1120) | [R1514.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1514.txt) +R1519 | | [`RenameCpp20Constraints.cpp`, line 1121](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1121) | [R1515.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1515.txt) +R1520 | | [`RenameCpp20Constraints.cpp`, line 1144](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1144) | [R1516.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1516.txt) +R1521 | | [`RenameCpp20Constraints.cpp`, line 1147](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1147) | [R1517.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1517.txt) +R1522 | | [`RenameCpp20Constraints.cpp`, line 1151](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1151) | [R1518.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1518.txt) +R1523 | | [`RenameCpp20Constraints.cpp`, line 1157](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1157) | [R1519.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1519.txt) +R1524 | | [`RenameCpp20Constraints.cpp`, line 1160](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1160) | [R1520.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1520.txt) +R1525 | | [`RenameCpp20Constraints.cpp`, line 1164](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1164) | [R1521.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1521.txt) +R1526 | | [`RenameCpp20Constraints.cpp`, line 1170](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1170) | [R1522.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1522.txt) +R1527 | | [`RenameCpp20Constraints.cpp`, line 1173](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1173) | [R1523.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1523.txt) +R1528 | | [`RenameCpp20Constraints.cpp`, line 1177](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1177) | [R1524.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1524.txt) +R1529 | | [`RenameCpp20Constraints.cpp`, line 1185](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1185) | [R1525.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1525.txt) +R1530 | | [`RenameCpp20Constraints.cpp`, line 1188](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1188) | [R1526.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1526.txt) +R1531 | | [`RenameCpp20Constraints.cpp`, line 1192](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1192) | [R1527.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1527.txt) +R1532 | | [`RenameCpp20Constraints.cpp`, line 1198](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1198) | [R1528.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1528.txt) +R1533 | | [`RenameCpp20Constraints.cpp`, line 1201](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1201) | [R1529.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1529.txt) +R1534 | | [`RenameCpp20Constraints.cpp`, line 1205](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1205) | [R1530.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1530.txt) +R1535 | | [`RenameCpp20Constraints.cpp`, line 1211](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1211) | [R1531.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1531.txt) +R1536 | | [`RenameCpp20Constraints.cpp`, line 1214](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1214) | [R1532.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1532.txt) +R1537 | | [`RenameCpp20Constraints.cpp`, line 1218](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1218) | [R1533.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1533.txt) +R1538 | | [`RenameCpp20Constraints.cpp`, line 1226](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1226) | [R1534.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1534.txt) +R1539 | | [`RenameCpp20Constraints.cpp`, line 1229](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1229) | [R1535.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1535.txt) +R1540 | | [`RenameCpp20Constraints.cpp`, line 1236](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1236) | [R1536.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1536.txt) +R1541 | | [`RenameCpp20Constraints.cpp`, line 1239](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1239) | [R1537.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1537.txt) +R1542 | | [`RenameCpp20Constraints.cpp`, line 1246](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1246) | [R1538.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1538.txt) +R1543 | | [`RenameCpp20Constraints.cpp`, line 1249](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1249) | [R1539.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1539.txt) +R1544 | | [`RenameCpp20Constraints.cpp`, line 1258](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1258) | [R1540.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1540.txt) +R1545 | | [`RenameCpp20Constraints.cpp`, line 1261](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1261) | [R1541.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1541.txt) +R1546 | | [`RenameCpp20Constraints.cpp`, line 1268](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1268) | [R1542.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1542.txt) +R1547 | | [`RenameCpp20Constraints.cpp`, line 1271](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1271) | [R1543.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1543.txt) +R1548 | | [`RenameCpp20Constraints.cpp`, line 1278](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1278) | [R1544.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1544.txt) +R1549 | | [`RenameCpp20Constraints.cpp`, line 1281](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1281) | [R1545.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1545.txt) +R1550 | | [`RenameCpp20Constraints.cpp`, line 1290](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1290) | [R1546.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1546.txt) +R1551 | | [`RenameCpp20Constraints.cpp`, line 1293](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1293) | [R1547.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1547.txt) +R1552 | | [`RenameCpp20Constraints.cpp`, line 1297](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1297) | [R1548.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1548.txt) +R1553 | | [`RenameCpp20Constraints.cpp`, line 1303](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1303) | [R1549.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1549.txt) +R1554 | | [`RenameCpp20Constraints.cpp`, line 1306](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1306) | [R1550.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1550.txt) +R1555 | | [`RenameCpp20Constraints.cpp`, line 1310](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1310) | [R1551.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1551.txt) +R1556 | | [`RenameCpp20Constraints.cpp`, line 1316](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1316) | [R1552.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1552.txt) +R1557 | | [`RenameCpp20Constraints.cpp`, line 1319](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1319) | [R1553.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1553.txt) +R1558 | | [`RenameCpp20Constraints.cpp`, line 1323](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1323) | [R1554.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1554.txt) +R1559 | | [`RenameCpp20Constraints.cpp`, line 1331](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1331) | [R1555.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1555.txt) +R1560 | | [`RenameCpp20Constraints.cpp`, line 1334](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1334) | [R1556.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1556.txt) +R1561 | | [`RenameCpp20Constraints.cpp`, line 1338](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1338) | [R1557.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1557.txt) +R1562 | | [`RenameCpp20Constraints.cpp`, line 1344](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1344) | [R1558.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1558.txt) +R1563 | | [`RenameCpp20Constraints.cpp`, line 1347](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1347) | [R1559.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1559.txt) +R1564 | | [`RenameCpp20Constraints.cpp`, line 1351](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1351) | [R1560.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1560.txt) +R1565 | | [`RenameCpp20Constraints.cpp`, line 1357](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1357) | [R1561.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1561.txt) +R1566 | | [`RenameCpp20Constraints.cpp`, line 1360](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1360) | [R1562.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1562.txt) +R1567 | | [`RenameCpp20Constraints.cpp`, line 1364](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1364) | [R1563.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1563.txt) +R1568 | | [`RenameCpp20Constraints.cpp`, line 1372](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1372) | [R1564.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1564.txt) +R1569 | | [`RenameCpp20Constraints.cpp`, line 1375](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1375) | [R1565.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1565.txt) +R1570 | | [`RenameCpp20Constraints.cpp`, line 1382](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1382) | [R1566.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1566.txt) +R1571 | | [`RenameCpp20Constraints.cpp`, line 1385](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1385) | [R1567.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1567.txt) +R1572 | | [`RenameCpp20Constraints.cpp`, line 1392](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1392) | [R1568.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1568.txt) +R1573 | | [`RenameCpp20Constraints.cpp`, line 1395](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1395) | [R1569.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1569.txt) +R1574 | | [`RenameCpp20Constraints.cpp`, line 1404](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1404) | [R1570.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1570.txt) +R1575 | | [`RenameCpp20Constraints.cpp`, line 1407](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1407) | [R1571.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1571.txt) +R1576 | | [`RenameCpp20Constraints.cpp`, line 1414](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1414) | [R1572.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1572.txt) +R1577 | | [`RenameCpp20Constraints.cpp`, line 1417](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1417) | [R1573.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1573.txt) +R1578 | | [`RenameCpp20Constraints.cpp`, line 1424](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1424) | [R1574.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1574.txt) +R1579 | | [`RenameCpp20Constraints.cpp`, line 1427](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/RefactorTest/RenameCpp20Constraints.cpp#L1427) | [R1575.txt](https://github.com/LegalizeAdulthood/refactor-test-suite/blob/master/results/diffs/R1575.txt)