From 7b14a4230b37a3cdd3af4ed84027957b7da60849 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 15 Sep 2009 15:23:59 +0000 Subject: Fix some warnings. git-svn-id: svn://localhost/ardour2/branches/3.0@5663 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/evoral/test/SequenceTest.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libs/evoral/test') diff --git a/libs/evoral/test/SequenceTest.hpp b/libs/evoral/test/SequenceTest.hpp index d5271cfe0e..9c6f084643 100644 --- a/libs/evoral/test/SequenceTest.hpp +++ b/libs/evoral/test/SequenceTest.hpp @@ -21,7 +21,7 @@ public: ~DummyTypeMap() {} - bool type_is_midi(uint32_t type) const {return true;} + bool type_is_midi (uint32_t /*type*/) const {return true;} uint8_t parameter_midi_type(const Parameter& param) const { switch (param.type()) { @@ -40,7 +40,7 @@ public: }; } - bool is_integer(const Evoral::Parameter& param) const {return true;} + bool is_integer (const Evoral::Parameter& /*param*/) const {return true;} Parameter new_parameter(uint32_t type, uint8_t channel, uint32_t id) const { Parameter p(type, channel, id); @@ -48,7 +48,7 @@ public: return p; } - std::string to_symbol(const Parameter& param) const {return "control";} + std::string to_symbol(const Parameter& /*param*/) const {return "control";} }; template @@ -81,7 +81,7 @@ public: } uint32_t assertLastEventTimeEarlier( - Time time, EventType type, uint32_t size, const uint8_t* buf) { + Time time, EventType /*type*/, uint32_t /*size*/, const uint8_t* /*buf*/) { CPPUNIT_ASSERT(_last_event_time <= time); return 0; } -- cgit v1.2.3