std:: namespace fixup for more restricive compilers such as QNX's QCC

This commit is contained in:
Piotr Trojanek
2010-02-10 13:24:47 +01:00
parent ae0a17d30b
commit 1701a5d1f8
4 changed files with 33 additions and 33 deletions

View File

@@ -53,7 +53,7 @@ struct ei_matrix_array
#define EIGEN_MAKE_UNALIGNED_ARRAY_ASSERT(sizemask)
#else
#define EIGEN_MAKE_UNALIGNED_ARRAY_ASSERT(sizemask) \
ei_assert((reinterpret_cast<size_t>(array) & sizemask) == 0 \
ei_assert((reinterpret_cast<std::size_t>(array) & sizemask) == 0 \
&& "this assertion is explained here: " \
"http://eigen.tuxfamily.org/dox/UnalignedArrayAssert.html" \
" **** READ THIS WEB PAGE !!! ****");