fix const string problem in print

release/4.3a0
Kai Ni 2010-02-03 20:12:16 +00:00
parent e5a7d4c878
commit 550121013f
1 changed files with 1 additions and 2 deletions

View File

@ -79,8 +79,7 @@ namespace gtsam {
// Lie group functions
/** Global print calls member function */
inline void print(const Rot2& r, std::string& s) { r.print(s); }
inline void print(const Rot2& r) { r.print(); }
inline void print(const Rot2& r, const std::string& s = "") { r.print(s); }
/** Dimensionality of the tangent space */
inline size_t dim(const Rot2&) { return 1; }