summaryrefslogtreecommitdiffstats
path: root/include/ingen/Parser.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-11-24 18:18:45 -0500
committerDavid Robillard <d@drobilla.net>2024-11-24 18:48:18 -0500
commit1876eb0bfb5152761d523db0c76fd5d81d437e57 (patch)
treed3ae0d972c68eada43b3d8098fd36ab2626bc22d /include/ingen/Parser.hpp
parent7099e0d3b55f5ebea9e4cb74490b396a4bb29d1e (diff)
downloadingen-1876eb0bfb5152761d523db0c76fd5d81d437e57.tar.gz
ingen-1876eb0bfb5152761d523db0c76fd5d81d437e57.tar.bz2
ingen-1876eb0bfb5152761d523db0c76fd5d81d437e57.zip
Remove IWYU pragmas that no longer seem necessary
In a few cases here, we could get away with just a forward declaration but IWYU can't figure it out. Since this isn't a huge deal, just do what the tool says, since it's overall less hassle to just do what it says.
Diffstat (limited to 'include/ingen/Parser.hpp')
-rw-r--r--include/ingen/Parser.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ingen/Parser.hpp b/include/ingen/Parser.hpp
index 5834a349..8db64104 100644
--- a/include/ingen/Parser.hpp
+++ b/include/ingen/Parser.hpp
@@ -18,11 +18,11 @@
#define INGEN_PARSER_HPP
#include <ingen/FilePath.hpp>
-#include <ingen/Properties.hpp> // IWYU pragma: keep
+#include <ingen/Properties.hpp>
#include <ingen/URI.hpp>
#include <ingen/ingen.h>
-#include <raul/Path.hpp> // IWYU pragma: keep
-#include <raul/Symbol.hpp> // IWYU pragma: keep
+#include <raul/Path.hpp>
+#include <raul/Symbol.hpp>
#include <optional>
#include <set>