aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/DenseStorage.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-04-18 06:35:54 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-04-18 06:35:54 -0400
commit820545cddbb9e904e3b25969f4cc32ae01edcf5f (patch)
tree0c05fc81b71fed2ae49d1dc4ff15f3780ab0a0c9 /Eigen/src/Core/DenseStorage.h
parentc9b5531d6c51fc8a4ee0b69beb42a5b8dba0b172 (diff)
fix unaligned-array-assert link
Diffstat (limited to 'Eigen/src/Core/DenseStorage.h')
-rw-r--r--Eigen/src/Core/DenseStorage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/DenseStorage.h b/Eigen/src/Core/DenseStorage.h
index 1bcaf4c56..813053b00 100644
--- a/Eigen/src/Core/DenseStorage.h
+++ b/Eigen/src/Core/DenseStorage.h
@@ -58,7 +58,7 @@ struct plain_array
#define EIGEN_MAKE_UNALIGNED_ARRAY_ASSERT(sizemask) \
eigen_assert((reinterpret_cast<size_t>(array) & sizemask) == 0 \
&& "this assertion is explained here: " \
- "http://eigen.tuxfamily.org/dox/UnalignedArrayAssert.html" \
+ "http://eigen.tuxfamily.org/dox-devel/TopicUnalignedArrayAssert.html" \
" **** READ THIS WEB PAGE !!! ****");
#endif