From: Tatsuo Ishii Date: Mon, 1 Oct 2001 02:31:33 +0000 (+0000) Subject: Remove C++ style comment. Some compilers won't accept it. X-Git-Tag: REL7_2_BETA1~249 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8443da57a0843b93eb2f92cbc799d33534ff630;p=postgresql Remove C++ style comment. Some compilers won't accept it. --- diff --git a/src/backend/utils/adt/nabstime.c b/src/backend/utils/adt/nabstime.c index ca8d728454..b7ac0784d5 100644 --- a/src/backend/utils/adt/nabstime.c +++ b/src/backend/utils/adt/nabstime.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.86 2001/09/28 08:09:11 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.87 2001/10/01 02:31:33 ishii Exp $ * * NOTES * @@ -190,7 +190,9 @@ GetCurrentAbsoluteTimeUsec(int *usec) { time_t now; struct timeval tp; -// struct timezone tpz; +#ifdef NOT_USED + struct timezone tpz; +#endif #if defined(HAVE_TM_ZONE) || defined(HAVE_INT_TIMEZONE) struct tm *tm; #else