From 9251cfed9b9a34181b95857d89b55c0edfd500d2 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Fri, 12 Feb 2010 09:03:16 -0500 Subject: [PATCH] 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 72c64d917..18b0fafa9 100644 --- a/Eigen/Core +++ b/Eigen/Core @@ -121,6 +121,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 @@ -252,10 +256,6 @@ struct Dense {}; #include "src/Array/ArrayWrapper.h" #include "src/Array/Array.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/Array/GlobalFunctions.h"