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 5DDF4445320 for ; Mon, 27 Jul 2020 17:07:06 +0300 (MSK) Received: by mail-lj1-f195.google.com with SMTP id g6so4759526ljn.11 for ; Mon, 27 Jul 2020 07:07:06 -0700 (PDT) From: Cyrill Gorcunov Date: Mon, 27 Jul 2020 17:06:45 +0300 Message-Id: <20200727140650.447750-2-gorcunov@gmail.com> In-Reply-To: <20200727140650.447750-1-gorcunov@gmail.com> References: <20200727140650.447750-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v3 1/6] 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. Part-of #5129 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