X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmove.cpp;h=8118273e48e81c6d0015bd7654c656169353e05a;hb=5c81602d14539f8259a715477315e28b5de7cb54;hp=ad282dfb56da9104d15bbce3b2eae91d2ab09c97;hpb=2c955f25de9d4c263b6e6d37fef06b378eec49a0;p=stockfish diff --git a/src/move.cpp b/src/move.cpp index ad282dfb..8118273e 100644 --- a/src/move.cpp +++ b/src/move.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008 Marco Costalba + Copyright (C) 2008-2009 Marco Costalba Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -139,7 +139,7 @@ const std::string move_to_string(Move move) { /// Overload the << operator, to make it easier to print moves. -std::ostream &operator << (std::ostream &os, Move m) { +std::ostream &operator << (std::ostream& os, Move m) { return os << move_to_string(m); }