summaryrefslogtreecommitdiffstats
path: root/test/build_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 15:42:50 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 15:42:50 +0100
commit8e69778466c3d80d0eb86b38891d74fbc769951e (patch)
tree8880f4be5248d70860f5004b33276a3179649783 /test/build_test.cpp
parent33f343556e055383d45b5f325b0924d282f3b557 (diff)
downloadraul-8e69778466c3d80d0eb86b38891d74fbc769951e.tar.gz
raul-8e69778466c3d80d0eb86b38891d74fbc769951e.tar.bz2
raul-8e69778466c3d80d0eb86b38891d74fbc769951e.zip
Remove TimeSlice and TimeStamp
Diffstat (limited to 'test/build_test.cpp')
-rw-r--r--test/build_test.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/build_test.cpp b/test/build_test.cpp
index 69ddf36..72c9793 100644
--- a/test/build_test.cpp
+++ b/test/build_test.cpp
@@ -23,8 +23,6 @@
#include "raul/RingBuffer.hpp"
#include "raul/Semaphore.hpp"
#include "raul/Symbol.hpp"
-#include "raul/TimeSlice.hpp"
-#include "raul/TimeStamp.hpp"
#ifndef _WIN32
# include "raul/Process.hpp"
@@ -49,9 +47,6 @@ main()
Raul::RingBuffer ring_buffer(64u);
Raul::Semaphore semaphore(0u);
Raul::Symbol symbol("foo");
- Raul::TimeSlice time_slice(48000u, 960u, 120.0);
-
- Raul::TimeStamp time_stamp(Raul::TimeUnit(Raul::TimeUnit::BEATS, 960u));
try {
Raul::Symbol bad_symbol("not a valid symbol!");
@@ -76,8 +71,6 @@ main()
(void)path;
(void)ring_buffer;
(void)symbol;
- (void)time_slice;
- (void)time_stamp;
return 0;
}