From dfd5f43e3868b2d155e60e9345ba9bd03815d871 Mon Sep 17 00:00:00 2001 From: Eric Bechet <eric.bechet@ulg.ac.be> Date: Tue, 27 Apr 2010 15:53:03 +0000 Subject: [PATCH] bug when GMM not compiled --- Solver/linearSystemGMM.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Solver/linearSystemGMM.h b/Solver/linearSystemGMM.h index 4076478a5b..df0df546f8 100644 --- a/Solver/linearSystemGMM.h +++ b/Solver/linearSystemGMM.h @@ -101,7 +101,7 @@ class linearSystemGmm : public linearSystem<scalar> { virtual bool isAllocated() const { return false; } virtual void allocate(int nbRows) {} virtual void addToMatrix(int row, int col, scalar &val) {} - virtual void getFromMatrix(int row, int col, calar &val) const { return 0.; } + virtual void getFromMatrix(int row, int col, scalar &val) const { return 0.; } virtual void addToRightHandSide(int row, scalar &val) {} virtual void getFromRightHandSide(int row, scalar &val) const { return 0.; } virtual void getFromSolution(int row, scalar &val) const { return 0.; } -- GitLab