From: Reid Spencer Date: Sun, 14 Nov 2004 23:26:18 +0000 (+0000) Subject: Make sure IdentifyFileType is in the sys namespace. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a2a62210f2b5fb69364c62e65bb0b8baae6cc50e;p=oota-llvm.git 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 --- diff --git a/lib/System/Path.cpp b/lib/System/Path.cpp index a530f28273f..1504f0d8312 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]) {