aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/IndexedViewHelper.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-24 09:39:49 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-24 09:39:49 +0100
commit41c523a0ab8432a3f3276abaeb8a869cccab6b93 (patch)
tree5e879d7db402bc13da621afc90d7721c17431eef /Eigen/src/Core/util/IndexedViewHelper.h
parent4d302a080c775290acf23935f233cebbe19540f4 (diff)
Rename fix_t to FixedInt
Diffstat (limited to 'Eigen/src/Core/util/IndexedViewHelper.h')
-rw-r--r--Eigen/src/Core/util/IndexedViewHelper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/util/IndexedViewHelper.h b/Eigen/src/Core/util/IndexedViewHelper.h
index 1171b2b2e..ab01c857f 100644
--- a/Eigen/src/Core/util/IndexedViewHelper.h
+++ b/Eigen/src/Core/util/IndexedViewHelper.h
@@ -60,7 +60,7 @@ static const auto end = last+1;
#else
// Using a FixedExpr<1> expression is important here to make sure the compiler
// can fully optimize the computation starting indices with zero overhead.
-static const Symbolic::AddExpr<Symbolic::SymbolExpr<internal::symbolic_last_tag>,Symbolic::ValueExpr<Eigen::internal::fix_t<1> > > end(last+fix<1>());
+static const Symbolic::AddExpr<Symbolic::SymbolExpr<internal::symbolic_last_tag>,Symbolic::ValueExpr<Eigen::internal::FixedInt<1> > > end(last+fix<1>());
#endif
} // end namespace placeholders
@@ -71,7 +71,7 @@ namespace internal {
inline Index eval_expr_given_size(Index x, Index /* size */) { return x; }
template<int N>
-fix_t<N> eval_expr_given_size(fix_t<N> x, Index /*size*/) { return x; }
+FixedInt<N> eval_expr_given_size(FixedInt<N> x, Index /*size*/) { return x; }
template<typename Derived>
Index eval_expr_given_size(const Symbolic::BaseExpr<Derived> &x, Index size)