diff options
author | David Robillard <d@drobilla.net> | 2012-03-27 03:39:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-27 03:39:52 +0000 |
commit | 89f9f82967d939b457f0cf78cc2dccae9cddcc5a (patch) | |
tree | 9561d8bdbbc870bbba69ab28f37e6c07f556f01b /raul | |
parent | 8350acca946fc925d359f2d7c8f342cef8f5b71b (diff) | |
download | raul-89f9f82967d939b457f0cf78cc2dccae9cddcc5a.tar.gz raul-89f9f82967d939b457f0cf78cc2dccae9cddcc5a.tar.bz2 raul-89f9f82967d939b457f0cf78cc2dccae9cddcc5a.zip |
Delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4112 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul')
-rw-r--r-- | raul/AtomicInt.hpp | 2 |
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; } |