summaryrefslogtreecommitdiffstats
path: root/llvm/lib/System/Win32
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-23 22:14:32 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-23 22:14:32 +0000
commitc84ee1aee069523e964e140c80559fcc06cd89af (patch)
treee5934f99330f59ce80fbb19e8297388de300af79 /llvm/lib/System/Win32
parente50986b39fac93707e005cb0caf603a4eb26f0ea (diff)
downloadbcm5719-llvm-c84ee1aee069523e964e140c80559fcc06cd89af.tar.gz
bcm5719-llvm-c84ee1aee069523e964e140c80559fcc06cd89af.zip
Put CopyFile in the sys namespace.
llvm-svn: 19122
Diffstat (limited to 'llvm/lib/System/Win32')
-rw-r--r--llvm/lib/System/Win32/Path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/System/Win32/Path.cpp b/llvm/lib/System/Win32/Path.cpp
index 9141ce086f2..c50877afb1a 100644
--- a/llvm/lib/System/Win32/Path.cpp
+++ b/llvm/lib/System/Win32/Path.cpp
@@ -573,7 +573,7 @@ bool Path::getMagicNumber(std::string& Magic, unsigned len) const {
}
void
-CopyFile(const sys::Path &Dest, const sys::Path &Src) {
+sys::CopyFile(const sys::Path &Dest, const sys::Path &Src) {
if (!::CopyFile(Src.c_str(), Dest.c_str(), false))
ThrowError("Can't copy '" + Src.toString() +
"' to '" + Dest.toString() + "'");
OpenPOWER on IntegriCloud