summaryrefslogtreecommitdiff
path: root/libs/evoral/test
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-09-15 15:23:59 +0000
committerCarl Hetherington <carl@carlh.net>2009-09-15 15:23:59 +0000
commit7b14a4230b37a3cdd3af4ed84027957b7da60849 (patch)
tree142d4eb8a9b3158624258aa575f706ca1773c3f4 /libs/evoral/test
parentbf0a99f0c0a8f76725fba89d076010009c4cdcb0 (diff)
Fix some warnings.
git-svn-id: svn://localhost/ardour2/branches/3.0@5663 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/test')
-rw-r--r--libs/evoral/test/SequenceTest.hpp8
1 files changed, 4 insertions, 4 deletions
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<typename Time>
@@ -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;
}