1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-14 10:13:05 +02:00

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.
This commit is contained in:
David Steele 2021-05-18 09:08:06 -04:00
parent 9af033194a
commit dc0e6645cd

View File

@ -10,11 +10,6 @@ nothing is missing or corrupt. It is also useful for reporting, e.g. size of ba
#ifndef INFO_MANIFEST_H #ifndef INFO_MANIFEST_H
#define 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 Constants
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
@ -31,7 +26,11 @@ Object type
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
typedef struct Manifest Manifest; 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/crypto/hash.h"
#include "common/type/variantList.h"
#include "common/type/object.h" #include "common/type/object.h"
#include "info/info.h" #include "info/info.h"
#include "info/infoBackup.h" #include "info/infoBackup.h"