summaryrefslogtreecommitdiff
path: root/libs/audiographer
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/audiographer
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/audiographer')
-rw-r--r--libs/audiographer/src/general/sample_format_converter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/audiographer/src/general/sample_format_converter.cc b/libs/audiographer/src/general/sample_format_converter.cc
index 5f63fe9f2f..a827f67078 100644
--- a/libs/audiographer/src/general/sample_format_converter.cc
+++ b/libs/audiographer/src/general/sample_format_converter.cc
@@ -21,7 +21,7 @@ SampleFormatConverter<TOut>::SampleFormatConverter (ChannelCount channels) :
template <>
void
-SampleFormatConverter<float>::init (nframes_t max_frames, int type, int data_width)
+SampleFormatConverter<float>::init (nframes_t max_frames, int /* type */, int data_width)
{
if (throw_level (ThrowObject) && data_width != 32) {
throw Exception (*this, "Unsupported data width");