summaryrefslogtreecommitdiff
path: root/libs/evoral/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-23 02:53:47 +0000
committerDavid Robillard <d@drobilla.net>2009-10-23 02:53:47 +0000
commit03b0d3f328196c46985a6e56057d1fcfd8b0fe7c (patch)
tree42178e7a602d7221869381408d011d2ee68b2f4e /libs/evoral/test
parentc78108a033cccd694cd7e0ee3e2ca70d2e489767 (diff)
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
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 1087ab7003..8773c3774a 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>
@@ -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();