From a2a62210f2b5fb69364c62e65bb0b8baae6cc50e Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 14 Nov 2004 23:26:18 +0000 Subject: [PATCH] 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 --- lib/System/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) { -- 2.34.1