From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Mon, 24 Jun 2019 13:23:23 +0300 From: Vladimir Davydov Subject: Re: [PATCH v4 2/6] box: rework box_lua_{call, eval} to use input port Message-ID: <20190624102323.ixwln6zs5u2fzqqn@esperanza> References: <6f7bc551d1ef1819afc47d83142e1156db30093b.1561298197.git.kshcherbatov@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6f7bc551d1ef1819afc47d83142e1156db30093b.1561298197.git.kshcherbatov@tarantool.org> To: Kirill Shcherbatov Cc: tarantool-patches@freelists.org List-ID: On Sun, Jun 23, 2019 at 04:57:53PM +0300, Kirill Shcherbatov wrote: > diff --git a/src/box/func.h b/src/box/func.h > index fa4d738ab..f6494d064 100644 > --- a/src/box/func.h > +++ b/src/box/func.h > @@ -42,6 +42,9 @@ > extern "C" { > #endif /* defined(__cplusplus) */ > > +struct func; > +struct lua_State; > + Pointless forward declarations. Removed them and pushed the patch to master.