From ebad5d1cdb46a2a3c580b4ed69f62f382eddd9bc Mon Sep 17 00:00:00 2001 From: Jordan Cheney Date: Thu, 10 Jul 2014 17:54:05 -0400 Subject: [PATCH] removed unnecessary mutables --- openbr/plugins/time.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openbr/plugins/time.cpp b/openbr/plugins/time.cpp index 466a15b..5e32646 100644 --- a/openbr/plugins/time.cpp +++ b/openbr/plugins/time.cpp @@ -15,9 +15,9 @@ class StopWatchTransform : public TimeVaryingTransform Q_PROPERTY(br::Transform* child READ get_child WRITE set_child RESET reset_child) BR_PROPERTY(br::Transform*, child, NULL) - mutable long timeElapsed; - mutable long numImgs; - mutable long numPixels; + long timeElapsed; + long numImgs; + long numPixels; public: StopWatchTransform() : TimeVaryingTransform(false, false) -- libgit2 0.21.4