diff options
author | David Robillard <d@drobilla.net> | 2024-11-24 18:18:45 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-24 18:48:18 -0500 |
commit | 1876eb0bfb5152761d523db0c76fd5d81d437e57 (patch) | |
tree | d3ae0d972c68eada43b3d8098fd36ab2626bc22d /src/gui/GraphPortModule.cpp | |
parent | 7099e0d3b55f5ebea9e4cb74490b396a4bb29d1e (diff) | |
download | ingen-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 'src/gui/GraphPortModule.cpp')
-rw-r--r-- | src/gui/GraphPortModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/GraphPortModule.cpp b/src/gui/GraphPortModule.cpp index 2ccf8289..cd471d97 100644 --- a/src/gui/GraphPortModule.cpp +++ b/src/gui/GraphPortModule.cpp @@ -29,7 +29,7 @@ #include <ingen/URI.hpp> #include <ingen/URIs.hpp> #include <ingen/World.hpp> -#include <ingen/client/GraphModel.hpp> // IWYU pragma: keep +#include <ingen/client/GraphModel.hpp> #include <ingen/client/PortModel.hpp> #include <raul/Symbol.hpp> |