[llvm-commits] CVS: llvm/lib/System/Path.cpp

Reid Spencer reid at x10sys.com
Sun Nov 14 15:26:55 PST 2004



Changes in directory llvm/lib/System:

Path.cpp updated: 1.8 -> 1.9
---
Log message:

Make sure IdentifyFileType is in the sys namespace.


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/System/Path.cpp
diff -u llvm/lib/System/Path.cpp:1.8 llvm/lib/System/Path.cpp:1.9
--- llvm/lib/System/Path.cpp:1.8	Sun Nov 14 16:37:42 2004
+++ llvm/lib/System/Path.cpp	Sun Nov 14 17:26:18 2004
@@ -23,7 +23,7 @@
 //===----------------------------------------------------------------------===//
 
 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]) {






More information about the llvm-commits mailing list