From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp51.i.mail.ru (smtp51.i.mail.ru [94.100.177.111]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 923D0469719 for ; Fri, 16 Oct 2020 18:27:03 +0300 (MSK) From: Sergey Kaplun Date: Fri, 16 Oct 2020 18:26:32 +0300 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 1/3] misc: add lmisclib.h to lua.hpp header List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Igor Munkin , Sergey Ostanevich Cc: tarantool-patches@dev.tarantool.org This patch adds missing lmisclib.h header to C++ wrapper for LuaJIT header files as part of extended public API. Follows up tarantool/tarantool#5187 --- src/lua.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lua.hpp b/src/lua.hpp index 07e9002..56ae165 100644 --- a/src/lua.hpp +++ b/src/lua.hpp @@ -5,5 +5,6 @@ extern "C" { #include "lauxlib.h" #include "lualib.h" #include "luajit.h" +#include "lmisclib.h" } -- 2.28.0