X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Flock.h;h=1d0e78b244494de81b9566e7bcb3721e4a4511a4;hp=b17fb79bb73a2e61730dec7923eb94f01201cf5a;hb=7618ee2df1e4e5a3fa6cd511cc42545a255eb9d2;hpb=bb968fd42a6e3c14755332f5a4c4829faaf4f9de diff --git a/src/lock.h b/src/lock.h index b17fb79b..1d0e78b2 100644 --- a/src/lock.h +++ b/src/lock.h @@ -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-2009 Marco Costalba + Copyright (C) 2008-2010 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 @@ -99,9 +99,4 @@ typedef CRITICAL_SECTION Lock; #endif -static inline bool lock_grab_bool(Lock* x) { - lock_grab(x); - return true; -} - #endif // !defined(LOCK_H_INCLUDED)