From 346a42383e267d087900bff7df72609c20f9ff5f Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 22 Oct 2016 14:32:36 +0200 Subject: fixed benchmarks build and cleanup U64 and S64 macro definition, it is now in standard (nw) --- src/osd/osdcomm.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src') diff --git a/src/osd/osdcomm.h b/src/osd/osdcomm.h index 8e6ee317400..e519b597d96 100644 --- a/src/osd/osdcomm.h +++ b/src/osd/osdcomm.h @@ -89,21 +89,13 @@ using std::int64_t; #define FALSE 0 #endif - - /*************************************************************************** FUNDAMENTAL MACROS ***************************************************************************/ /* U64 and S64 are used to wrap long integer constants. */ -#if defined(__GNUC__) || defined(_MSC_VER) #define U64(val) val##ULL #define S64(val) val##LL -#else -#define U64(val) val -#define S64(val) val -#endif - /* Concatenate/extract 32-bit halves of 64-bit values */ constexpr uint64_t concat_64(uint32_t hi, uint32_t lo) { return (uint64_t(hi) << 32) | uint32_t(lo); } -- cgit v1.2.3-70-g09d2