| 329 | static bool Quiet = false; |
| 330 | |
| 331 | static inline void Append(IOutputStream& w, const TString& fname, const TString& rname) { |
| 332 | TMappedFileInput in(fname); |
| 333 | |
| 334 | if (!Quiet) { |
| 335 | Cerr << "--> " << rname << Endl; |
| 336 | } |
| 337 | |
| 338 | TransferData((IInputStream*)&in, &w); |
| 339 | } |
| 340 | |
| 341 | static inline void Append(TDuplicatesMap& w, const TString& fname, const TString& rname) { |
| 342 | w.Add(fname, rname); |
no test coverage detected