Commit ec54754e authored by Max Kellermann's avatar Max Kellermann

Compiler.h: move to util/

parent 0ebba73c
...@@ -79,7 +79,6 @@ libmpd_a_SOURCES = \ ...@@ -79,7 +79,6 @@ libmpd_a_SOURCES = \
$(OUTPUT_API_SRC) \ $(OUTPUT_API_SRC) \
$(MIXER_API_SRC) \ $(MIXER_API_SRC) \
src/check.h \ src/check.h \
src/Compiler.h \
src/open.h \ src/open.h \
src/protocol/Ack.cxx src/protocol/Ack.hxx \ src/protocol/Ack.cxx src/protocol/Ack.hxx \
src/protocol/ArgParser.cxx src/protocol/ArgParser.hxx \ src/protocol/ArgParser.cxx src/protocol/ArgParser.hxx \
...@@ -505,6 +504,7 @@ endif ...@@ -505,6 +504,7 @@ endif
# Generic utility library # Generic utility library
libutil_a_SOURCES = \ libutil_a_SOURCES = \
src/Compiler.h \
src/util/Exception.cxx src/util/Exception.hxx \ src/util/Exception.cxx src/util/Exception.hxx \
src/util/RuntimeError.hxx \ src/util/RuntimeError.hxx \
src/util/Macros.hxx \ src/util/Macros.hxx \
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_AUDIO_FORMAT_HXX #define MPD_AUDIO_FORMAT_HXX
#include "pcm/SampleFormat.hxx" #include "pcm/SampleFormat.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
#include <stddef.h> #include <stddef.h>
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#ifndef MPD_IDLE_FLAGS_HXX #ifndef MPD_IDLE_FLAGS_HXX
#define MPD_IDLE_FLAGS_HXX #define MPD_IDLE_FLAGS_HXX
#include "Compiler.h" #include "util/Compiler.h"
/** song database has been updated*/ /** song database has been updated*/
static constexpr unsigned IDLE_DATABASE = 0x1; static constexpr unsigned IDLE_DATABASE = 0x1;
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "event/Loop.hxx" #include "event/Loop.hxx"
#include "event/Thread.hxx" #include "event/Thread.hxx"
#include "event/MaskMonitor.hxx" #include "event/MaskMonitor.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#ifdef ENABLE_SYSTEMD_DAEMON #ifdef ENABLE_SYSTEMD_DAEMON
#include "lib/systemd/Watchdog.hxx" #include "lib/systemd/Watchdog.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_LOCATE_URI_HXX #define MPD_LOCATE_URI_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
#ifdef _WIN32 #ifdef _WIN32
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_LOG_HXX #define MPD_LOG_HXX
#include "LogLevel.hxx" #include "LogLevel.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <exception> #include <exception>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include <string> #include <string>
#include "Compiler.h" #include "util/Compiler.h"
#define PLAYLIST_FILE_SUFFIX ".m3u" #define PLAYLIST_FILE_SUFFIX ".m3u"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_MIX_RAMP_INFO_HXX #define MPD_MIX_RAMP_INFO_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "MusicChunkPtr.hxx" #include "MusicChunkPtr.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#ifndef NDEBUG #ifndef NDEBUG
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#include "ReplayGainMode.hxx" #include "ReplayGainMode.hxx"
#include "SingleMode.hxx" #include "SingleMode.hxx"
#include "Chrono.hxx" #include "Chrono.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <memory> #include <memory>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_REPLAY_GAIN_INFO_HXX #define MPD_REPLAY_GAIN_INFO_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "ReplayGainMode.hxx" #include "ReplayGainMode.hxx"
struct ReplayGainConfig; struct ReplayGainConfig;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_REPLAY_GAIN_MODE_HXX #ifndef MPD_REPLAY_GAIN_MODE_HXX
#define MPD_REPLAY_GAIN_MODE_HXX #define MPD_REPLAY_GAIN_MODE_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_SINGLE_MODE_HXX #ifndef MPD_SINGLE_MODE_HXX
#define MPD_SINGLE_MODE_HXX #define MPD_SINGLE_MODE_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_SONG_LOADER_HXX #define MPD_SONG_LOADER_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <cstddef> #include <cstddef>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "StateFileConfig.hxx" #include "StateFileConfig.hxx"
#include "event/TimerEvent.hxx" #include "event/TimerEvent.hxx"
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <chrono> #include <chrono>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_ANDROID_ENVIRONMENT_HXX #ifndef MPD_ANDROID_ENVIRONMENT_HXX
#define MPD_ANDROID_ENVIRONMENT_HXX #define MPD_ANDROID_ENVIRONMENT_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <jni.h> #include <jni.h>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "tag/Mask.hxx" #include "tag/Mask.hxx"
#include "event/FullyBufferedSocket.hxx" #include "event/FullyBufferedSocket.hxx"
#include "event/TimerEvent.hxx" #include "event/TimerEvent.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <boost/intrusive/link_mode.hpp> #include <boost/intrusive/link_mode.hpp>
#include <boost/intrusive/list_hook.hpp> #include <boost/intrusive/list_hook.hpp>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_CLIENT_MESSAGE_HXX #ifndef MPD_CLIENT_MESSAGE_HXX
#define MPD_CLIENT_MESSAGE_HXX #define MPD_CLIENT_MESSAGE_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "protocol/Ack.hxx" #include "protocol/Ack.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <stddef.h> #include <stddef.h>
#include <stdarg.h> #include <stdarg.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_NEIGHBOR_COMMANDS_HXX #define MPD_NEIGHBOR_COMMANDS_HXX
#include "CommandResult.hxx" #include "CommandResult.hxx"
#include "Compiler.h" #include "util/Compiler.h"
struct Instance; struct Instance;
class Client; class Client;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_PLAYLIST_COMMANDS_HXX #define MPD_PLAYLIST_COMMANDS_HXX
#include "CommandResult.hxx" #include "CommandResult.hxx"
#include "Compiler.h" #include "util/Compiler.h"
class Client; class Client;
class Request; class Request;
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "Param.hxx" #include "Param.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <vector> #include <vector>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_CONFIG_CHECK_HXX #define MPD_CONFIG_CHECK_HXX
#include "Option.hxx" #include "Option.hxx"
#include "Compiler.h" #include "util/Compiler.h"
struct ConfigData; struct ConfigData;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_CONFIG_OPTION_HXX #ifndef MPD_CONFIG_OPTION_HXX
#define MPD_CONFIG_OPTION_HXX #define MPD_CONFIG_OPTION_HXX
#include "Compiler.h" #include "util/Compiler.h"
#if defined(_WIN32) && CLANG_OR_GCC_VERSION(4,7) #if defined(_WIN32) && CLANG_OR_GCC_VERSION(4,7)
/* "INPUT" is declared by winuser.h */ /* "INPUT" is declared by winuser.h */
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_CONFIG_PARAM_HXX #define MPD_CONFIG_PARAM_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DB_COUNT_HXX #ifndef MPD_DB_COUNT_HXX
#define MPD_DB_COUNT_HXX #define MPD_DB_COUNT_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DATABASE_GLUE_HXX #ifndef MPD_DATABASE_GLUE_HXX
#define MPD_DATABASE_GLUE_HXX #define MPD_DATABASE_GLUE_HXX
#include "Compiler.h" #include "util/Compiler.h"
struct ConfigBlock; struct ConfigBlock;
class EventLoop; class EventLoop;
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include "check.h" #include "check.h"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <assert.h> #include <assert.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DATABASE_PLAYLIST_HXX #ifndef MPD_DATABASE_PLAYLIST_HXX
#define MPD_DATABASE_PLAYLIST_HXX #define MPD_DATABASE_PLAYLIST_HXX
#include "Compiler.h" #include "util/Compiler.h"
class Database; class Database;
class Storage; class Storage;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DATABASE_SONG_HXX #ifndef MPD_DATABASE_SONG_HXX
#define MPD_DATABASE_SONG_HXX #define MPD_DATABASE_SONG_HXX
#include "Compiler.h" #include "util/Compiler.h"
struct LightSong; struct LightSong;
class Database; class Database;
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "Visitor.hxx" #include "Visitor.hxx"
#include "tag/Type.h" #include "tag/Type.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <chrono> #include <chrono>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_LIGHT_DIRECTORY_HXX #ifndef MPD_LIGHT_DIRECTORY_HXX
#define MPD_LIGHT_DIRECTORY_HXX #define MPD_LIGHT_DIRECTORY_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_PLAYLIST_INFO_HXX #define MPD_PLAYLIST_INFO_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <chrono> #include <chrono>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_PLAYLIST_VECTOR_HXX #define MPD_PLAYLIST_VECTOR_HXX
#include "db/PlaylistInfo.hxx" #include "db/PlaylistInfo.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <list> #include <list>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DATABASE_REGISTRY_HXX #ifndef MPD_DATABASE_REGISTRY_HXX
#define MPD_DATABASE_REGISTRY_HXX #define MPD_DATABASE_REGISTRY_HXX
#include "Compiler.h" #include "util/Compiler.h"
struct DatabasePlugin; struct DatabasePlugin;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DATABASE_SELECTION_HXX #ifndef MPD_DATABASE_SELECTION_HXX
#define MPD_DATABASE_SELECTION_HXX #define MPD_DATABASE_SELECTION_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include "song/UriSongFilter.hxx" #include "song/UriSongFilter.hxx"
#include "song/BaseSongFilter.hxx" #include "song/BaseSongFilter.hxx"
#include "song/TagSongFilter.hxx" #include "song/TagSongFilter.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include "config/Block.hxx" #include "config/Block.hxx"
#include "tag/Builder.hxx" #include "tag/Builder.hxx"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_DIRECTORY_HXX #define MPD_DIRECTORY_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "db/Visitor.hxx" #include "db/Visitor.hxx"
#include "db/PlaylistVector.hxx" #include "db/PlaylistVector.hxx"
#include "Song.hxx" #include "Song.hxx"
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
#include "song/LightSong.hxx" #include "song/LightSong.hxx"
#include "util/Manual.hxx" #include "util/Manual.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <cassert> #include <cassert>
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "Chrono.hxx" #include "Chrono.hxx"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <boost/intrusive/list.hpp> #include <boost/intrusive/list.hpp>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_UPNP_DIRECTORY_HXX #define MPD_UPNP_DIRECTORY_HXX
#include "Object.hxx" #include "Object.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <vector> #include <vector>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_UPNP_OBJECT_HXX #define MPD_UPNP_OBJECT_HXX
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "Remove.hxx" #include "Remove.hxx"
#include "Compiler.h" #include "util/Compiler.h"
struct Directory; struct Directory;
struct Song; struct Song;
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#define MPD_EXCLUDE_H #define MPD_EXCLUDE_H
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "fs/Glob.hxx" #include "fs/Glob.hxx"
#include "input/Ptr.hxx" #include "input/Ptr.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_INOTIFY_SOURCE_HXX #define MPD_INOTIFY_SOURCE_HXX
#include "event/SocketMonitor.hxx" #include "event/SocketMonitor.hxx"
#include "Compiler.h" #include "util/Compiler.h"
class FileDescriptor; class FileDescriptor;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_INOTIFY_UPDATE_HXX #define MPD_INOTIFY_UPDATE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
class EventLoop; class EventLoop;
class Storage; class Storage;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_UPDATE_QUEUE_HXX #define MPD_UPDATE_QUEUE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <list> #include <list>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "check.h" #include "check.h"
#include "event/DeferEvent.hxx" #include "event/DeferEvent.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <forward_list> #include <forward_list>
#include <string> #include <string>
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include "Queue.hxx" #include "Queue.hxx"
#include "event/DeferEvent.hxx" #include "event/DeferEvent.hxx"
#include "thread/Thread.hxx" #include "thread/Thread.hxx"
#include "Compiler.h" #include "util/Compiler.h"
class SimpleDatabase; class SimpleDatabase;
class DatabaseListener; class DatabaseListener;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_UPDATE_IO_HXX #define MPD_UPDATE_IO_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
struct Directory; struct Directory;
struct StorageFileInfo; struct StorageFileInfo;
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "check.h" #include "check.h"
#include "Config.hxx" #include "Config.hxx"
#include "Editor.hxx" #include "Editor.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <atomic> #include <atomic>
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "DecoderCommand.hxx" #include "DecoderCommand.hxx"
#include "Chrono.hxx" #include "Chrono.hxx"
#include "input/Ptr.hxx" #include "input/Ptr.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DECODER_BUFFER_HXX #ifndef MPD_DECODER_BUFFER_HXX
#define MPD_DECODER_BUFFER_HXX #define MPD_DECODER_BUFFER_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include "util/DynamicFifoBuffer.hxx" #include "util/DynamicFifoBuffer.hxx"
#include "util/ConstBuffer.hxx" #include "util/ConstBuffer.hxx"
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DECODER_LIST_HXX #ifndef MPD_DECODER_LIST_HXX
#define MPD_DECODER_LIST_HXX #define MPD_DECODER_LIST_HXX
#include "Compiler.h" #include "util/Compiler.h"
struct ConfigData; struct ConfigData;
struct DecoderPlugin; struct DecoderPlugin;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_DECODER_PLUGIN_HXX #ifndef MPD_DECODER_PLUGIN_HXX
#define MPD_DECODER_PLUGIN_HXX #define MPD_DECODER_PLUGIN_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <forward_list> #include <forward_list>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "fs/io/Reader.hxx" #include "fs/io/Reader.hxx"
#include "Compiler.h" #include "util/Compiler.h"
class DecoderClient; class DecoderClient;
class InputStream; class InputStream;
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "system/ByteOrder.hxx" #include "system/ByteOrder.hxx"
#include "input/Offset.hxx" #include "input/Offset.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "../DecoderAPI.hxx" #include "../DecoderAPI.hxx"
#include "input/InputStream.hxx" #include "input/InputStream.hxx"
#include "Log.hxx" #include "Log.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <exception> #include <exception>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_ENCODER_INTERFACE_HXX #define MPD_ENCODER_INTERFACE_HXX
#include "EncoderPlugin.hxx" #include "EncoderPlugin.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <assert.h> #include <assert.h>
#include <stddef.h> #include <stddef.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "NullEncoderPlugin.hxx" #include "NullEncoderPlugin.hxx"
#include "../EncoderAPI.hxx" #include "../EncoderAPI.hxx"
#include "util/DynamicFifoBuffer.hxx" #include "util/DynamicFifoBuffer.hxx"
#include "Compiler.h" #include "util/Compiler.h"
class NullEncoder final : public Encoder { class NullEncoder final : public Encoder {
DynamicFifoBuffer<uint8_t> buffer; DynamicFifoBuffer<uint8_t> buffer;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include "BufferedSocket.hxx" #include "BufferedSocket.hxx"
#include "net/SocketError.hxx" #include "net/SocketError.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <algorithm> #include <algorithm>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "DeferEvent.hxx" #include "DeferEvent.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "thread/Cond.hxx" #include "thread/Cond.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <exception> #include <exception>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include "FullyBufferedSocket.hxx" #include "FullyBufferedSocket.hxx"
#include "net/SocketError.hxx" #include "net/SocketError.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "thread/Id.hxx" #include "thread/Id.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include "PollGroup.hxx" #include "PollGroup.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "IdleMonitor.hxx" #include "IdleMonitor.hxx"
#include "TimerEvent.hxx" #include "TimerEvent.hxx"
#include "SocketMonitor.hxx" #include "SocketMonitor.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <forward_list> #include <forward_list>
#include <iterator> #include <iterator>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "system/EPollFD.hxx" #include "system/EPollFD.hxx"
#include <array> #include <array>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#ifndef MPD_FILTER_REGISTRY_HXX #ifndef MPD_FILTER_REGISTRY_HXX
#define MPD_FILTER_REGISTRY_HXX #define MPD_FILTER_REGISTRY_HXX
#include "Compiler.h" #include "util/Compiler.h"
struct FilterPlugin; struct FilterPlugin;
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#include "filter/Prepared.hxx" #include "filter/Prepared.hxx"
#include "filter/FilterRegistry.hxx" #include "filter/FilterRegistry.hxx"
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include "util/ConstBuffer.hxx" #include "util/ConstBuffer.hxx"
class NullFilter final : public Filter { class NullFilter final : public Filter {
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "AllocatedPath.hxx" #include "AllocatedPath.hxx"
#include "Domain.hxx" #include "Domain.hxx"
#include "Charset.hxx" #include "Charset.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <exception> #include <exception>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_FS_ALLOCATED_PATH_HXX #define MPD_FS_ALLOCATED_PATH_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "Traits.hxx" #include "Traits.hxx"
#include "Path.hxx" #include "Path.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_FS_CHARSET_HXX #define MPD_FS_CHARSET_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "Traits.hxx" #include "Traits.hxx"
#if (defined(HAVE_ICU) || defined(HAVE_ICONV)) && !defined(_WIN32) #if (defined(HAVE_ICU) || defined(HAVE_ICONV)) && !defined(_WIN32)
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#endif #endif
#ifdef HAVE_CLASS_GLOB #ifdef HAVE_CLASS_GLOB
#include "Compiler.h" #include "util/Compiler.h"
/** /**
* A pattern that matches file names. It may contain shell wildcards * A pattern that matches file names. It may contain shell wildcards
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_FS_PATH_HXX #define MPD_FS_PATH_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "Traits.hxx" #include "Traits.hxx"
#include <string> #include <string>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_FS_TRAITS_HXX #define MPD_FS_TRAITS_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "util/StringPointer.hxx" #include "util/StringPointer.hxx"
#include "util/StringAPI.hxx" #include "util/StringAPI.hxx"
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "PeekReader.hxx" #include "PeekReader.hxx"
#include "Compiler.h" #include "util/Compiler.h"
class GunzipReader; class GunzipReader;
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define BUFFERED_OUTPUT_STREAM_HXX #define BUFFERED_OUTPUT_STREAM_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "util/DynamicFifoBuffer.hxx" #include "util/DynamicFifoBuffer.hxx"
#include <stddef.h> #include <stddef.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_BUFFERED_READER_HXX #define MPD_BUFFERED_READER_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "util/DynamicFifoBuffer.hxx" #include "util/DynamicFifoBuffer.hxx"
#include <stddef.h> #include <stddef.h>
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#include "check.h" #include "check.h"
#include "OutputStream.hxx" #include "OutputStream.hxx"
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#ifndef _WIN32 #ifndef _WIN32
#include "system/FileDescriptor.hxx" #include "system/FileDescriptor.hxx"
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "check.h" #include "check.h"
#include "Reader.hxx" #include "Reader.hxx"
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#ifndef _WIN32 #ifndef _WIN32
#include "system/FileDescriptor.hxx" #include "system/FileDescriptor.hxx"
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "check.h" #include "check.h"
#include "Reader.hxx" #include "Reader.hxx"
#include "util/StaticFifoBuffer.hxx" #include "util/StaticFifoBuffer.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <zlib.h> #include <zlib.h>
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include "check.h" #include "check.h"
#include "OutputStream.hxx" #include "OutputStream.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <zlib.h> #include <zlib.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "Reader.hxx" #include "Reader.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_READER_HXX #define MPD_READER_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <stddef.h> #include <stddef.h>
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include "check.h" #include "check.h"
#include "OutputStream.hxx" #include "OutputStream.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <stdio.h> #include <stdio.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_TEXT_FILE_HXX #define MPD_TEXT_FILE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
class Path; class Path;
class FileReader; class FileReader;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define INPUT_ERROR_HXX #define INPUT_ERROR_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <exception> #include <exception>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_ICY_INPUT_STREAM_HXX #define MPD_ICY_INPUT_STREAM_HXX
#include "ProxyInputStream.hxx" #include "ProxyInputStream.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <memory> #include <memory>
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "Offset.hxx" #include "Offset.hxx"
#include "Ptr.hxx" #include "Ptr.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <memory> #include <memory>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "fs/io/Reader.hxx" #include "fs/io/Reader.hxx"
#include "Compiler.h" #include "util/Compiler.h"
struct Decoder; struct Decoder;
class InputStream; class InputStream;
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#ifndef JAVA_GLOBAL_HXX #ifndef JAVA_GLOBAL_HXX
#define JAVA_GLOBAL_HXX #define JAVA_GLOBAL_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <jni.h> #include <jni.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "pcm/SampleFormat.hxx" #include "pcm/SampleFormat.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <alsa/asoundlib.h> #include <alsa/asoundlib.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_ALSA_VERSION_HXX #ifndef MPD_ALSA_VERSION_HXX
#define MPD_ALSA_VERSION_HXX #define MPD_ALSA_VERSION_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#ifndef CURL_VERSION_HXX #ifndef CURL_VERSION_HXX
#define CURL_VERSION_HXX #define CURL_VERSION_HXX
#include "Compiler.h" #include "util/Compiler.h"
gcc_const gcc_const
bool bool
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#ifndef ODBUS_ERROR_HXX #ifndef ODBUS_ERROR_HXX
#define ODBUS_ERROR_HXX #define ODBUS_ERROR_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <dbus/dbus.h> #include <dbus/dbus.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "ReadIter.hxx" #include "ReadIter.hxx"
#include "ObjectManager.hxx" #include "ObjectManager.hxx"
#include "util/StringAPI.hxx" #include "util/StringAPI.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <functional> #include <functional>
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#include "Connection.hxx" #include "Connection.hxx"
#include "event/SocketMonitor.hxx" #include "event/SocketMonitor.hxx"
#include "event/DeferEvent.hxx" #include "event/DeferEvent.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <dbus/dbus.h> #include <dbus/dbus.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_EXPAT_HXX #define MPD_EXPAT_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <expat.h> #include <expat.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_FFMPEG_TIME_HXX #define MPD_FFMPEG_TIME_HXX
#include "Chrono.hxx" #include "Chrono.hxx"
#include "Compiler.h" #include "util/Compiler.h"
extern "C" { extern "C" {
#include <libavutil/avutil.h> #include <libavutil/avutil.h>
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define GCRYPT_HASH_HXX #define GCRYPT_HASH_HXX
#include "util/ConstBuffer.hxx" #include "util/ConstBuffer.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <gcrypt.h> #include <gcrypt.h>
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define GCRYPT_MD5_HXX #define GCRYPT_MD5_HXX
#include "util/StringBuffer.hxx" #include "util/StringBuffer.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <array> #include <array>
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#if defined(HAVE_ICU) || defined(_WIN32) #if defined(HAVE_ICU) || defined(_WIN32)
#define HAVE_ICU_CASE_FOLD #define HAVE_ICU_CASE_FOLD
#include "Compiler.h" #include "util/Compiler.h"
template<typename T> class AllocatedString; template<typename T> class AllocatedString;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_ICU_COLLATE_HXX #define MPD_ICU_COLLATE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
/** /**
* Throws #std::runtime_error on error. * Throws #std::runtime_error on error.
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_ICU_COMPARE_HXX #define MPD_ICU_COMPARE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "util/AllocatedString.hxx" #include "util/AllocatedString.hxx"
/** /**
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_ICU_CONVERTER_HXX #define MPD_ICU_CONVERTER_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#ifdef HAVE_ICU #ifdef HAVE_ICU
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_ICU_WIN32_HXX #define MPD_ICU_WIN32_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <wchar.h> #include <wchar.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_NFS_BASE_HXX #define MPD_NFS_BASE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
/** /**
* Set the "base" NFS server and export name. This will be the * Set the "base" NFS server and export name. This will be the
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_NFS_CANCELLABLE_HXX #ifndef MPD_NFS_CANCELLABLE_HXX
#define MPD_NFS_CANCELLABLE_HXX #define MPD_NFS_CANCELLABLE_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <boost/intrusive/list.hpp> #include <boost/intrusive/list.hpp>
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "Lease.hxx" #include "Lease.hxx"
#include "Callback.hxx" #include "Callback.hxx"
#include "event/DeferEvent.hxx" #include "event/DeferEvent.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <exception> #include <exception>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_NFS_GLUE_HXX #define MPD_NFS_GLUE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
class EventLoop; class EventLoop;
class NfsConnection; class NfsConnection;
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "Connection.hxx" #include "Connection.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include "event/IdleMonitor.hxx" #include "event/IdleMonitor.hxx"
#include <boost/intrusive/set.hpp> #include <boost/intrusive/set.hpp>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_UPNP_ACTION_HXX #ifndef MPD_UPNP_ACTION_HXX
#define MPD_UPNP_ACTION_HXX #define MPD_UPNP_ACTION_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <upnptools.h> #include <upnptools.h>
......
...@@ -30,7 +30,7 @@ using UpnpDiscovery = Upnp_Discovery; ...@@ -30,7 +30,7 @@ using UpnpDiscovery = Upnp_Discovery;
#endif #endif
#if UPNP_VERSION < 10624 #if UPNP_VERSION < 10624
#include "Compiler.h" #include "util/Compiler.h"
gcc_pure gcc_pure
static inline int static inline int
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef _UPNPDIR_HXX_INCLUDED_ #ifndef _UPNPDIR_HXX_INCLUDED_
#define _UPNPDIR_HXX_INCLUDED_ #define _UPNPDIR_HXX_INCLUDED_
#include "Compiler.h" #include "util/Compiler.h"
#include <upnp.h> #include <upnp.h>
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include "lib/curl/Request.hxx" #include "lib/curl/Request.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "event/DeferEvent.hxx" #include "event/DeferEvent.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <upnp.h> #include <upnp.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_UPNP_UTIL_HXX #ifndef MPD_UPNP_UTIL_HXX
#define MPD_UPNP_UTIL_HXX #define MPD_UPNP_UTIL_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <list> #include <list>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include "FlacIOHandle.hxx" #include "FlacIOHandle.hxx"
#include "Log.hxx" #include "Log.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include "system/Error.hxx" #include "system/Error.hxx"
#include <errno.h> #include <errno.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_FLAC_IO_HANDLE_HXX #ifndef MPD_FLAC_IO_HANDLE_HXX
#define MPD_FLAC_IO_HANDLE_HXX #define MPD_FLAC_IO_HANDLE_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include "input/InputStream.hxx" #include "input/InputStream.hxx"
#include <FLAC/callback.h> #include <FLAC/callback.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_FLAC_METADATA_CHAIN_HXX #ifndef MPD_FLAC_METADATA_CHAIN_HXX
#define MPD_FLAC_METADATA_CHAIN_HXX #define MPD_FLAC_METADATA_CHAIN_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <FLAC/metadata.h> #include <FLAC/metadata.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_FLAC_METADATA_ITERATOR_HXX #ifndef MPD_FLAC_METADATA_ITERATOR_HXX
#define MPD_FLAC_METADATA_ITERATOR_HXX #define MPD_FLAC_METADATA_ITERATOR_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <FLAC/metadata.h> #include <FLAC/metadata.h>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
*/ */
#include "OggSerial.hxx" #include "OggSerial.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <atomic> #include <atomic>
#include <chrono> #include <chrono>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_LS_HXX #ifndef MPD_LS_HXX
#define MPD_LS_HXX #define MPD_LS_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <stdio.h> #include <stdio.h>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "MixerPlugin.hxx" #include "MixerPlugin.hxx"
#include "MixerList.hxx" #include "MixerList.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "Compiler.h" #include "util/Compiler.h"
class MixerListener; class MixerListener;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_MIXER_TYPE_HXX #ifndef MPD_MIXER_TYPE_HXX
#define MPD_MIXER_TYPE_HXX #define MPD_MIXER_TYPE_HXX
#include "Compiler.h" #include "util/Compiler.h"
enum class MixerType { enum class MixerType {
/** mixer disabled */ /** mixer disabled */
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_VOLUME_HXX #ifndef MPD_VOLUME_HXX
#define MPD_VOLUME_HXX #define MPD_VOLUME_HXX
#include "Compiler.h" #include "util/Compiler.h"
class MultipleOutputs; class MultipleOutputs;
class BufferedOutputStream; class BufferedOutputStream;
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "config.h" #include "config.h"
#include "mixer/MixerInternal.hxx" #include "mixer/MixerInternal.hxx"
#include "output/plugins/HaikuOutputPlugin.hxx" #include "output/plugins/HaikuOutputPlugin.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include "util/RuntimeError.hxx" #include "util/RuntimeError.hxx"
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "config.h" #include "config.h"
#include "mixer/MixerInternal.hxx" #include "mixer/MixerInternal.hxx"
#include "output/plugins/RoarOutputPlugin.hxx" #include "output/plugins/RoarOutputPlugin.hxx"
#include "Compiler.h" #include "util/Compiler.h"
class RoarMixer final : public Mixer { class RoarMixer final : public Mixer {
/** the base mixer class */ /** the base mixer class */
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_NEIGHBOR_ALL_HXX #define MPD_NEIGHBOR_ALL_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include <forward_list> #include <forward_list>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_NEIGHBOR_REGISTRY_HXX #ifndef MPD_NEIGHBOR_REGISTRY_HXX
#define MPD_NEIGHBOR_REGISTRY_HXX #define MPD_NEIGHBOR_REGISTRY_HXX
#include "Compiler.h" #include "util/Compiler.h"
struct NeighborPlugin; struct NeighborPlugin;
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include "SocketAddress.hxx" #include "SocketAddress.hxx"
#include "Features.hxx" #include "Features.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <algorithm> #include <algorithm>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_RESOLVER_HXX #define MPD_RESOLVER_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
struct addrinfo; struct addrinfo;
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define SOCKET_ADDRESS_HXX #define SOCKET_ADDRESS_HXX
#include "Features.hxx" #include "Features.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <cstddef> #include <cstddef>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_SOCKET_ERROR_HXX #ifndef MPD_SOCKET_ERROR_HXX
#define MPD_SOCKET_ERROR_HXX #define MPD_SOCKET_ERROR_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include "system/Error.hxx" #include "system/Error.hxx"
#ifdef _WIN32 #ifdef _WIN32
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define STATIC_SOCKET_ADDRESS_HXX #define STATIC_SOCKET_ADDRESS_HXX
#include "SocketAddress.hxx" #include "SocketAddress.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <assert.h> #include <assert.h>
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define NET_TO_STRING_HXX #define NET_TO_STRING_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "thread/Cond.hxx" #include "thread/Cond.hxx"
#include "system/PeriodClock.hxx" #include "system/PeriodClock.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <utility> #include <utility>
#include <exception> #include <exception>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
*/ */
#include "Interface.hxx" #include "Interface.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <stdexcept> #include <stdexcept>
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
#include "ReplayGainMode.hxx" #include "ReplayGainMode.hxx"
#include "Chrono.hxx" #include "Chrono.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <vector> #include <vector>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_OUTPUT_PLUGIN_HXX #ifndef MPD_OUTPUT_PLUGIN_HXX
#define MPD_OUTPUT_PLUGIN_HXX #define MPD_OUTPUT_PLUGIN_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <chrono> #include <chrono>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define SHARED_PIPE_CONSUMER_HXX #define SHARED_PIPE_CONSUMER_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <assert.h> #include <assert.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define AUDIO_OUTPUT_SOURCE_HXX #define AUDIO_OUTPUT_SOURCE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "SharedPipeConsumer.hxx" #include "SharedPipeConsumer.hxx"
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
#include "ReplayGainMode.hxx" #include "ReplayGainMode.hxx"
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#ifdef ENABLE_WINMM_OUTPUT #ifdef ENABLE_WINMM_OUTPUT
#include "Compiler.h" #include "util/Compiler.h"
#include <windows.h> #include <windows.h>
#include <mmsystem.h> #include <mmsystem.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "Page.hxx" #include "Page.hxx"
#include "event/BufferedSocket.hxx" #include "event/BufferedSocket.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <boost/intrusive/link_mode.hpp> #include <boost/intrusive/link_mode.hpp>
#include <boost/intrusive/list_hook.hpp> #include <boost/intrusive/list_hook.hpp>
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#include "event/ServerSocket.hxx" #include "event/ServerSocket.hxx"
#include "event/DeferEvent.hxx" #include "event/DeferEvent.hxx"
#include "util/Cast.hxx" #include "util/Cast.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <boost/intrusive/list.hpp> #include <boost/intrusive/list.hpp>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "Resampler.hxx" #include "Resampler.hxx"
#include "PcmBuffer.hxx" #include "PcmBuffer.hxx"
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
#include "Compiler.h" #include "util/Compiler.h"
/** /**
* A naive resampler that is used when no external library was found * A naive resampler that is used when no external library was found
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_PCM_INTERLEAVE_HXX #define MPD_PCM_INTERLEAVE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include "util/ConstBuffer.hxx" #include "util/ConstBuffer.hxx"
#include <stdint.h> #include <stdint.h>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "Resampler.hxx" #include "Resampler.hxx"
#include "PcmBuffer.hxx" #include "PcmBuffer.hxx"
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <samplerate.h> #include <samplerate.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define PCM_BUFFER_HXX #define PCM_BUFFER_HXX
#include "util/ReusableArray.hxx" #include "util/ReusableArray.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_PCM_MIX_HXX #define MPD_PCM_MIX_HXX
#include "SampleFormat.hxx" #include "SampleFormat.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <stddef.h> #include <stddef.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_PCM_UTILS_H #ifndef MPD_PCM_UTILS_H
#define MPD_PCM_UTILS_H #define MPD_PCM_UTILS_H
#include "Compiler.h" #include "util/Compiler.h"
#include <limits> #include <limits>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_PCM_RESAMPLER_HXX #define MPD_PCM_RESAMPLER_HXX
#include "util/ConstBuffer.hxx" #include "util/ConstBuffer.hxx"
#include "Compiler.h" #include "util/Compiler.h"
struct AudioFormat; struct AudioFormat;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_PCM_SAMPLE_FORMAT_HXX #ifndef MPD_PCM_SAMPLE_FORMAT_HXX
#define MPD_PCM_SAMPLE_FORMAT_HXX #define MPD_PCM_SAMPLE_FORMAT_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "Resampler.hxx" #include "Resampler.hxx"
#include "PcmBuffer.hxx" #include "PcmBuffer.hxx"
#include "Compiler.h" #include "util/Compiler.h"
struct AudioFormat; struct AudioFormat;
struct ConfigBlock; struct ConfigBlock;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_CROSSFADE_HXX #ifndef MPD_CROSSFADE_HXX
#define MPD_CROSSFADE_HXX #define MPD_CROSSFADE_HXX
#include "Compiler.h" #include "util/Compiler.h"
struct AudioFormat; struct AudioFormat;
class SignedSongTime; class SignedSongTime;
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "MusicChunkPtr.hxx" #include "MusicChunkPtr.hxx"
#include "Chrono.hxx" #include "Chrono.hxx"
#include "Compiler.h" #include "util/Compiler.h"
struct AudioFormat; struct AudioFormat;
struct MusicChunk; struct MusicChunk;
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "SongEnumerator.hxx" #include "SongEnumerator.hxx"
#include "song/DetachedSong.hxx" #include "song/DetachedSong.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <forward_list> #include <forward_list>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_PLAYLIST_REGISTRY_HXX #define MPD_PLAYLIST_REGISTRY_HXX
#include "input/Ptr.hxx" #include "input/Ptr.hxx"
#include "Compiler.h" #include "util/Compiler.h"
struct ConfigData; struct ConfigData;
class Mutex; class Mutex;
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_PLAYLIST_STREAM_HXX #ifndef MPD_PLAYLIST_STREAM_HXX
#define MPD_PLAYLIST_STREAM_HXX #define MPD_PLAYLIST_STREAM_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <memory> #include <memory>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "check.h" #include "check.h"
#include "song/DetachedSong.hxx" #include "song/DetachedSong.hxx"
#include "tag/Builder.hxx" #include "tag/Builder.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <memory> #include <memory>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_ID_TABLE_HXX #ifndef MPD_ID_TABLE_HXX
#define MPD_ID_TABLE_HXX #define MPD_ID_TABLE_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <algorithm> #include <algorithm>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_QUEUE_HXX #ifndef MPD_QUEUE_HXX
#define MPD_QUEUE_HXX #define MPD_QUEUE_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include "IdTable.hxx" #include "IdTable.hxx"
#include "SingleMode.hxx" #include "SingleMode.hxx"
#include "util/LazyRandomEngine.hxx" #include "util/LazyRandomEngine.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_AND_SONG_FILTER_HXX #define MPD_AND_SONG_FILTER_HXX
#include "ISongFilter.hxx" #include "ISongFilter.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <list> #include <list>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_BASE_SONG_FILTER_HXX #define MPD_BASE_SONG_FILTER_HXX
#include "ISongFilter.hxx" #include "ISongFilter.hxx"
#include "Compiler.h" #include "util/Compiler.h"
class BaseSongFilter final : public ISongFilter { class BaseSongFilter final : public ISongFilter {
std::string value; std::string value;
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "check.h" #include "check.h"
#include "tag/Tag.hxx" #include "tag/Tag.hxx"
#include "Chrono.hxx" #include "Chrono.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <chrono> #include <chrono>
#include <string> #include <string>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_SONG_FILTER_HXX #define MPD_SONG_FILTER_HXX
#include "AndSongFilter.hxx" #include "AndSongFilter.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_I_SONG_FILTER_HXX #ifndef MPD_I_SONG_FILTER_HXX
#define MPD_I_SONG_FILTER_HXX #define MPD_I_SONG_FILTER_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <memory> #include <memory>
#include <string> #include <string>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "Chrono.hxx" #include "Chrono.hxx"
#include "AudioFormat.hxx" #include "AudioFormat.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
#include <chrono> #include <chrono>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_STRING_FILTER_HXX #define MPD_STRING_FILTER_HXX
#include "lib/icu/Compare.hxx" #include "lib/icu/Compare.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#define MPD_STICKER_DATABASE_HXX #define MPD_STICKER_DATABASE_HXX
#include "Match.hxx" #include "Match.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <string> #include <string>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "check.h" #include "check.h"
#include "StorageInterface.hxx" #include "StorageInterface.hxx"
#include "thread/Mutex.hxx" #include "thread/Mutex.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <memory> #include <memory>
#include <string> #include <string>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_STORAGE_CONFIG_HXX #define MPD_STORAGE_CONFIG_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <memory> #include <memory>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_STORAGE_REGISTRY_HXX #define MPD_STORAGE_REGISTRY_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <memory> #include <memory>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_STORAGE_INTERFACE_HXX #define MPD_STORAGE_INTERFACE_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <memory> #include <memory>
#include <string> #include <string>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_STORAGE_LOCAL_HXX #define MPD_STORAGE_LOCAL_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <memory> #include <memory>
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#ifndef BYTE_ORDER_HXX #ifndef BYTE_ORDER_HXX
#define BYTE_ORDER_HXX #define BYTE_ORDER_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <stdint.h> #include <stdint.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_CLOCK_H #ifndef MPD_CLOCK_H
#define MPD_CLOCK_H #define MPD_CLOCK_H
#include "Compiler.h" #include "util/Compiler.h"
#ifdef _WIN32 #ifdef _WIN32
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#ifndef SYSTEM_ERROR_HXX #ifndef SYSTEM_ERROR_HXX
#define SYSTEM_ERROR_HXX #define SYSTEM_ERROR_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include <system_error> #include <system_error>
#include <utility> #include <utility>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#ifdef USE_EVENTFD #ifdef USE_EVENTFD
#include "EventFD.hxx" #include "EventFD.hxx"
#include "system/Error.hxx" #include "system/Error.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <assert.h> #include <assert.h>
#include <sys/eventfd.h> #include <sys/eventfd.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "FileDescriptor.hxx" #include "FileDescriptor.hxx"
#include "system/Error.hxx" #include "system/Error.hxx"
#include "util/ScopeExit.hxx" #include "util/ScopeExit.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <assert.h> #include <assert.h>
#include <unistd.h> #include <unistd.h>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_FATAL_ERROR_HXX #define MPD_FATAL_ERROR_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#ifdef _WIN32 #ifdef _WIN32
#include <windef.h> #include <windef.h>
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define FILE_DESCRIPTOR_HXX #define FILE_DESCRIPTOR_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <utility> #include <utility>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "Type.h" #include "Type.h"
#include "Chrono.hxx" #include "Chrono.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <vector> #include <vector>
#include <memory> #include <memory>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_TAG_STRING_HXX #define MPD_TAG_STRING_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
struct StringView; struct StringView;
template<typename T> struct WritableBuffer; template<typename T> struct WritableBuffer;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_TAG_FORMAT_HXX #define MPD_TAG_FORMAT_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
struct Tag; struct Tag;
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "check.h" #include "check.h"
#include "Type.h" #include "Type.h"
#include "Chrono.hxx" #include "Chrono.hxx"
#include "Compiler.h" #include "util/Compiler.h"
struct AudioFormat; struct AudioFormat;
class TagBuilder; class TagBuilder;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_TAG_PARSE_NAME_HXX #define MPD_TAG_PARSE_NAME_HXX
#include "Type.h" #include "Type.h"
#include "Compiler.h" #include "util/Compiler.h"
/** /**
* Parse the string, and convert it into a #TagType. Returns * Parse the string, and convert it into a #TagType. Returns
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_TAG_SET_HXX #ifndef MPD_TAG_SET_HXX
#define MPD_TAG_SET_HXX #define MPD_TAG_SET_HXX
#include "Compiler.h" #include "util/Compiler.h"
#include "Tag.hxx" #include "Tag.hxx"
#include <set> #include <set>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "Mask.hxx" #include "Mask.hxx"
#include "Type.h" #include "Type.h"
#include "Compiler.h" #include "util/Compiler.h"
extern TagMask global_tag_mask; extern TagMask global_tag_mask;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_TAG_TABLE_HXX #define MPD_TAG_TABLE_HXX
#include "Type.h" #include "Type.h"
#include "Compiler.h" #include "util/Compiler.h"
struct tag_table { struct tag_table {
const char *name; const char *name;
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "Type.h" // IWYU pragma: export #include "Type.h" // IWYU pragma: export
#include "Item.hxx" // IWYU pragma: export #include "Item.hxx" // IWYU pragma: export
#include "Chrono.hxx" #include "Chrono.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <algorithm> #include <algorithm>
#include <memory> #include <memory>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_TAG_VORBIS_COMMENT_HXX #define MPD_TAG_VORBIS_COMMENT_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
/** /**
* Checks if the specified name matches the entry's name, and if yes, * Checks if the specified name matches the entry's name, and if yes,
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#ifndef MPD_THREAD_ID_HXX #ifndef MPD_THREAD_ID_HXX
#define MPD_THREAD_ID_HXX #define MPD_THREAD_ID_HXX
#include "Compiler.h" #include "util/Compiler.h"
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "util/BindMethod.hxx" #include "util/BindMethod.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#ifdef _WIN32 #ifdef _WIN32
#include "Compiler.h" #include "util/Compiler.h"
#include "Instance.hxx" #include "Instance.hxx"
#include "system/FatalError.hxx" #include "system/FatalError.hxx"
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define MPD_AVAHI_POLL_HXX #define MPD_AVAHI_POLL_HXX
#include "check.h" #include "check.h"
#include "Compiler.h" #include "util/Compiler.h"
#include <avahi-common/watch.h> #include <avahi-common/watch.h>
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "event/SocketMonitor.hxx" #include "event/SocketMonitor.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
#include "Log.hxx" #include "Log.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <dns_sd.h> #include <dns_sd.h>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "Listen.hxx" #include "Listen.hxx"
#include "util/Domain.hxx" #include "util/Domain.hxx"
#include "Log.hxx" #include "Log.hxx"
#include "Compiler.h" #include "util/Compiler.h"
static constexpr Domain zeroconf_domain("zeroconf"); static constexpr Domain zeroconf_domain("zeroconf");
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "decoder/DecoderAPI.hxx" #include "decoder/DecoderAPI.hxx"
#include "input/InputStream.hxx" #include "input/InputStream.hxx"
#include "util/StringBuffer.hxx" #include "util/StringBuffer.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <unistd.h> #include <unistd.h>
#include <stdio.h> #include <stdio.h>
......
#include "config.h" #include "config.h"
#include "archive/ArchiveLookup.hxx" #include "archive/ArchiveLookup.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <cppunit/TestFixture.h> #include <cppunit/TestFixture.h>
#include <cppunit/extensions/TestFactoryRegistry.h> #include <cppunit/extensions/TestFactoryRegistry.h>
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#include "util/ByteReverse.hxx" #include "util/ByteReverse.hxx"
#include "util/Macros.hxx" #include "util/Macros.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <cppunit/TestFixture.h> #include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h> #include <cppunit/extensions/HelperMacros.h>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include "test_pcm_all.hxx" #include "test_pcm_all.hxx"
#include "TestAudioFormat.hxx" #include "TestAudioFormat.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <cppunit/extensions/TestFactoryRegistry.h> #include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h> #include <cppunit/ui/text/TestRunner.h>
......
#include "config.h" #include "config.h"
#include "protocol/ArgParser.hxx" #include "protocol/ArgParser.hxx"
#include "protocol/Ack.hxx" #include "protocol/Ack.hxx"
#include "Compiler.h" #include "util/Compiler.h"
#include <cppunit/TestFixture.h> #include <cppunit/TestFixture.h>
#include <cppunit/extensions/TestFactoryRegistry.h> #include <cppunit/extensions/TestFactoryRegistry.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment