mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
Fix libevoal unit-test compilation
This commit is contained in:
parent
f491d7ec71
commit
efec546035
6 changed files with 20 additions and 19 deletions
|
|
@ -2,7 +2,7 @@
|
|||
#include <sigc++/sigc++.h>
|
||||
#include <cppunit/TestFixture.h>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
#include "evoral/Beats.hpp"
|
||||
#include "temporal/beats.h"
|
||||
#include "evoral/Sequence.hpp"
|
||||
#include "evoral/TypeMap.hpp"
|
||||
#include "evoral/EventSink.hpp"
|
||||
|
|
@ -119,7 +119,7 @@ class SequenceTest : public CppUnit::TestFixture
|
|||
CPPUNIT_TEST_SUITE_END ();
|
||||
|
||||
public:
|
||||
typedef Beats Time;
|
||||
typedef Temporal::Beats Time;
|
||||
typedef std::vector< boost::shared_ptr< Note<Time> > > Notes;
|
||||
|
||||
void setUp () {
|
||||
|
|
@ -131,7 +131,7 @@ public:
|
|||
for (int i = 0; i < 12; i++) {
|
||||
test_notes.push_back(
|
||||
boost::shared_ptr<Note<Time> >(
|
||||
new Note<Time>(0, Beats(i * 100), Beats(100), 64 + i, 64)));
|
||||
new Note<Time>(0, Time(i * 100), Time(100), 64 + i, 64)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue