Add missing API comment to DeleteFile

This commit is contained in:
jonawals
2021-05-27 12:09:28 +01:00
parent de38e5ad35
commit a91e9caaf9
@@ -77,8 +77,9 @@ namespace TestImpact
});
}
inline void DeleteFile(const RepoPath& path)
//! Deletes the specified file.
inline void DeleteFile(const RepoPath& file)
{
DeleteFiles(path.ParentPath(), path.Filename().Native());
DeleteFiles(file.ParentPath(), file.Filename().Native());
}
} // namespace TestImpact