summaryrefslogtreecommitdiffstats
path: root/src/LashDriver.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-05 03:06:59 +0000
committerDavid Robillard <d@drobilla.net>2007-07-05 03:06:59 +0000
commit6067f8f8572bd7b318d3d17f16dc192079c7e046 (patch)
tree8f1b6a37ea61b72f918c672b282056c48098e5d9 /src/LashDriver.cpp
parent8006c612d557bd071f9ab033c82d27a499bdc0e6 (diff)
downloadpatchage-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/LashDriver.cpp')
-rw-r--r--src/LashDriver.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/LashDriver.cpp b/src/LashDriver.cpp
index db8a51d..114748b 100644
--- a/src/LashDriver.cpp
+++ b/src/LashDriver.cpp
@@ -27,8 +27,9 @@ using std::string;
LashDriver::LashDriver(Patchage* app, int argc, char** argv)
-: _app(app),
- _args(NULL)
+ : Driver(2)
+ , _app(app)
+ , _args(NULL)
{
_args = lash_extract_args(&argc, &argv);
}