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 | 6881623775e02331f050c6d1905ca0de50a88559 (patch) | |
| tree | 1d2439242de586b4511f0ac8d725816e46918880 /llvm/lib/System/Path.cpp | |
| parent | 4cee8e33658dd8407e4bc3c7dfeb2156802d81cc (diff) | |
| download | bcm5719-llvm-6881623775e02331f050c6d1905ca0de50a88559.tar.gz bcm5719-llvm-6881623775e02331f050c6d1905ca0de50a88559.zip | |
Make sure IdentifyFileType is in the sys namespace.
llvm-svn: 17806
Diffstat (limited to 'llvm/lib/System/Path.cpp')
| -rw-r--r-- | llvm/lib/System/Path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/System/Path.cpp b/llvm/lib/System/Path.cpp index a530f28273f..1504f0d8312 100644 --- a/llvm/lib/System/Path.cpp +++ b/llvm/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]) { |

