From: lucasart Date: Sat, 1 Nov 2014 20:35:10 +0000 (+0000) Subject: Consistent use of anonymous namespace X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=8a7876d48d4360d14d918c1ff444b5d6eb0382de;hp=8a7876d48d4360d14d918c1ff444b5d6eb0382de Consistent use of anonymous namespace Objects that are only accessible at file-scope should be put in the anonymous namespace. This is what the C++ standard recommends, rather than using static, which is really C-style and results in static linkage. Stockfish already does this throughout the code. So let's weed out the few exceptions, because... they have no reason to be exceptional. No functional change. Resolves #84 ---