aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-29 08:04:42 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-29 08:04:42 -0400
commit664f2d450890eefa04b2ddfc826f5ab4cd116a57 (patch)
treeb51c3e6d2c27c49aa1c0b8d53af15b8039a13fe7 /doc
parentd3f97f758204b56fe32db5857715d9aa128baf2e (diff)
dont try passing --version to qcc
Diffstat (limited to 'doc')
-rw-r--r--doc/I00_CustomizingEigen.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/I00_CustomizingEigen.dox b/doc/I00_CustomizingEigen.dox
index afeaabe47..cc4218f0c 100644
--- a/doc/I00_CustomizingEigen.dox
+++ b/doc/I00_CustomizingEigen.dox
@@ -14,7 +14,7 @@ Eigen can be extended in several ways, for instance, by defining global methods,
In this section we will see how to add custom methods to MatrixBase. Since all expressions and matrix types inherit MatrixBase, adding a method to MatrixBase make it immediately available to all expressions ! A typical use case is, for instance, to make Eigen compatible with another API.
-You certainly know that in C++ it is not possible to add methods to an extending class. So how that's possible ? Here the trick is to include in the declaration of MatrixBase a file defined by the preprocessor token \c EIGEN_MATRIXBASE_PLUGIN:
+You certainly know that in C++ it is not possible to add methods to an existing class. So how that's possible ? Here the trick is to include in the declaration of MatrixBase a file defined by the preprocessor token \c EIGEN_MATRIXBASE_PLUGIN:
\code
class MatrixBase {
// ...