| 1167 | } |
| 1168 | |
| 1169 | static void |
| 1170 | process_path_reverse_impl (const process_path& x, names& s) |
| 1171 | { |
| 1172 | s.push_back (name (x.recall.directory (), |
| 1173 | string (), |
| 1174 | x.recall.leaf ().string ())); |
| 1175 | |
| 1176 | if (!x.effect.empty ()) |
| 1177 | { |
| 1178 | s.back ().pair = '@'; |
| 1179 | s.push_back (name (x.effect.directory (), |
| 1180 | string (), |
| 1181 | x.effect.leaf ().string ())); |
| 1182 | } |
| 1183 | } |
| 1184 | |
| 1185 | static names_view |
| 1186 | process_path_reverse (const value& v, names& s, bool) |
no test coverage detected