Fixed merge problem in last commit

release/4.3a0
Richard Roberts 2013-10-12 17:48:17 +00:00
parent 71039164b2
commit a77a704b45
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ namespace gtsam {
class GTSAM_EXPORT IndeterminantLinearSystemException : public ThreadsafeException<IndeterminantLinearSystemException> { class GTSAM_EXPORT IndeterminantLinearSystemException : public ThreadsafeException<IndeterminantLinearSystemException> {
Index j_; Index j_;
public: public:
IndeterminantLinearSystemException(Index j) throw(); IndeterminantLinearSystemException(Index j) throw() : j_(j) {}
virtual ~IndeterminantLinearSystemException() throw() {} virtual ~IndeterminantLinearSystemException() throw() {}
Index nearbyVariable() const { return j_; } Index nearbyVariable() const { return j_; }
virtual const char* what() const throw(); virtual const char* what() const throw();