fix constness
parent
7ecdbd5908
commit
3e8807b575
2
gtsam.h
2
gtsam.h
|
@ -164,7 +164,7 @@ class KeySet {
|
||||||
|
|
||||||
// structure specific methods
|
// structure specific methods
|
||||||
void insert(size_t key);
|
void insert(size_t key);
|
||||||
void merge(gtsam::KeySet& other);
|
void merge(const gtsam::KeySet& other);
|
||||||
bool erase(size_t key); // returns true if value was removed
|
bool erase(size_t key); // returns true if value was removed
|
||||||
bool count(size_t key) const; // returns true if value exists
|
bool count(size_t key) const; // returns true if value exists
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue