diff options
author | David Robillard <d@drobilla.net> | 2007-07-05 03:06:59 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-05 03:06:59 +0000 |
commit | 6067f8f8572bd7b318d3d17f16dc192079c7e046 (patch) | |
tree | 8f1b6a37ea61b72f918c672b282056c48098e5d9 /src/PatchageCanvas.h | |
parent | 8006c612d557bd071f9ab033c82d27a499bdc0e6 (diff) | |
download | patchage-6067f8f8572bd7b318d3d17f16dc192079c7e046.tar.gz patchage-6067f8f8572bd7b318d3d17f16dc192079c7e046.tar.bz2 patchage-6067f8f8572bd7b318d3d17f16dc192079c7e046.zip |
More memory consumption reduction.
git-svn-id: http://svn.drobilla.net/lad/patchage@579 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageCanvas.h')
-rw-r--r-- | src/PatchageCanvas.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PatchageCanvas.h b/src/PatchageCanvas.h index ab9b92e..fe91a34 100644 --- a/src/PatchageCanvas.h +++ b/src/PatchageCanvas.h @@ -39,7 +39,7 @@ public: boost::shared_ptr<PatchageModule> find_module(const string& name, ModuleType type); #ifdef HAVE_ALSA - boost::shared_ptr<PatchagePort> find_port(const snd_seq_addr_t* alsa_addr); + boost::shared_ptr<PatchagePort> find_port(const snd_seq_addr_t* alsa_addr); #endif void connect(boost::shared_ptr<Connectable> port1, boost::shared_ptr<Connectable> port2); void disconnect(boost::shared_ptr<Connectable> port1, boost::shared_ptr<Connectable> port2); |