From: Mikko Rasa Date: Sun, 19 May 2013 17:38:22 +0000 (+0300) Subject: Don't qualify potentially overloaded functions with the std namespace X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=b24bbb85291644791a3206ff7f0ab0308faeadc9;hp=b24bbb85291644791a3206ff7f0ab0308faeadc9;p=libs%2Fmath.git Don't qualify potentially overloaded functions with the std namespace Instead put a using std::func before the call. This makes things work if the template argument is a user-defined type with these functions defined in another namespace. ---