remove extra semicolons
							parent
							
								
									a6d13763a6
								
							
						
					
					
						commit
						e5bf78e688
					
				|  | @ -80,7 +80,7 @@ protected: | |||
| #define TEST_UNSAFE(testGroup, testName)\ | ||||
|   class testGroup##testName##Test : public Test \ | ||||
|   { public: testGroup##testName##Test () : Test (#testName "Test", __FILE__, __LINE__, false) {} \ | ||||
|             virtual ~testGroup##testName##Test () {};\ | ||||
|             virtual ~testGroup##testName##Test () {} \ | ||||
|             void run (TestResult& result_) override;} \ | ||||
|     testGroup##testName##Instance; \ | ||||
|   void testGroup##testName##Test::run (TestResult& result_) | ||||
|  |  | |||
|  | @ -43,7 +43,7 @@ public: | |||
|     double error; ///< The final factor graph error
 | ||||
| 
 | ||||
|     /// Constructor
 | ||||
|     Result() : iterations(0), lambdas(0), nonlinearVariables(0), linearVariables(0), error(0) {}; | ||||
|     Result() : iterations(0), lambdas(0), nonlinearVariables(0), linearVariables(0), error(0) {} | ||||
| 
 | ||||
|     /// Getter methods
 | ||||
|     size_t getIterations() const { return iterations; } | ||||
|  | @ -54,10 +54,10 @@ public: | |||
|   }; | ||||
| 
 | ||||
|   /** Default constructor */ | ||||
|   ConcurrentBatchSmoother(const LevenbergMarquardtParams& parameters = LevenbergMarquardtParams()) : parameters_(parameters) {}; | ||||
|   ConcurrentBatchSmoother(const LevenbergMarquardtParams& parameters = LevenbergMarquardtParams()) : parameters_(parameters) {} | ||||
| 
 | ||||
|   /** Default destructor */ | ||||
|   ~ConcurrentBatchSmoother() override {}; | ||||
|   ~ConcurrentBatchSmoother() override {} | ||||
| 
 | ||||
|   /** Implement a GTSAM standard 'print' function */ | ||||
|   void print(const std::string& s = "Concurrent Batch Smoother:\n", const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override; | ||||
|  |  | |||
|  | @ -51,7 +51,7 @@ public: | |||
|     double error; ///< The final factor graph error
 | ||||
| 
 | ||||
|     /// Constructor
 | ||||
|     Result() : iterations(0), nonlinearVariables(0), linearVariables(0), error(0) {}; | ||||
|     Result() : iterations(0), nonlinearVariables(0), linearVariables(0), error(0) {} | ||||
| 
 | ||||
|     /// Getter methods
 | ||||
|     size_t getIterations() const { return iterations; } | ||||
|  | @ -61,10 +61,10 @@ public: | |||
|   }; | ||||
| 
 | ||||
|   /** Default constructor */ | ||||
|   ConcurrentIncrementalFilter(const ISAM2Params& parameters = ISAM2Params()) : isam2_(parameters) {}; | ||||
|   ConcurrentIncrementalFilter(const ISAM2Params& parameters = ISAM2Params()) : isam2_(parameters) {} | ||||
| 
 | ||||
|   /** Default destructor */ | ||||
|   ~ConcurrentIncrementalFilter() override {}; | ||||
|   ~ConcurrentIncrementalFilter() override {} | ||||
| 
 | ||||
|   /** Implement a GTSAM standard 'print' function */ | ||||
|   void print(const std::string& s = "Concurrent Incremental Filter:\n", const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override; | ||||
|  |  | |||
|  | @ -41,7 +41,7 @@ public: | |||
|     double error; ///< The final factor graph error
 | ||||
| 
 | ||||
|     /// Constructor
 | ||||
|     Result() : iterations(0), nonlinearVariables(0), linearVariables(0), error(0) {}; | ||||
|     Result() : iterations(0), nonlinearVariables(0), linearVariables(0), error(0) {} | ||||
| 
 | ||||
|     /// Getter methods
 | ||||
|     size_t getIterations() const { return iterations; } | ||||
|  | @ -51,10 +51,10 @@ public: | |||
|   }; | ||||
| 
 | ||||
|   /** Default constructor */ | ||||
|   ConcurrentIncrementalSmoother(const ISAM2Params& parameters = ISAM2Params()) : isam2_(parameters) {}; | ||||
|   ConcurrentIncrementalSmoother(const ISAM2Params& parameters = ISAM2Params()) : isam2_(parameters) {} | ||||
| 
 | ||||
|   /** Default destructor */ | ||||
|   ~ConcurrentIncrementalSmoother() override {}; | ||||
|   ~ConcurrentIncrementalSmoother() override {} | ||||
| 
 | ||||
|   /** Implement a GTSAM standard 'print' function */ | ||||
|   void print(const std::string& s = "Concurrent Incremental Smoother:\n", const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override; | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue