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/adjoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/adjoint.cpp') diff --git a/test/adjoint.cpp b/test/adjoint.cpp index f37bad787..72cbf3406 100644 --- a/test/adjoint.cpp +++ b/test/adjoint.cpp @@ -41,7 +41,7 @@ template void adjoint(const MatrixType& m) Index cols = m.cols(); RealScalar largerEps = test_precision(); - if (internal::is_same_type::ret) + if (internal::is_same::value) largerEps = RealScalar(1e-3f); MatrixType m1 = MatrixType::Random(rows, cols), -- cgit v1.2.3