don't enclose eigen in a namespace. prefixing is the way to go.

For example Qt uses a prefix and no namespace (except for a few things)
This commit is contained in:
Benoit Jacob
2007-09-27 19:24:57 +00:00
parent d99d9407df
commit 4e299afb1f
12 changed files with 0 additions and 46 deletions

View File

@@ -40,9 +40,6 @@
#define EIGEN_CHECK_COL_RANGE(matrix, col) \
assert(col >= 0 && col < (matrix).cols())
namespace Eigen
{
//forward declarations
template<typename _Scalar, int _Rows, int _Cols> class Matrix;
template<typename MatrixType> class MatrixAlias;
@@ -100,7 +97,4 @@ EIGEN_INHERIT_ASSIGNMENT_OPERATOR(Derived, -=) \
EIGEN_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, *=) \
EIGEN_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, /=)
} // namespace Eigen
#endif // EIGEN_UTIL_H