summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/command.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-19 14:06:54 +0000
committerDavid Robillard <d@drobilla.net>2009-10-19 14:06:54 +0000
commit52607dd6ef3df53ac770dafc0411522de8d27dce (patch)
treeb14f8c481e62dc0e271b55046d46c1ae69a47325 /libs/pbd/pbd/command.h
parent69be1aa7bf84f9440c5b5757bd59193f7ff0d60d (diff)
Fix warnings.
git-svn-id: svn://localhost/ardour2/branches/3.0@5794 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/pbd/command.h')
-rw-r--r--libs/pbd/pbd/command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/pbd/command.h b/libs/pbd/pbd/command.h
index 8e85e28882..7af7f7bb98 100644
--- a/libs/pbd/pbd/command.h
+++ b/libs/pbd/pbd/command.h
@@ -38,7 +38,7 @@ public:
virtual void redo() { (*this)(); }
virtual XMLNode &get_state();
- virtual int set_state(const XMLNode&, int version) { /* noop */ return 0; }
+ virtual int set_state(const XMLNode&, int /*version*/) { /* noop */ return 0; }
protected:
Command() {}