From: Marco Costalba Date: Sun, 18 Dec 2011 19:48:59 +0000 (+0100) Subject: Use ADL to skip std:: qualifier X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=939b621e5c67e9ef89b409fd773d38058341906c;hp=939b621e5c67e9ef89b409fd773d38058341906c Use ADL to skip std:: qualifier Take advantage of argument-dependent lookup (ADL) to avoid specifying std:: qualifier in some STL functions. When a function argument refers to a namespace (in this case std) then the compiler will search the unqualified function in that namespace too. No functional change. Signed-off-by: Marco Costalba ---