Commit ebad5d1cdb46a2a3c580b4ed69f62f382eddd9bc
Committed by
Jordan Cheney
1 parent
a5ec62a3
removed unnecessary mutables
Showing
1 changed file
with
3 additions
and
3 deletions
openbr/plugins/time.cpp
| ... | ... | @@ -15,9 +15,9 @@ class StopWatchTransform : public TimeVaryingTransform |
| 15 | 15 | Q_PROPERTY(br::Transform* child READ get_child WRITE set_child RESET reset_child) |
| 16 | 16 | BR_PROPERTY(br::Transform*, child, NULL) |
| 17 | 17 | |
| 18 | - mutable long timeElapsed; | |
| 19 | - mutable long numImgs; | |
| 20 | - mutable long numPixels; | |
| 18 | + long timeElapsed; | |
| 19 | + long numImgs; | |
| 20 | + long numPixels; | |
| 21 | 21 | |
| 22 | 22 | public: |
| 23 | 23 | StopWatchTransform() : TimeVaryingTransform(false, false) | ... | ... |