diff options
author | Andres Freund | 2019-05-30 20:44:38 +0000 |
---|---|---|
committer | Andres Freund | 2019-05-30 20:44:38 +0000 |
commit | 13002bf0bcdf4900987684ca6ef7665a25aa692b (patch) | |
tree | 33fdf144929f8e4dc14fc2593029ca3161cd1d2e | |
parent | fe415ff10408a1487d5773b47459306476ec58f0 (diff) |
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/[email protected]
-rw-r--r-- | src/include/access/tableam.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/access/tableam.h b/src/include/access/tableam.h index bf3a472018..af1dcfb8e2 100644 --- a/src/include/access/tableam.h +++ b/src/include/access/tableam.h @@ -33,7 +33,6 @@ extern bool synchronize_seqscans; struct BulkInsertStateData; struct IndexInfo; -struct IndexBuildCallback; struct SampleScanState; struct TBMIterateResult; struct VacuumParams; |