diff options
author | David Robillard <d@drobilla.net> | 2012-05-12 06:09:44 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-12 06:09:44 +0000 |
commit | 1d9bb9768f8a7d0c76fa33688051cd8f2715075d (patch) | |
tree | 45aa6f6235fb6d2c4227081eeb7c938db255aab5 /src/server/PatchImpl.hpp | |
parent | a53738e05b296b4ab4e0b701ea37d60013a42605 (diff) | |
download | ingen-1d9bb9768f8a7d0c76fa33688051cd8f2715075d.tar.gz ingen-1d9bb9768f8a7d0c76fa33688051cd8f2715075d.tar.bz2 ingen-1d9bb9768f8a7d0c76fa33688051cd8f2715075d.zip |
Use compiler checkable ProcessContext parameter rather than runtime context assertions.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4374 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/PatchImpl.hpp')
-rw-r--r-- | src/server/PatchImpl.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/PatchImpl.hpp b/src/server/PatchImpl.hpp index 5a0dbc9a..02df6fca 100644 --- a/src/server/PatchImpl.hpp +++ b/src/server/PatchImpl.hpp @@ -150,7 +150,7 @@ public: /** Whether to run this patch's DSP bits in the audio thread */ bool enabled() const { return _process; } void enable() { _process = true; } - void disable(); + void disable(ProcessContext& context); uint32_t internal_poly() const { return _internal_poly; } |