Update of /cvsroot/boost-sandbox/boost-sandbox/boost/math/special_functions
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28905/boost/math/special_functions
Modified Files:
Tag: math_toolkit
hypot.hpp
Log Message:
A couple of minor using declaration adjustments.
Updated docs: adjusted titles and added more information on the kurtosis.
Index: hypot.hpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/math/special_functions/Attic/hypot.hpp,v
retrieving revision 1.1.2.7
retrieving revision 1.1.2.8
diff -u -d -r1.1.2.7 -r1.1.2.8
--- hypot.hpp 6 Feb 2007 13:32:59 -0000 1.1.2.7
+++ hypot.hpp 22 Feb 2007 16:52:36 -0000 1.1.2.8
@@ -24,7 +24,7 @@
//
// Normalize x and y, so that both are positive and x >= y:
//
- using namespace std; // ADL of std names
+ using std::fabs; using std::sqrt; // ADL of std names
x = fabs(x);
y = fabs(y);
|