mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
Prevent redeclaration of typedef TocEntry.
Commit9c02e3a986
added a forward declaration for this typedef that caused redeclarations, which is not valid in C99. To fix, add some preprocessor guards to avoid a redefinition, as is done elsewhere (e.g., commit382092a0cd
). Per buildfarm.
This commit is contained in:
@ -286,7 +286,10 @@ typedef int DumpId;
|
||||
*/
|
||||
|
||||
/* forward declaration to avoid including pg_backup_archiver.h here */
|
||||
#ifndef HAVE_TOCENTRY_TYPEDEF
|
||||
typedef struct _tocEntry TocEntry;
|
||||
#define HAVE_TOCENTRY_TYPEDEF 1
|
||||
#endif
|
||||
|
||||
typedef char *(*DefnDumperPtr) (Archive *AH, const void *userArg, const TocEntry *te);
|
||||
typedef int (*DataDumperPtr) (Archive *AH, const void *userArg);
|
||||
|
@ -97,7 +97,10 @@
|
||||
#define WORKER_IGNORED_ERRORS 12
|
||||
|
||||
typedef struct _archiveHandle ArchiveHandle;
|
||||
#ifndef HAVE_TOCENTRY_TYPEDEF
|
||||
typedef struct _tocEntry TocEntry;
|
||||
#define HAVE_TOCENTRY_TYPEDEF 1
|
||||
#endif
|
||||
struct ParallelState;
|
||||
|
||||
#define READ_ERROR_EXIT(fd) \
|
||||
|
Reference in New Issue
Block a user