Changeset: 91024b6beb86 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/91024b6beb86 Modified Files: gdk/gdk_calc_private.h Branch: default Log Message:
Fix merge: make white space equal. diffs (31 lines): diff --git a/gdk/gdk_calc_private.h b/gdk/gdk_calc_private.h --- a/gdk/gdk_calc_private.h +++ b/gdk/gdk_calc_private.h @@ -657,22 +657,22 @@ BUN dofsum(const void *restrict values, * anyway */ typedef double ldouble; #ifdef TRUNCATE_NUMBERS -#define rounddbl(x) (x) +#define rounddbl(x) (x) #else -#define rounddbl(x) round(x) +#define rounddbl(x) round(x) #endif #else typedef long double ldouble; #ifdef TRUNCATE_NUMBERS -#define rounddbl(x) (x) +#define rounddbl(x) (x) #else #ifdef HAVE_HGE /* can't round to hge via lng since we might loose significant bits, so * just keep it long double */ -#define rounddbl(x) roundl(x) +#define rounddbl(x) roundl(x) #else /* round long double to long long int in one go */ -#define rounddbl(x) llroundl(x) +#define rounddbl(x) llroundl(x) #endif #endif #endif _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
