From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f193.google.com (mail-lj1-f193.google.com [209.85.208.193]) (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 A1EC7445320 for ; Wed, 22 Jul 2020 18:34:14 +0300 (MSK) Received: by mail-lj1-f193.google.com with SMTP id h22so2940085lji.9 for ; Wed, 22 Jul 2020 08:34:14 -0700 (PDT) From: Cyrill Gorcunov Date: Wed, 22 Jul 2020 18:33:55 +0300 Message-Id: <20200722153359.134718-2-gorcunov@gmail.com> In-Reply-To: <20200722153359.134718-1-gorcunov@gmail.com> References: <20200722153359.134718-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 1/5] 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