From a68dac7282b66298278f39dcfeff98517f98eae2 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Wed, 16 May 2018 23:38:14 +0000 Subject: [PATCH] JIT: add missing header after fd525ae1cf83 In file included from Utilities/JIT.cpp:1: Utilities/JIT.h:33:23: error: implicit instantiation of undefined template 'std::__1::array' std::array args; ^ /usr/include/c++/v1/__tuple:223:64: note: template is declared here template struct _LIBCPP_TEMPLATE_VIS array; ^ --- Utilities/JIT.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Utilities/JIT.h b/Utilities/JIT.h index 367c52678a..cc5345e3df 100644 --- a/Utilities/JIT.h +++ b/Utilities/JIT.h @@ -4,6 +4,7 @@ #define ASMJIT_DEBUG #include "asmjit.h" +#include #include namespace asmjit