]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Introduce enum SquareColor
[stockfish] / src / misc.cpp
index 2970ac3b49c30c6ceb0aeda94b95836919eab715..e03a0e2fa7302fbe4c1b4fa418a4b3be2fc8adbb 100644 (file)
@@ -151,7 +151,7 @@ const string engine_name() {
   const string cpu64(CpuHas64BitPath ? " 64bit" : "");
 
   if (!EngineVersion.empty())
-      return AppName+ " " + EngineVersion + cpu64;
+      return AppName + " " + EngineVersion + cpu64;
 
   string date(__DATE__); // From compiler, format is "Sep 21 2008"
   string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
@@ -292,6 +292,8 @@ int Bioskey()
     }
 }
 
+#endif
+
 /// prefetch() preloads the given address in L1/L2 cache. This is a non
 /// blocking function and do not stalls the CPU waiting for data to be
 /// loaded from RAM, that can be very slow.
@@ -313,4 +315,3 @@ void prefetch(char* addr) {
 
 #endif
 
-#endif