aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/IndexedView.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-10 16:32:06 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-10 16:32:06 +0100
commit8e247744a41dab895fec206020b58a6e6f28b0f7 (patch)
treefcf78353af4f2c8addc00737d62444bcbe423d13 /Eigen/src/Core/IndexedView.h
parentb47a7e5c3a01018951a30fe51043b702dc7048be (diff)
Fix linking issue
Diffstat (limited to 'Eigen/src/Core/IndexedView.h')
-rw-r--r--Eigen/src/Core/IndexedView.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/IndexedView.h b/Eigen/src/Core/IndexedView.h
index 12e122030..5aaf5b4e0 100644
--- a/Eigen/src/Core/IndexedView.h
+++ b/Eigen/src/Core/IndexedView.h
@@ -159,7 +159,7 @@ struct unary_evaluator<IndexedView<ArgType, RowIndices, ColIndices>, IndexBased>
typedef IndexedView<ArgType, RowIndices, ColIndices> XprType;
enum {
- CoeffReadCost = evaluator<ArgType>::CoeffReadCost /* + cost of row/col index */,
+ CoeffReadCost = evaluator<ArgType>::CoeffReadCost /* TODO + cost of row/col index */,
Flags = (evaluator<ArgType>::Flags & (HereditaryBits /*| LinearAccessBit | DirectAccessBit*/)),