Merged in feature/symbol-const-data-members (pull request #254)
Remove const qualifiers in the declaration of member datas in Symbol.hrelease/4.3a0
commit
e555990c0a
|
@ -33,8 +33,8 @@ namespace gtsam {
|
||||||
*/
|
*/
|
||||||
class GTSAM_EXPORT Symbol {
|
class GTSAM_EXPORT Symbol {
|
||||||
protected:
|
protected:
|
||||||
const unsigned char c_;
|
unsigned char c_;
|
||||||
const std::uint64_t j_;
|
std::uint64_t j_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue