diff options
author | Tom Lane | 2002-10-25 22:08:44 +0000 |
---|---|---|
committer | Tom Lane | 2002-10-25 22:08:44 +0000 |
commit | ba963c651b5940efc8b8c163f2405f9857552b17 (patch) | |
tree | 90a80b76c71aca96a96dc3fcac089b55a0636d19 | |
parent | ed7be7292e8645bea0101a9e4bea6751faa6d097 (diff) |
Remove #warning directive, which is nonstandard and isn't really
buying us anything to make it worth the porting risk. Per discussion
quite some time ago.
-rw-r--r-- | src/include/utils/int8.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/include/utils/int8.h b/src/include/utils/int8.h index f8b337e3c0c..3cd2319e6eb 100644 --- a/src/include/utils/int8.h +++ b/src/include/utils/int8.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: int8.h,v 1.35 2002/09/18 21:35:25 tgl Exp $ + * $Id: int8.h,v 1.36 2002/10/25 22:08:44 tgl Exp $ * * NOTES * These data types are supported on all 64-bit architectures, and may @@ -23,12 +23,6 @@ #include "fmgr.h" -/* this should be set in pg_config.h, but just in case it wasn't: */ -#ifndef INT64_FORMAT -#warning "Broken pg_config.h should have defined INT64_FORMAT" -#define INT64_FORMAT "%ld" -#endif - extern bool scanint8(const char *str, bool errorOK, int64 *result); extern Datum int8in(PG_FUNCTION_ARGS); |