summaryrefslogtreecommitdiff
path: root/include/llvm/Support/system_error.h
blob: 932fc1e1ad03749b502db60d4e22f2f0639eadf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//===---------------------------- system_error ------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This is a temporary file to help with the transition to std::error_code.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_SUPPORT_SYSTEM_ERROR_H
#define LLVM_SUPPORT_SYSTEM_ERROR_H

#include <system_error>

namespace llvm {
using std::error_code;
using std::generic_category;
using std::make_error_code;
}

#endif