diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-16 07:08:38 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-16 07:08:38 +0000 |
commit | 08bfab175aa49d27429aa3ac1829ab793fc4bce2 (patch) | |
tree | 899e7fa342bab2b1b250d66fa9e2733578266040 /lib/System/ErrorCode.cpp | |
parent | 2a069fa0034e974481307916ccfea6c0e625b956 (diff) |
Remove lib/System contents until a satisfactory solution can be
provided.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15816 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/ErrorCode.cpp')
-rw-r--r-- | lib/System/ErrorCode.cpp | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/lib/System/ErrorCode.cpp b/lib/System/ErrorCode.cpp deleted file mode 100644 index 5f340cc7b5..0000000000 --- a/lib/System/ErrorCode.cpp +++ /dev/null @@ -1,38 +0,0 @@ -//===- ErrorCode.cpp - Define the ErrorCode class ---------------*- C++ -*-===// -// -// Copyright (C) 2004 eXtensible Systems, Inc. All Rights Reserved. -// -// This program is open source software; you can redistribute it and/or modify -// it under the terms of the University of Illinois Open Source License. See -// LICENSE.TXT (distributed with this software) for details. -// -// This program is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -// or FITNESS FOR A PARTICULAR PURPOSE. -// -//===----------------------------------------------------------------------===// -// -// This file defines the members of the llvm::sys::ErrorCode class. This class -// is used to hold operating system and other error codes in a platform -// agnostic manner. -// -//===----------------------------------------------------------------------===// -/// @file lib/System/ErrorCode.h -/// @author Reid Spencer <raspencer@x10sys.com> (original author) -/// @version \verbatim $Id$ \endverbatim -/// @date 2004/08/14 -/// @since 1.4 -/// @brief Declares the llvm::sys::ErrorCode class. -//===----------------------------------------------------------------------===// - -#include "llvm/System/ErrorCode.h" - -namespace llvm { -namespace sys { - -} -} - -#include "linux/ErrorCode.cpp" - -// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab |