diff options
author | Max Kellermann <max@duempel.org> | 2014-01-20 09:05:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-20 09:05:36 +0100 |
commit | 2f51285349316c2971d619b6c3c0e2eb485c16cf (patch) | |
tree | 6d4aaa7890ac8d06c3113e09ce34ee5d800005a4 /test/test_queue_priority.cxx | |
parent | 64465c1318e227ca625ee2047ec8b6a8f0c2faff (diff) | |
parent | ab9c9068d4fa9b083daa17582987b846c6c985d4 (diff) |
Merge branch 'v0.18.x'
Diffstat (limited to 'test/test_queue_priority.cxx')
-rw-r--r-- | test/test_queue_priority.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_queue_priority.cxx b/test/test_queue_priority.cxx index 953103f9a..108a608c4 100644 --- a/test/test_queue_priority.cxx +++ b/test/test_queue_priority.cxx @@ -12,7 +12,7 @@ Tag::Tag(const Tag &) {} void Tag::Clear() {} static void -check_descending_priority(const struct queue *queue, +check_descending_priority(const Queue *queue, unsigned start_order) { assert(start_order < queue->GetLength()); @@ -58,7 +58,7 @@ QueuePriorityTest::TestPriority() DetachedSong("f.ogg"), }; - struct queue queue(32); + Queue queue(32); for (unsigned i = 0; i < ARRAY_SIZE(songs); ++i) queue.Append(DetachedSong(songs[i]), 0); |