summaryrefslogtreecommitdiffstats
path: root/raul/AtomicInt.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/AtomicInt.hpp')
-rw-r--r--raul/AtomicInt.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/AtomicInt.hpp b/raul/AtomicInt.hpp
index 70191cb..cb0591d 100644
--- a/raul/AtomicInt.hpp
+++ b/raul/AtomicInt.hpp
@@ -75,7 +75,7 @@ public:
{ return g_atomic_int_dec_and_test(&_val); }
private:
- volatile int _val;
+ volatile mutable int _val;
};