X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fbitbase.cpp;h=ec3fb3af6e759e74da927797f50d2a9840f3f771;hb=9742fb10fd83e82ad760e4cac5cef3d6dff670ed;hp=510d305b50f76c66f7d96f876cd6c25de8068672;hpb=60beb18efcb3c19b36a164a50e32b6ba6e24e7c4;p=stockfish diff --git a/src/bitbase.cpp b/src/bitbase.cpp index 510d305b..ec3fb3af 100644 --- a/src/bitbase.cpp +++ b/src/bitbase.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-2015 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2016 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -53,7 +53,7 @@ namespace { WIN = 4 }; - inline Result& operator|=(Result& r, Result v) { return r = Result(r | v); } + Result& operator|=(Result& r, Result v) { return r = Result(r | v); } struct KPKPosition { KPKPosition() = default;