mirror of
https://github.com/postgres/postgres.git
synced 2025-04-29 13:56:47 +03:00
Add dummy variable declaration to PG_FUNCTION_INFO_V1() to prevent
'empty declaration' warnings from compilers that care about such things. Per discussion back before 7.2 release; we didn't do it then because we'd already missed all the beta cycle ...
This commit is contained in:
parent
ba963c651b
commit
a77b862c09
@ -11,7 +11,7 @@
|
|||||||
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: fmgr.h,v 1.25 2002/09/12 00:26:42 momjian Exp $
|
* $Id: fmgr.h,v 1.26 2002/10/25 22:17:32 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -282,7 +282,8 @@ CppConcat(pg_finfo_,funcname) (void) \
|
|||||||
{ \
|
{ \
|
||||||
static Pg_finfo_record my_finfo = { 1 }; \
|
static Pg_finfo_record my_finfo = { 1 }; \
|
||||||
return &my_finfo; \
|
return &my_finfo; \
|
||||||
}
|
} \
|
||||||
|
extern int no_such_variable
|
||||||
|
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------
|
/*-------------------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user