• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// -*- C++ -*-
2//===-------------------------- system_error ------------------------------===//
3//
4//                     The LLVM Compiler Infrastructure
5//
6// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10#ifndef _LIBCPP_EXPERIMENTAL_SYSTEM_ERROR
11#define _LIBCPP_EXPERIMENTAL_SYSTEM_ERROR
12
13#include <__config>
14
15#ifdef _LIBCPP_WARNING
16_LIBCPP_WARNING("<experimental/system_error> has been removed. Use <system_error> instead.")
17#else
18# warning "<experimental/system_error> has been removed. Use <system_error> instead."
19#endif
20
21#endif // _LIBCPP_EXPERIMENTAL_SYSTEM_ERROR
22