this had to be done here, not at the end.

This commit is contained in:
Benoit Jacob 2010-02-12 09:03:16 -05:00
parent 37ca4200b2
commit 9251cfed9b

View File

@ -121,6 +121,10 @@
namespace Eigen { 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 /** \defgroup Core_Module Core module
* This is the main module of Eigen providing dense matrix and vector support * 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 * (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/ArrayWrapper.h"
#include "src/Array/Array.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 } // namespace Eigen
#include "src/Array/GlobalFunctions.h" #include "src/Array/GlobalFunctions.h"