From e1f61b40c83d35ae98bf34900a436fd92f313cf2 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Fri, 12 Feb 2010 09:02:25 -0500 Subject: [PATCH] oops, this had to be done here, not at the end. --- Eigen/Core | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Eigen/Core b/Eigen/Core index 37356d391..a2d66c6b8 100644 --- a/Eigen/Core +++ b/Eigen/Core @@ -77,6 +77,10 @@ namespace Eigen { +// we use size_t frequently and we'll never remember to prepend it with std:: everytime just to +// ensure QNX/QCC support +using std::size_t; + /** \defgroup Core_Module Core module * This is the main module of Eigen providing dense matrix and vector support * (both fixed and dynamic size) with all the features corresponding to a BLAS library @@ -147,10 +151,6 @@ namespace Eigen { #include "src/Core/Part.h" #include "src/Core/CacheFriendlyProduct.h" -// we use size_t frequently and we'll never remember to prepend it with std:: everytime just to -// ensure QNX/QCC support -using std::size_t; - } // namespace Eigen #include "src/Core/util/EnableMSVCWarnings.h"