abs vs std::abs, what does the reference say?
The official references say… it’s a mess. Pre-C++11 and C11: Officially, including <cmath> introduced nothing in ::; all of the functions were in std::. Practically, only export was less respected, and different compilers did very different things. If you included <cmath>, you used std:: everywhere, or what you got varied from compiler to compiler. C … Read more