Skip to content
Snippets Groups Projects
Commit b1f10c84 authored by Tom Lane's avatar Tom Lane
Browse files

Ensure macros are adequately parenthesized.

parent fa9a95d6
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2001, 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: datetime.h,v 1.19 2001/06/18 16:14:43 momjian Exp $ * $Id: datetime.h,v 1.20 2001/07/10 01:39:20 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include <time.h> #include <time.h>
#include <math.h> #include <math.h>
#include <limits.h> #include <limits.h>
#include "utils/timestamp.h" #include "utils/timestamp.h"
...@@ -218,9 +219,9 @@ extern int day_tab[2][13]; ...@@ -218,9 +219,9 @@ extern int day_tab[2][13];
#define JULIAN_MINMONTH (11) #define JULIAN_MINMONTH (11)
#define JULIAN_MINDAY (23) #define JULIAN_MINDAY (23)
#define IS_VALID_JULIAN(y,m,d) ((y > JULIAN_MINYEAR) \ #define IS_VALID_JULIAN(y,m,d) (((y) > JULIAN_MINYEAR) \
|| ((y == JULIAN_MINYEAR) && ((m > JULIAN_MINMONTH) \ || (((y) == JULIAN_MINYEAR) && (((m) > JULIAN_MINMONTH) \
|| ((m == JULIAN_MINMONTH) && (d >= JULIAN_MINDAY))))) || (((m) == JULIAN_MINMONTH) && ((d) >= JULIAN_MINDAY)))))
#define UTIME_MINYEAR (1901) #define UTIME_MINYEAR (1901)
#define UTIME_MINMONTH (12) #define UTIME_MINMONTH (12)
...@@ -229,12 +230,12 @@ extern int day_tab[2][13]; ...@@ -229,12 +230,12 @@ extern int day_tab[2][13];
#define UTIME_MAXMONTH (01) #define UTIME_MAXMONTH (01)
#define UTIME_MAXDAY (18) #define UTIME_MAXDAY (18)
#define IS_VALID_UTIME(y,m,d) (((y > UTIME_MINYEAR) \ #define IS_VALID_UTIME(y,m,d) ((((y) > UTIME_MINYEAR) \
|| ((y == UTIME_MINYEAR) && ((m > UTIME_MINMONTH) \ || (((y) == UTIME_MINYEAR) && (((m) > UTIME_MINMONTH) \
|| ((m == UTIME_MINMONTH) && (d >= UTIME_MINDAY))))) \ || (((m) == UTIME_MINMONTH) && ((d) >= UTIME_MINDAY))))) \
&& ((y < UTIME_MAXYEAR) \ && (((y) < UTIME_MAXYEAR) \
|| ((y == UTIME_MAXYEAR) && ((m < UTIME_MAXMONTH) \ || (((y) == UTIME_MAXYEAR) && (((m) < UTIME_MAXMONTH) \
|| ((m == UTIME_MAXMONTH) && (d <= UTIME_MAXDAY)))))) || (((m) == UTIME_MAXMONTH) && ((d) <= UTIME_MAXDAY))))))
extern void GetCurrentTime(struct tm * tm); extern void GetCurrentTime(struct tm * tm);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment