add a word about the ei_ prefix change in Eigen2 -> Eigen3 doc page.

This commit is contained in:
Gael Guennebaud 2010-12-03 10:54:16 +01:00
parent a289065c73
commit 14208eb478

View File

@ -278,6 +278,12 @@ There also are related convenience static methods:
result = Vector4f::MapAligned(some_aligned_array); result = Vector4f::MapAligned(some_aligned_array);
\endcode \endcode
\section eiPrefix Internal ei_ prefix
In Eigen2, global internal functions and structures were prefixed by \c ei_. In Eigen3, they all have been moved into the more explicit \c internal namespace. So, e.g., \c ei_sqrt(x) now becomes \c internal::sqrt(x).
*/ */
} }