mirror of
https://github.com/postgres/postgres.git
synced 2025-09-09 13:09:39 +03:00
Fix warnings re typedef redefinition in ea7b4e9a2a
and 3311ea86ed
Per gripe from Tom Lane and the buildfarm
This commit is contained in:
@@ -91,12 +91,13 @@ typedef struct
|
||||
char *manifest_checksum;
|
||||
} JsonManifestParseState;
|
||||
|
||||
typedef struct JsonManifestParseIncrementalState
|
||||
/* typedef appears in parse_manifest.h */
|
||||
struct JsonManifestParseIncrementalState
|
||||
{
|
||||
JsonLexContext lex;
|
||||
JsonSemAction sem;
|
||||
pg_cryptohash_ctx *manifest_ctx;
|
||||
} JsonManifestParseIncrementalState;
|
||||
};
|
||||
|
||||
static JsonParseErrorType json_manifest_object_start(void *state);
|
||||
static JsonParseErrorType json_manifest_object_end(void *state);
|
||||
|
Reference in New Issue
Block a user