From 9df3a2a547efad089bab177a8b9e285a04287f07 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Fri, 30 Sep 2016 08:24:51 +0100 Subject: When building with MSVC some of the header file stuff is only relevant in early versions (e.g. VC8) --- msvc_extra_headers/ardourext/misc.h.input | 2 ++ 1 file changed, 2 insertions(+) (limited to 'msvc_extra_headers/ardourext/misc.h.input') diff --git a/msvc_extra_headers/ardourext/misc.h.input b/msvc_extra_headers/ardourext/misc.h.input index 47cff56295..a5f4e9e95c 100644 --- a/msvc_extra_headers/ardourext/misc.h.input +++ b/msvc_extra_headers/ardourext/misc.h.input @@ -196,6 +196,7 @@ typedef _mode_t mode_t; #endif /* _MODE_T_ */ // int64 abs() +#if (defined(_MSC_VER) && (_MSC_VER < 1500)) #ifdef __cplusplus // Normal 'C' doesn't permit over-ridden functions !! inline int64_t abs(int64_t val) throw() { @@ -205,6 +206,7 @@ inline int64_t abs(int64_t val) throw() return val; } #endif +#endif // fmin() and fmax() #define fmin(a, b) min((double)a, (double)b) -- cgit v1.2.3