X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=832a9ac18f93465baca9eb9c54de107453c71916;hp=a16a6e90a3daddefe82a7716934d86baf2cac31b;hb=f2e94d6d35c14b274ed29fb67475acea5adc285f;hpb=5e6a5e48e636babe1c2ba1fc63422e84c0eee942 diff --git a/src/misc.cpp b/src/misc.cpp index a16a6e90..832a9ac1 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -150,6 +150,7 @@ const string engine_info(bool to_uci) { { date >> month >> day >> year; ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2); + ss << "-asn"; } ss << (to_uci ? "\nid author ": " by ") @@ -583,11 +584,10 @@ namespace CommandLine { string argv0; // path+name of the executable binary, as given by argv[0] string binaryDirectory; // path of the executable directory string workingDirectory; // path of the working directory -string pathSeparator; // Separator for our current OS void init(int argc, char* argv[]) { (void)argc; - string separator; + string pathSeparator; // extract the path+name of the executable binary argv0 = argv[0];