aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-21 03:27:08 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-21 03:27:08 +0000
commit78076f6140d605f860d3a65167f3bfb42e2522d4 (patch)
treed6c845ad48cb24c9f9bbfaae31fa6c035b3b5225
parent682084a15791fd48f64c08d3f74fa7faac9ecd19 (diff)
downloadexternal_llvm-78076f6140d605f860d3a65167f3bfb42e2522d4.zip
external_llvm-78076f6140d605f860d3a65167f3bfb42e2522d4.tar.gz
external_llvm-78076f6140d605f860d3a65167f3bfb42e2522d4.tar.bz2
Put the CopyFile function explicitly in the sys namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19079 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/System/Unix/Path.cpp2
-rw-r--r--lib/System/Unix/Path.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/System/Unix/Path.cpp b/lib/System/Unix/Path.cpp
index 3357330..e0ca7df 100644
--- a/lib/System/Unix/Path.cpp
+++ b/lib/System/Unix/Path.cpp
@@ -548,7 +548,7 @@ Path::setStatusInfo(const StatusInfo& si) const {
}
void
-CopyFile(const sys::Path &Dest, const sys::Path &Src) {
+sys::CopyFile(const sys::Path &Dest, const sys::Path &Src) {
int inFile = -1;
int outFile = -1;
try {
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc
index 3357330..e0ca7df 100644
--- a/lib/System/Unix/Path.inc
+++ b/lib/System/Unix/Path.inc
@@ -548,7 +548,7 @@ Path::setStatusInfo(const StatusInfo& si) const {
}
void
-CopyFile(const sys::Path &Dest, const sys::Path &Src) {
+sys::CopyFile(const sys::Path &Dest, const sys::Path &Src) {
int inFile = -1;
int outFile = -1;
try {