1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-08 07:21:33 +03:00

Remove unnecessary (and wrong) forward declaration.

Interestingly only C++ compilers have, so far, complained about this
odd forward declaration. This originated when IndexBuildCallback was
defined in another file, but now is completely unnecessary (but was
wrong before too, cpluspluscheck just wouldn't have noticed).

Reported-By: Tom Lane
Discussion: https://postgr.es/m/53941.1559239260@sss.pgh.pa.us
This commit is contained in:
Andres Freund 2019-05-30 13:44:38 -07:00
parent fe415ff104
commit 13002bf0bc

View File

@ -33,7 +33,6 @@ extern bool synchronize_seqscans;
struct BulkInsertStateData; struct BulkInsertStateData;
struct IndexInfo; struct IndexInfo;
struct IndexBuildCallback;
struct SampleScanState; struct SampleScanState;
struct TBMIterateResult; struct TBMIterateResult;
struct VacuumParams; struct VacuumParams;