From a91e9caaf9861d7b99eee717f9c09ba8ebb7775e Mon Sep 17 00:00:00 2001 From: jonawals Date: Thu, 27 May 2021 12:09:28 +0100 Subject: [PATCH] Add missing API comment to DeleteFile --- .../Code/Include/TestImpactFramework/TestImpactFileUtils.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactFileUtils.h b/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactFileUtils.h index aa64840e78..ffecd27c23 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactFileUtils.h +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Include/TestImpactFramework/TestImpactFileUtils.h @@ -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