Merged in feature/symbol-const-data-members (pull request #254)

Remove const qualifiers in the declaration of member datas in Symbol.h
release/4.3a0
Chris Beall 2016-06-06 11:31:45 -07:00
commit e555990c0a
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ namespace gtsam {
*/
class GTSAM_EXPORT Symbol {
protected:
const unsigned char c_;
const std::uint64_t j_;
unsigned char c_;
std::uint64_t j_;
public: