Skip to content

Commit 6770281

Browse files
committed
Clean up gcc warning about unused static decl.
1 parent 435ed7a commit 6770281

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/backend/access/gist/gist.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
*
88
* IDENTIFICATION
9-
*
9+
* $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.44 1999/07/19 02:06:15 tgl Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -51,7 +51,9 @@ void gistdelete(Relation r, ItemPointer tid);
5151
static IndexTuple gist_tuple_replacekey(Relation r, GISTENTRY entry, IndexTuple t);
5252
static void gistcentryinit(GISTSTATE *giststate, GISTENTRY *e, char *pr,
5353
Relation r, Page pg, OffsetNumber o, int b, bool l);
54+
#ifdef GISTDEBUG
5455
static char *int_range_out(INTRANGE *r);
56+
#endif
5557

5658
/*
5759
** routine to build an index. Basically calls insert over and over

0 commit comments

Comments
 (0)