summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-30 13:08:53 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-01-30 13:08:59 (GMT)
commitbcec7d0778eb87ea58d720d9e20710dc2cdfdab6 (patch)
tree7bac9b7800d73cee8b7e05143788f9edaff64fb9 /Source/cmSystemTools.h
parent8ec149003e756d4a40f86b9025acb15f7ff82136 (diff)
parentc31b6e616d5c2d697696540ca2e8faf14160d2b0 (diff)
downloadCMake-bcec7d0778eb87ea58d720d9e20710dc2cdfdab6.zip
CMake-bcec7d0778eb87ea58d720d9e20710dc2cdfdab6.tar.gz
CMake-bcec7d0778eb87ea58d720d9e20710dc2cdfdab6.tar.bz2
Merge topic 'copyfile-stdstring'
c31b6e616d cmSystemTools: copy file member functions accept std::string params Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2877
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r--Source/cmSystemTools.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h
index b1d5751..98ada60 100644
--- a/Source/cmSystemTools.h
+++ b/Source/cmSystemTools.h
@@ -179,8 +179,8 @@ public:
std::vector<std::string>& files, int type = 0);
///! Copy a file.
- static bool cmCopyFile(const char* source, const char* destination);
- static bool CopyFileIfDifferent(const char* source, const char* destination);
+ static bool cmCopyFile(const std::string& source,
+ const std::string& destination);
/** Rename a file or directory within a single disk volume (atomic
if possible). */