From 52607dd6ef3df53ac770dafc0411522de8d27dce Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 19 Oct 2009 14:06:54 +0000 Subject: [PATCH] Fix warnings. git-svn-id: svn://localhost/ardour2/branches/3.0@5794 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/pbd/pbd/command.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {}