From d9b1cc0db34823bc57b09cc0cd7575adc6d48eca Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Fri, 5 Aug 2022 12:11:06 +0200 Subject: [PATCH] iwyu: begin/end exports directive for entt.hpp/fwd.hpp (see #777) --- src/entt/entt.hpp | 2 ++ src/entt/fwd.hpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/entt/entt.hpp b/src/entt/entt.hpp index 551633d2c..d84dd5ee7 100644 --- a/src/entt/entt.hpp +++ b/src/entt/entt.hpp @@ -1,3 +1,4 @@ +// IWYU pragma: begin_exports #include "config/config.h" #include "config/macro.h" #include "config/version.h" @@ -60,3 +61,4 @@ #include "signal/dispatcher.hpp" #include "signal/emitter.hpp" #include "signal/sigh.hpp" +// IWYU pragma: end_exports diff --git a/src/entt/fwd.hpp b/src/entt/fwd.hpp index b38edafa2..4b6e60c51 100644 --- a/src/entt/fwd.hpp +++ b/src/entt/fwd.hpp @@ -1,3 +1,4 @@ +// IWYU pragma: begin_exports #include "container/fwd.hpp" #include "core/fwd.hpp" #include "entity/fwd.hpp" @@ -7,3 +8,4 @@ #include "process/fwd.hpp" #include "resource/fwd.hpp" #include "signal/fwd.hpp" +// IWYU pragma: end_exports