diff options
author | David Robillard <d@drobilla.net> | 2008-07-28 23:38:03 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-07-28 23:38:03 +0000 |
commit | 2811066546dfe0bd9349502572ee3b35c2532bad (patch) | |
tree | d6ec436efe0d51185fc5e46103f8f8575319d46c /src/libs/client/ControlModel.hpp | |
parent | ed9e1aa15e5a9363653b46e12313878f82652393 (diff) | |
download | ingen-2811066546dfe0bd9349502572ee3b35c2532bad.tar.gz ingen-2811066546dfe0bd9349502572ee3b35c2532bad.tar.bz2 ingen-2811066546dfe0bd9349502572ee3b35c2532bad.zip |
Compatibility hacks for old Om patchages (many Smack patches now load successfully).
git-svn-id: http://svn.drobilla.net/lad/ingen@1299 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/ControlModel.hpp')
-rw-r--r-- | src/libs/client/ControlModel.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/client/ControlModel.hpp b/src/libs/client/ControlModel.hpp index db0e156b..b2a192e4 100644 --- a/src/libs/client/ControlModel.hpp +++ b/src/libs/client/ControlModel.hpp @@ -33,8 +33,8 @@ class ControlModel { public: ControlModel(const Path& port_path, float value) - : _port_path(port_path), - _value(value) + : _port_path(port_path) + , _value(value) { assert(_port_path.find("//") == string::npos); } |