summaryrefslogtreecommitdiff
path: root/lib/System
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2006-04-29 18:41:44 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2006-04-29 18:41:44 +0000
commit10a59ce7018d7e4c32c801f9ed3d2ab18751d9d6 (patch)
treed84f556dc7b1996ff7de0329940298323370066f /lib/System
parent25c344a7589054bd3f6ad31c777a02fb4916c31f (diff)
downloadllvm-10a59ce7018d7e4c32c801f9ed3d2ab18751d9d6.tar.gz
llvm-10a59ce7018d7e4c32c801f9ed3d2ab18751d9d6.tar.bz2
llvm-10a59ce7018d7e4c32c801f9ed3d2ab18751d9d6.tar.xz
Mingw32 patches supplied by Anton Korobeynikov.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28023 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System')
-rw-r--r--lib/System/Win32/Path.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc
index 92ab62f3cd..8f3ceebb28 100644
--- a/lib/System/Win32/Path.inc
+++ b/lib/System/Win32/Path.inc
@@ -741,7 +741,7 @@ Path::setStatusInfoOnDisk(const StatusInfo& si) const {
}
void
-sys::CopyFile(const sys::Path &Dest, const sys::Path &Src) {
+CopyFile(const sys::Path &Dest, const sys::Path &Src) {
// Can't use CopyFile macro defined in Windows.h because it would mess up the
// above line. We use the expansion it would have in a non-UNICODE build.
if (!::CopyFileA(Src.c_str(), Dest.c_str(), false))