From a77a704b456355020e8df1e40aa14f3105ec9d93 Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Sat, 12 Oct 2013 17:48:17 +0000 Subject: [PATCH] Fixed merge problem in last commit --- gtsam/linear/linearExceptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/linear/linearExceptions.h b/gtsam/linear/linearExceptions.h index 4afc4f67e..62f12cc2e 100644 --- a/gtsam/linear/linearExceptions.h +++ b/gtsam/linear/linearExceptions.h @@ -95,7 +95,7 @@ namespace gtsam { class GTSAM_EXPORT IndeterminantLinearSystemException : public ThreadsafeException { Index j_; public: - IndeterminantLinearSystemException(Index j) throw(); + IndeterminantLinearSystemException(Index j) throw() : j_(j) {} virtual ~IndeterminantLinearSystemException() throw() {} Index nearbyVariable() const { return j_; } virtual const char* what() const throw();