From: Marco Costalba Date: Fri, 26 Oct 2012 16:01:13 +0000 (+0200) Subject: Use std::stack instead of fixed size array X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=cd80762c13961eb8fe0a89c0bb19d58e2808a1cf;hp=cd80762c13961eb8fe0a89c0bb19d58e2808a1cf;p=stockfish Use std::stack instead of fixed size array Only in not performance critical code like pretty_pv(), otherwise continue to use the good old C-style arrays like in extract/insert PV where I have done some code refactoring anyhow. No functional change. ---