From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f195.google.com (mail-lj1-f195.google.com [209.85.208.195]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 639B4445320 for ; Thu, 23 Jul 2020 15:30:06 +0300 (MSK) Received: by mail-lj1-f195.google.com with SMTP id q6so6125448ljp.4 for ; Thu, 23 Jul 2020 05:30:06 -0700 (PDT) From: Cyrill Gorcunov Date: Thu, 23 Jul 2020 15:29:36 +0300 Message-Id: <20200723122942.196011-2-gorcunov@gmail.com> In-Reply-To: <20200723122942.196011-1-gorcunov@gmail.com> References: <20200723122942.196011-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v2 1/7] journal: drop redundant declaration List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml Cc: Vladislav Shpilevoy We declare journal_entry right below no need for more declarations. Signed-off-by: Cyrill Gorcunov --- src/box/journal.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/box/journal.h b/src/box/journal.h index 1a10e66c3..9049a2ce0 100644 --- a/src/box/journal.h +++ b/src/box/journal.h @@ -40,7 +40,6 @@ extern "C" { #endif /* defined(__cplusplus) */ struct xrow_header; -struct journal_entry; /** * An entry for an abstract journal. -- 2.26.2