mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 00:56:39 +08:00
Drop some redundant defined(_WIN64)
When it is already defined(_WIN32). According to Microsoft documentation: http://msdn.microsoft.com/en-us/library/b0084kay.aspx _WIN32 Defined for applications for Win32 and Win64. Always defined. _WIN64 Defined for applications for Win64. Patch suggested by Joona. No functional change.
This commit is contained in:
@@ -178,7 +178,7 @@ void start_logger(bool b) { Logger::start(b); }
|
||||
|
||||
int cpu_count() {
|
||||
|
||||
#if defined(_WIN32) || defined(_WIN64)
|
||||
#if defined(_WIN32)
|
||||
SYSTEM_INFO s;
|
||||
GetSystemInfo(&s);
|
||||
return s.dwNumberOfProcessors;
|
||||
@@ -204,7 +204,7 @@ int cpu_count() {
|
||||
|
||||
void timed_wait(WaitCondition& sleepCond, Lock& sleepLock, int msec) {
|
||||
|
||||
#if defined(_WIN32) || defined(_WIN64)
|
||||
#if defined(_WIN32)
|
||||
int tm = msec;
|
||||
#else
|
||||
timespec ts, *tm = &ts;
|
||||
|
||||
Reference in New Issue
Block a user