From de420692a598e065daa849411eefe4793c10f0e2 Mon Sep 17 00:00:00 2001 From: Toni Date: Tue, 29 Jan 2019 16:11:51 -0500 Subject: [PATCH] Change again to getISAM2Result, wo get it is ambiguous --- gtsam_unstable/nonlinear/IncrementalFixedLagSmoother.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtsam_unstable/nonlinear/IncrementalFixedLagSmoother.h b/gtsam_unstable/nonlinear/IncrementalFixedLagSmoother.h index 40e96b206..0014a0747 100644 --- a/gtsam_unstable/nonlinear/IncrementalFixedLagSmoother.h +++ b/gtsam_unstable/nonlinear/IncrementalFixedLagSmoother.h @@ -111,7 +111,7 @@ public: } /// Get results of latest isam2 update - const ISAM2Result& ISAM2Result() const {return isamResult_;} + const ISAM2Result& getISAM2Result() const{ return isamResult_; } protected: /** An iSAM2 object used to perform inference. The smoother lag is controlled @@ -119,7 +119,7 @@ protected: ISAM2 isam_; /** Store results of latest isam2 update */ - struct ISAM2Result isamResult_; + ISAM2Result isamResult_; /** Erase any keys associated with timestamps before the provided time */ void eraseKeysBefore(double timestamp);