From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (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 C5A1B4696C5 for ; Fri, 10 Apr 2020 19:56:46 +0300 (MSK) References: <616426a33b353b302f155b01e22cbf61ba5f768c.1586476073.git.sergepetrenko@tarantool.org> From: Vladislav Shpilevoy Message-ID: <11473075-0c39-cda2-68e4-0dd1f6469f3d@tarantool.org> Date: Fri, 10 Apr 2020 18:56:45 +0200 MIME-Version: 1.0 In-Reply-To: <616426a33b353b302f155b01e22cbf61ba5f768c.1586476073.git.sergepetrenko@tarantool.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Tarantool-patches] [PATCH v2 1/4] refactoring: extract mpstream into a separate library List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Serge Petrenko Cc: tarantool-patches@dev.tarantool.org Thanks for the patch! > diff --git a/src/lib/core/mpstream.c b/src/lib/mpstream/mpstream.c > similarity index 99% > rename from src/lib/core/mpstream.c > rename to src/lib/mpstream/mpstream.c > index 2be1797d0..a737212c1 100644 > --- a/src/lib/core/mpstream.c > +++ b/src/lib/mpstream/mpstream.c > @@ -33,7 +33,7 @@ > #include > #include > #include "msgpuck.h" > -#include "mp_decimal.h" > +#include "core/mp_decimal.h" You can keep it as is, anyway core/ is added to -I, so all files there are visible without core/ prefix. In all next patches too.