X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fplatform.h;fp=src%2Fplatform.h;h=e4b4d2ceaef144b90b2f6a40a159b1b4a7f23f6f;hp=334a0eecd0a1a914c22460eb5086af000e9b1753;hb=002062ae934c1fae3e56157e8e7e6451b552ada5;hpb=4064ee540649cb46ad4cc4a6080bd4ef41314cb9 diff --git a/src/platform.h b/src/platform.h index 334a0eec..e4b4d2ce 100644 --- a/src/platform.h +++ b/src/platform.h @@ -17,10 +17,10 @@ along with this program. If not, see . */ -#if !defined(PLATFORM_H_INCLUDED) +#ifndef PLATFORM_H_INCLUDED #define PLATFORM_H_INCLUDED -#if defined(_MSC_VER) +#ifdef _MSC_VER // Disable some silly and noisy warning from MSVC compiler #pragma warning(disable: 4127) // Conditional expression is constant @@ -43,7 +43,7 @@ typedef unsigned __int64 uint64_t; # include // Used by sysconf(_SC_NPROCESSORS_ONLN) #endif -#if !defined(_WIN32) // Linux - Unix +#ifndef _WIN32 // Linux - Unix # include typedef timeval sys_time_t; @@ -77,7 +77,7 @@ typedef _timeb sys_time_t; inline void system_time(sys_time_t* t) { _ftime(t); } inline int64_t time_to_msec(const sys_time_t& t) { return t.time * 1000LL + t.millitm; } -#if !defined(NOMINMAX) +#ifndef NOMINMAX # define NOMINMAX // disable macros min() and max() #endif @@ -110,4 +110,4 @@ inline DWORD* dwWin9xKludge() { static DWORD dw; return &dw; } #endif -#endif // !defined(PLATFORM_H_INCLUDED) +#endif // #ifndef PLATFORM_H_INCLUDED