aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/QuickReference.dox
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2013-06-18 14:35:12 +0100
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2013-06-18 14:35:12 +0100
commit4e6d746514d3b7ef31cf4cd1ac5b48eb0e3cbe9e (patch)
treecef8184220425bec8f8e10b340f3a77df40051b2 /doc/QuickReference.dox
parente37ff98bbb21f2ee44c6d912002ddf2cdf05ccda (diff)
Avoid phrase "static allocation" for local storage on stack (bug #615).
Diffstat (limited to 'doc/QuickReference.dox')
-rw-r--r--doc/QuickReference.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/QuickReference.dox b/doc/QuickReference.dox
index a5f0dab56..5e0168649 100644
--- a/doc/QuickReference.dox
+++ b/doc/QuickReference.dox
@@ -45,7 +45,7 @@ All combinations are allowed: you can have a matrix with a fixed number of rows
Matrix<double, 6, Dynamic> // Dynamic number of columns (heap allocation)
Matrix<double, Dynamic, 2> // Dynamic number of rows (heap allocation)
Matrix<double, Dynamic, Dynamic, RowMajor> // Fully dynamic, row major (heap allocation)
-Matrix<double, 13, 3> // Fully fixed (static allocation)
+Matrix<double, 13, 3> // Fully fixed (usually allocated on stack)
\endcode
In most cases, you can simply use one of the convenience typedefs for \ref matrixtypedefs "matrices" and \ref arraytypedefs "arrays". Some examples: