diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2004-12-13 06:26:35 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2004-12-13 06:26:35 +0000 |
commit | 3265369ff528e09a71cc8f1ce20f28f65d8e2bcc (patch) | |
tree | e344d75a37a9d1f17d69768d803c14bcdb70ac5e /lib/System/Win32/Path.inc | |
parent | efd6bb37a36c6f6d1581e9d28923c09f30cd186d (diff) |
Fix recent breakage of win32 build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18876 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Win32/Path.inc')
-rw-r--r-- | lib/System/Win32/Path.inc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index cb4594194a..095417f0fe 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -244,14 +244,6 @@ Path::isBytecodeFile() const { } bool -Path::isArchive() const { - if (readable()) { - return hasMagicNumber("!<arch>\012"); - } - return false; -} - -bool Path::exists() const { DWORD attr = GetFileAttributes(path.c_str()); return attr != INVALID_FILE_ATTRIBUTES; |