diff options
Diffstat (limited to 'tools/llvm-cvtres/llvm-cvtres.h')
-rw-r--r-- | tools/llvm-cvtres/llvm-cvtres.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/llvm-cvtres/llvm-cvtres.h b/tools/llvm-cvtres/llvm-cvtres.h index eeaba1969036..2e45b66461f0 100644 --- a/tools/llvm-cvtres/llvm-cvtres.h +++ b/tools/llvm-cvtres/llvm-cvtres.h @@ -10,4 +10,10 @@ #ifndef LLVM_TOOLS_LLVMCVTRES_LLVMCVTRES_H #define LLVM_TOOLS_LLVMCVTRES_LLVMCVTRES_H +#include <system_error> + +void error(std::error_code EC); + +enum class machine { UNKNOWN = 0, ARM, X64, X86 }; + #endif |