Make sure IdentifyFileType is in the sys namespace.
authorReid Spencer <rspencer@reidspencer.com>
Sun, 14 Nov 2004 23:26:18 +0000 (23:26 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 14 Nov 2004 23:26:18 +0000 (23:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17806 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Path.cpp

index a530f28273f9b7c7ac7d16015c9da3a6a7a8a405..1504f0d83127497edea22396f4765bb49a518170 100644 (file)
@@ -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]) {