aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2019-08-04 01:09:41 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2019-08-04 01:09:41 +0200
commit0050644b23b3d211090f26c6e52c99068c51d651 (patch)
tree4de6477e78632def75db9331bbc2d3824beac978 /doc
parente2999d4c388f3bc556a556befdcb51b1139e9d92 (diff)
Fix doc regarding alignment and c++17
Diffstat (limited to 'doc')
-rw-r--r--doc/Pitfalls.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Pitfalls.dox b/doc/Pitfalls.dox
index 7ece81ba4..18ced6ea7 100644
--- a/doc/Pitfalls.dox
+++ b/doc/Pitfalls.dox
@@ -17,7 +17,7 @@ especially if you got wrong results in statements where the destination appears
\section TopicPitfalls_alignment_issue Alignment Issues (runtime assertion)
%Eigen does explicit vectorization, and while that is appreciated by many users, that also leads to some issues in special situations where data alignment is compromised.
-Indeed, since C++17, C++ does not have quite good enough support for explicit data alignment.
+Indeed, prior to C++17, C++ does not have quite good enough support for explicit data alignment.
In that case your program hits an assertion failure (that is, a "controlled crash") with a message that tells you to consult this page:
\code
http://eigen.tuxfamily.org/dox/group__TopicUnalignedArrayAssert.html