X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmovegen.cpp;h=2ed96e1502abf9626479d803ab53b7c4ca0a6ce5;hb=9742fb10fd83e82ad760e4cac5cef3d6dff670ed;hp=111895876459d0b9b67921ae305a57bc13b70748;hpb=e6310b3469b07b6bbecf8d8f75367a655090f22b;p=stockfish diff --git a/src/movegen.cpp b/src/movegen.cpp index 11189587..2ed96e15 100644 --- a/src/movegen.cpp +++ b/src/movegen.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 @@ -58,10 +58,11 @@ namespace { if (Checks && !pos.gives_check(m, *ci)) return moveList; + else + (void)ci; // Silence a warning under MSVC *moveList++ = m; - - return (void)ci, moveList; // Silence a warning under MSVC + return moveList; } @@ -82,8 +83,10 @@ namespace { // that's not already included in the queen promotion. if (Type == QUIET_CHECKS && (StepAttacksBB[W_KNIGHT][to] & ci->ksq)) *moveList++ = make(to - Delta, to, KNIGHT); + else + (void)ci; // Silence a warning under MSVC - return (void)ci, moveList; // Silence a warning under MSVC + return moveList; }