| 481 | } |
| 482 | |
| 483 | static void RenameFeatureSetFile(const std::string &FeaturesDir, |
| 484 | const std::string &OldFile, |
| 485 | const std::string &NewFile) { |
| 486 | if (FeaturesDir.empty()) return; |
| 487 | RenameFile(DirPlusFile(FeaturesDir, OldFile), |
| 488 | DirPlusFile(FeaturesDir, NewFile)); |
| 489 | } |
| 490 | |
| 491 | static void WriteEdgeToMutationGraphFile(const std::string &MutationGraphFile, |
| 492 | const InputInfo *II, |
no test coverage detected