From ab964a6ceed04d64fc1568196ba7c2adfc6d0c49 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 17 Jun 2014 19:01:45 +0000 Subject: (svn r26651) -Fix: make sure an abs is used that supports int64 when using abs on those variables --- src/safeguards.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/safeguards.h') diff --git a/src/safeguards.h b/src/safeguards.h index 12d704879..f447627e6 100644 --- a/src/safeguards.h +++ b/src/safeguards.h @@ -56,4 +56,19 @@ /* No clear replacement. */ #define strtok SAFEGUARD_DO_NOT_USE_THIS_METHOD +/* Use our own templated implementation instead of a macro or function with only one type. */ +#ifdef min +#undef min +#endif + +/* Use our own templated implementation instead of a macro or function with only one type. */ +#ifdef max +#undef max +#endif + +/* Use our own templated implementation instead of a macro or function with only one type. */ +#ifdef abs +#undef abs +#endif + #endif /* SAFEGUARDS_H */ -- cgit v1.2.3-54-g00ecf