diff options
author | Max Kellermann <max@duempel.org> | 2013-10-17 10:06:31 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-17 10:06:31 +0200 |
commit | 7c1cf617282c591dff85df164c178198a0ce7738 (patch) | |
tree | c94cfbbeaefd9eb380ac44de7bb3c6e7c8c59ce1 /test | |
parent | eb10d08671f3c3db2049b19a9959fe8c62532f35 (diff) |
thread/{Cond,Mutex}: use "class" instead of "typedef"
Allows forward-declaration.
Diffstat (limited to 'test')
-rw-r--r-- | test/dump_playlist.cxx | 1 | ||||
-rw-r--r-- | test/dump_text_file.cxx | 1 | ||||
-rw-r--r-- | test/read_tags.cxx | 1 | ||||
-rw-r--r-- | test/run_decoder.cxx | 1 | ||||
-rw-r--r-- | test/run_input.cxx | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/test/dump_playlist.cxx b/test/dump_playlist.cxx index 2f6b3ed2a..90cbc4564 100644 --- a/test/dump_playlist.cxx +++ b/test/dump_playlist.cxx @@ -32,6 +32,7 @@ #include "PlaylistPlugin.hxx" #include "fs/Path.hxx" #include "util/Error.hxx" +#include "thread/Cond.hxx" #include "Log.hxx" #include <glib.h> diff --git a/test/dump_text_file.cxx b/test/dump_text_file.cxx index 685f0fbb9..00281bd8b 100644 --- a/test/dump_text_file.cxx +++ b/test/dump_text_file.cxx @@ -25,6 +25,7 @@ #include "stdbin.h" #include "TextInputStream.hxx" #include "util/Error.hxx" +#include "thread/Cond.hxx" #include "Log.hxx" #ifdef ENABLE_ARCHIVE diff --git a/test/read_tags.cxx b/test/read_tags.cxx index b4e5b2bb0..f98de3d66 100644 --- a/test/read_tags.cxx +++ b/test/read_tags.cxx @@ -28,6 +28,7 @@ #include "tag/TagId3.hxx" #include "tag/ApeTag.hxx" #include "util/Error.hxx" +#include "thread/Cond.hxx" #include "Log.hxx" #include <glib.h> diff --git a/test/run_decoder.cxx b/test/run_decoder.cxx index c2aa1d7d6..7efb9d906 100644 --- a/test/run_decoder.cxx +++ b/test/run_decoder.cxx @@ -25,6 +25,7 @@ #include "InputStream.hxx" #include "AudioFormat.hxx" #include "util/Error.hxx" +#include "thread/Cond.hxx" #include "Log.hxx" #include "stdbin.h" diff --git a/test/run_input.cxx b/test/run_input.cxx index d278676ce..042c7ddd0 100644 --- a/test/run_input.cxx +++ b/test/run_input.cxx @@ -26,6 +26,7 @@ #include "InputInit.hxx" #include "IOThread.hxx" #include "util/Error.hxx" +#include "thread/Cond.hxx" #include "Log.hxx" #ifdef ENABLE_ARCHIVE |