aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2011-05-26 09:52:36 +0100
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2011-05-26 09:52:36 +0100
commitd23845c4cc84f2ab80b0ea5c0b8941dee5ee55ca (patch)
tree0f1544588af47ad79ef9cf6ddf3f671703e01eb0 /unsupported
parent87ac09daa88c1df338701f2d2b30b09e812cf757 (diff)
Fix typo ('using namespace' instead of 'using').
Diffstat (limited to 'unsupported')
-rw-r--r--unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h12
1 files changed, 6 insertions, 6 deletions
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<MatrixType>::pade13(const MatrixType
template <typename MatrixType>
void MatrixExponential<MatrixType>::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<MatrixType>::computeUV(float)
template <typename MatrixType>
void MatrixExponential<MatrixType>::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) {