aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/System
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-18 00:14:24 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-18 00:14:24 +0000
commit3874730dd4d51438d2d2ed03c4ae8a2c22111da1 (patch)
treefd2a161dfa58f0b761774883b4d9673b8edc3cf8 /include/llvm/System
parent6b4f501470b7a380c433c2723d6cef2e72c66467 (diff)
downloadexternal_llvm-3874730dd4d51438d2d2ed03c4ae8a2c22111da1.zip
external_llvm-3874730dd4d51438d2d2ed03c4ae8a2c22111da1.tar.gz
external_llvm-3874730dd4d51438d2d2ed03c4ae8a2c22111da1.tar.bz2
Correct the name of the method. CopyFiles -> CopyFile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19025 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System')
-rw-r--r--include/llvm/System/Path.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h
index 3790510..9abb3a0 100644
--- a/include/llvm/System/Path.h
+++ b/include/llvm/System/Path.h
@@ -592,7 +592,7 @@ namespace sys {
/// file specified by Dest. If an error occurs, Dest is removed.
/// @throws std::string if an error opening or writing the files occurs.
/// @brief Copy one file to another.
- void CopyFiles(const Path& Dest, const Path& Src);
+ void CopyFile(const Path& Dest, const Path& Src);
}
inline std::ostream& operator<<(std::ostream& strm, const sys::Path& aPath) {