summaryrefslogtreecommitdiff
path: root/libs/ardour/region.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-09-02 17:01:36 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-09-02 17:01:36 +0000
commit98d994f29c968796c5e9822e7c3b1713e53b274d (patch)
treea7fa55f288046f51e9138eb3be60b6329fedb34d /libs/ardour/region.cc
parentbeb9c71113da8e1d985564b24b4b7dce6d364156 (diff)
fix a variety of unused argument errors noted by gcc 4.3.2 on x86
git-svn-id: svn://localhost/ardour2/branches/3.0@7733 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/region.cc')
-rw-r--r--libs/ardour/region.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc
index 43506c78be..9a54139d09 100644
--- a/libs/ardour/region.cc
+++ b/libs/ardour/region.cc
@@ -835,7 +835,7 @@ Region::modify_front (nframes_t new_position, bool reset_fade, void *src)
}
void
-Region::modify_end (nframes_t new_endpoint, bool reset_fade, void *src)
+Region::modify_end (nframes_t new_endpoint, bool reset_fade, void* /*src*/)
{
if (locked()) {
return;
@@ -1217,7 +1217,7 @@ Region::set_state (const XMLNode& node, int version)
}
int
-Region::_set_state (const XMLNode& node, int version, PropertyChange& what_changed, bool send)
+Region::_set_state (const XMLNode& node, int /*version*/, PropertyChange& what_changed, bool send)
{
const XMLProperty* prop;