From 7bc8e3ac0917cdc14015e00e8b29ac299b2b772a Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Mon, 25 Oct 2010 22:13:49 +0200 Subject: Initial fixes for bug #85. Renamed meta_{true|false} to {true|false}_type, meta_if to conditional, is_same_type to is_same, un{ref|pointer|const} to remove_{reference|pointer|const} and makeconst to add_const. Changed boolean type 'ret' member to 'value'. Changed 'ret' members refering to types to 'type'. Adapted all code occurences. --- test/swap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/swap.cpp') diff --git a/test/swap.cpp b/test/swap.cpp index 4a575e7d7..b18562f28 100644 --- a/test/swap.cpp +++ b/test/swap.cpp @@ -42,7 +42,7 @@ template void swap(const MatrixType& m) typedef typename other_matrix_type::type OtherMatrixType; typedef typename MatrixType::Scalar Scalar; - eigen_assert((!internal::is_same_type::ret)); + eigen_assert((!internal::is_same::value)); typename MatrixType::Index rows = m.rows(); typename MatrixType::Index cols = m.cols(); -- cgit v1.2.3