X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitbase.cpp;h=25570e12a4b54a63f57e194e585caeca02f58368;hp=510d305b50f76c66f7d96f876cd6c25de8068672;hb=dcd8ce70941e9b8d5180eb43865bb9819e424c19;hpb=60beb18efcb3c19b36a164a50e32b6ba6e24e7c4 diff --git a/src/bitbase.cpp b/src/bitbase.cpp index 510d305b..25570e12 100644 --- a/src/bitbase.cpp +++ b/src/bitbase.cpp @@ -2,6 +2,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) 2015-2016 Marco Costalba, Joona Kiiski, Gary Linscott, 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 +54,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;