diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-23 22:14:32 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-23 22:14:32 +0000 |
commit | c84ee1aee069523e964e140c80559fcc06cd89af (patch) | |
tree | e5934f99330f59ce80fbb19e8297388de300af79 /llvm/lib/System | |
parent | e50986b39fac93707e005cb0caf603a4eb26f0ea (diff) | |
download | bcm5719-llvm-c84ee1aee069523e964e140c80559fcc06cd89af.tar.gz bcm5719-llvm-c84ee1aee069523e964e140c80559fcc06cd89af.zip |
Put CopyFile in the sys namespace.
llvm-svn: 19122
Diffstat (limited to 'llvm/lib/System')
-rw-r--r-- | llvm/lib/System/Win32/Path.cpp | 2 |
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() + "'"); |