mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
Testing how anal retentive I can be without anyone saying anything.
git-svn-id: svn://localhost/ardour2/branches/3.0@5882 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c78108a033
commit
03b0d3f328
1 changed files with 4 additions and 4 deletions
|
|
@ -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>
|
||||
|
|
@ -102,7 +102,7 @@ class SequenceTest : public CppUnit::TestFixture
|
|||
|
||||
public:
|
||||
typedef double Time;
|
||||
typedef std::vector<boost::shared_ptr<Note<Time> > > Notes;
|
||||
typedef std::vector< boost::shared_ptr< Note<Time> > > Notes;
|
||||
|
||||
void setUp () {
|
||||
type_map = new DummyTypeMap();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue