fix const correctness

This commit is contained in:
wmayer
2018-05-31 13:15:31 +02:00
parent 63cefaf4a6
commit d4354af79b

View File

@@ -112,7 +112,7 @@ namespace GCS
int getTag() { return tag; }
void setDriving(bool isdriving) { driving = isdriving; }
bool isDriving() { return driving; }
bool isDriving() const { return driving; }
virtual ConstraintType getTypeId();
virtual void rescale(double coef=1.);