1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Add dummy field to currently empty struct TupleTableSlotOps.

Per MSVC complaint on buildfarm member dory.
This commit is contained in:
Andres Freund
2018-11-15 22:29:50 -08:00
parent 7ef04e4d2c
commit f92cd73923

View File

@ -162,6 +162,8 @@ typedef struct TupleTableSlot
/* routines for a TupleTableSlot implementation */ /* routines for a TupleTableSlot implementation */
struct TupleTableSlotOps struct TupleTableSlotOps
{ {
/* body will be replaced in later commit */
int dummy;
}; };
/* /*