From dc0e6645cd5c4baa3f301feda4acfce55ba363f7 Mon Sep 17 00:00:00 2001 From: David Steele Date: Tue, 18 May 2021 09:08:06 -0400 Subject: [PATCH] Move includes after typedef in info/manifest.h. This allows the Manifest type to be used in headers that need it, e.g. command/backup/common.h. --- src/info/manifest.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/info/manifest.h b/src/info/manifest.h index f95a2afe4..35119379b 100644 --- a/src/info/manifest.h +++ b/src/info/manifest.h @@ -10,11 +10,6 @@ nothing is missing or corrupt. It is also useful for reporting, e.g. size of ba #ifndef INFO_MANIFEST_H #define INFO_MANIFEST_H -#include "command/backup/common.h" -#include "common/compress/helper.h" -#include "common/crypto/common.h" -#include "common/type/variantList.h" - /*********************************************************************************************************************************** Constants ***********************************************************************************************************************************/ @@ -31,7 +26,11 @@ Object type ***********************************************************************************************************************************/ typedef struct Manifest Manifest; +#include "command/backup/common.h" +#include "common/compress/helper.h" +#include "common/crypto/common.h" #include "common/crypto/hash.h" +#include "common/type/variantList.h" #include "common/type/object.h" #include "info/info.h" #include "info/infoBackup.h"