aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Core/Fuzzy.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-11-27 13:57:51 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-11-27 13:57:51 +0000
commit39f1776bde27b159814148a54483b6b2bdf51aa8 (patch)
treee369c7ad167a338db04f0e250d6f23065b3a53a6 /src/Core/Fuzzy.h
parent344623e872c455114f73b84fb02210c12a97e133 (diff)
rename Object -> MatrixBase
Diffstat (limited to 'src/Core/Fuzzy.h')
-rw-r--r--src/Core/Fuzzy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Core/Fuzzy.h b/src/Core/Fuzzy.h
index 823ea71f1..1939217bf 100644
--- a/src/Core/Fuzzy.h
+++ b/src/Core/Fuzzy.h
@@ -28,7 +28,7 @@
template<typename Scalar, typename Derived>
template<typename OtherDerived>
-bool Object<Scalar, Derived>::isApprox(
+bool MatrixBase<Scalar, Derived>::isApprox(
const OtherDerived& other,
const typename NumTraits<Scalar>::Real& prec
) const
@@ -49,7 +49,7 @@ bool Object<Scalar, Derived>::isApprox(
}
template<typename Scalar, typename Derived>
-bool Object<Scalar, Derived>::isMuchSmallerThan(
+bool MatrixBase<Scalar, Derived>::isMuchSmallerThan(
const Scalar& other,
const typename NumTraits<Scalar>::Real& prec
) const
@@ -69,8 +69,8 @@ bool Object<Scalar, Derived>::isMuchSmallerThan(
template<typename Scalar, typename Derived>
template<typename OtherDerived>
-bool Object<Scalar, Derived>::isMuchSmallerThan(
- const Object<Scalar, OtherDerived>& other,
+bool MatrixBase<Scalar, Derived>::isMuchSmallerThan(
+ const MatrixBase<Scalar, OtherDerived>& other,
const typename NumTraits<Scalar>::Real& prec
) const
{