ad2c99c25c1bf0e385ca1c820124d52816d142a0
[oota-llvm.git] / include / llvm / Support / system_error.h
1 //===---------------------------- system_error ------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This is a temporary file to help with the transition to std::error_code.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_SUPPORT_SYSTEM_ERROR_H
15 #define LLVM_SUPPORT_SYSTEM_ERROR_H
16
17 #include <system_error>
18
19 namespace llvm {
20 using std::error_code;
21 using std::generic_category;
22 using std::error_category;
23 using std::make_error_code;
24 using std::error_condition;
25 }
26
27 #endif