X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.h;h=aff7cf3e1e0aca0703f95e3d8d5ec97b5f0d450e;hp=a496d88eef9d51c69861ad0ba6c850f211dc8eb2;hb=2155fb78256204aae5aa80946dfe7d8d9c6e2397;hpb=acef5d6a594900009d20524140a6f410cf1e4a0c diff --git a/src/misc.h b/src/misc.h index a496d88e..aff7cf3e 100644 --- a/src/misc.h +++ b/src/misc.h @@ -30,24 +30,12 @@ #include -//// -//// Constants -//// - - -/// Version number. If this is left empty, the current date (in the format -/// YYMMDD) is used as a version number. - -const std::string EngineVersion = ""; - - //// //// Macros //// #define Min(x, y) (((x) < (y))? (x) : (y)) #define Max(x, y) (((x) < (y))? (y) : (x)) -#define Abs(a) (((a) < 0) ? -(a) : (a)) ////