diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 23:26:18 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 23:26:18 +0000 |
commit | a2a62210f2b5fb69364c62e65bb0b8baae6cc50e (patch) | |
tree | 30fb9f2523b19a9f73eebf55723702b6e24d2fc1 /lib/System/Path.cpp | |
parent | 6bb69355d25be940824106eaa88783bf282db626 (diff) |
Make sure IdentifyFileType is in the sys namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Path.cpp')
-rw-r--r-- | lib/System/Path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Path.cpp b/lib/System/Path.cpp index a530f28273..1504f0d831 100644 --- a/lib/System/Path.cpp +++ b/lib/System/Path.cpp @@ -23,7 +23,7 @@ using namespace sys; //===----------------------------------------------------------------------===// LLVMFileType -IdentifyFileType(const char*magic, unsigned length) { +sys::IdentifyFileType(const char*magic, unsigned length) { assert(magic && "Invalid magic number string"); assert(length >=4 && "Invalid magic number length"); switch (magic[0]) { |