| 415 | } |
| 416 | |
| 417 | static TString CutFirstSlash(const TString& fileName) { |
| 418 | if (fileName[0] == '/') { |
| 419 | return fileName.substr(1); |
| 420 | } else { |
| 421 | return fileName; |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | struct TMappingReader { |
| 426 | TMemoryMap Map; |
no test coverage detected