LLVM API Documentation

WindowsError.h
Go to the documentation of this file.
00001 //===-- WindowsError.h - Support for mapping windows errors to posix-------===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 
00010 #ifndef LLVM_SUPPORT_WINDOWSERROR_H
00011 #define LLVM_SUPPORT_WINDOWSERROR_H
00012 
00013 #include <system_error>
00014 
00015 namespace llvm {
00016 std::error_code mapWindowsError(unsigned EV);
00017 }
00018 
00019 #endif