From d23845c4cc84f2ab80b0ea5c0b8941dee5ee55ca Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Thu, 26 May 2011 09:52:36 +0100 Subject: Fix typo ('using namespace' instead of 'using'). --- unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'unsupported') diff --git a/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h b/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h index e59f78253..cedb1d551 100644 --- a/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +++ b/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h @@ -250,9 +250,9 @@ EIGEN_STRONG_INLINE void MatrixExponential::pade13(const MatrixType template void MatrixExponential::computeUV(float) { - using namespace std::max; - using namespace std::pow; - using namespace std::ceil; + using std::max; + using std::pow; + using std::ceil; if (m_l1norm < 4.258730016922831e-001) { pade3(m_M); } else if (m_l1norm < 1.880152677804762e+000) { @@ -268,9 +268,9 @@ void MatrixExponential::computeUV(float) template void MatrixExponential::computeUV(double) { - using namespace std::max; - using namespace std::pow; - using namespace std::ceil; + using std::max; + using std::pow; + using std::ceil; if (m_l1norm < 1.495585217958292e-002) { pade3(m_M); } else if (m_l1norm < 2.539398330063230e-001) { -- cgit v1.2.3