From 32e83f60009621d53a2f7b287db73235c3d0b4f9 Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Thu, 5 Jul 2012 13:56:28 +0100 Subject: [PATCH] doc: Typo in CustomizingEigen, introduced in previous commit. Thanks to Christoph Hertzberg for noting this. (transplanted from 60edf02f6f0698a910b330c387108f4c34ae1e74 ) --- doc/I00_CustomizingEigen.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/I00_CustomizingEigen.dox b/doc/I00_CustomizingEigen.dox index 43ac8509a..aa4514d68 100644 --- a/doc/I00_CustomizingEigen.dox +++ b/doc/I00_CustomizingEigen.dox @@ -97,7 +97,7 @@ public: // This constructor allows you to construct MyVectorType from Eigen expressions template - Vector3D(const Eigen::MatrixBase& other) + MyVectorType(const Eigen::MatrixBase& other) : Eigen::Vector3d(other) { }