diff options
author | David Robillard <d@drobilla.net> | 2020-08-03 12:34:15 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-03 12:34:15 +0200 |
commit | 5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2 (patch) | |
tree | 8efa2c487c555850e61833b771cfc36056858975 /src/ingen | |
parent | 7f711e938900cc7ab714ebb5279d2312964a41b1 (diff) | |
download | ingen-5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2.tar.gz ingen-5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2.tar.bz2 ingen-5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2.zip |
Clean up includes
As directed by include-what-you-use. Unfortunately, it is still confused by
quite a few things, but this gets a lot closer to a clean report, and at least
makes the output more tolerable to manually check.
Diffstat (limited to 'src/ingen')
-rw-r--r-- | src/ingen/ingen.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ingen/ingen.cpp b/src/ingen/ingen.cpp index bdba2389..29aad4ce 100644 --- a/src/ingen/ingen.cpp +++ b/src/ingen/ingen.cpp @@ -14,17 +14,22 @@ along with Ingen. If not, see <http://www.gnu.org/licenses/>. */ +#include "ingen/Atom.hpp" #include "ingen/Configuration.hpp" #include "ingen/EngineBase.hpp" +#include "ingen/FilePath.hpp" #include "ingen/Interface.hpp" -#include "ingen/Log.hpp" +#include "ingen/Message.hpp" #include "ingen/Parser.hpp" +#include "ingen/URI.hpp" #include "ingen/World.hpp" +#include "ingen/fmt.hpp" #include "ingen/paths.hpp" #include "ingen/runtime_paths.hpp" #include "ingen_config.h" #include "raul/Path.hpp" #include "raul/Symbol.hpp" +#include "serd/serd.h" #ifdef HAVE_SOCKET #include "ingen/client/SocketClient.hpp" |