summaryrefslogtreecommitdiff
path: root/include/llvm/Support/system_error.h
blob: 1b48ba935e90e93f827264dfad4fc68bc269a25d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//===---------------------------- 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;
}

#endif