summaryrefslogtreecommitdiffstats
path: root/raul
diff options
context:
space:
mode:
Diffstat (limited to 'raul')
-rw-r--r--raul/AtomicInt.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/AtomicInt.hpp b/raul/AtomicInt.hpp
index a8e6714..f534ab4 100644
--- a/raul/AtomicInt.hpp
+++ b/raul/AtomicInt.hpp
@@ -35,7 +35,7 @@ public:
inline void operator=(int val) { _val = val; }
inline void operator=(const AtomicInt& val) { _val = val.get(); }
-
+
inline void operator+=(int val) { _val += val; }
inline void operator-=(int val) { _val -= val; }