From 059cce0afc9f6bd9254717bc057d1518525c645e Mon Sep 17 00:00:00 2001 From: Florian Fischer <florian.fl.fischer@fau.de> Date: Fri, 18 Dec 2020 15:18:56 +0100 Subject: [PATCH] fix includes when EMPER_LOG_OFF is defined --- emper/ContextManager.cpp | 1 + emper/Fiber.cpp | 4 +++- tests/SimpleActorTest.cpp | 6 +++++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/emper/ContextManager.cpp b/emper/ContextManager.cpp index 6eec4d55..6cf7d76c 100644 --- a/emper/ContextManager.cpp +++ b/emper/ContextManager.cpp @@ -9,6 +9,7 @@ #include "Debug.hpp" // for LOGD #include "Dispatcher.hpp" // for Dispatcher #include "Runtime.hpp" // for Runtime +#include "emper-config.h" // // IWYU pragma: keep class Fiber; diff --git a/emper/Fiber.cpp b/emper/Fiber.cpp index 0c8eb418..3753d920 100644 --- a/emper/Fiber.cpp +++ b/emper/Fiber.cpp @@ -4,7 +4,9 @@ #include <iostream> // for operator<<, basic_ostream, ostream, basic_ostrea... -#ifndef NDEBUG +#include "emper-config.h" // IWYU pragma: keep + +#ifndef EMPER_LOG_OFF #include <typeinfo> // for type_info #endif diff --git a/tests/SimpleActorTest.cpp b/tests/SimpleActorTest.cpp index 7f428af4..7f81b724 100644 --- a/tests/SimpleActorTest.cpp +++ b/tests/SimpleActorTest.cpp @@ -9,12 +9,16 @@ #include "Actor.hpp" // for Actor #include "CountingPrivateSemaphore.hpp" // for CPS #include "Debug.hpp" // for WDBG -#include "Dispatcher.hpp" // for Dispatcher #include "Fiber.hpp" // for Fiber #include "Runtime.hpp" // for Runtime #include "emper-common.h" // for UNUSED_ARG +#include "emper-config.h" // // IWYU pragma: keep #include "emper.hpp" // for spawn +#ifndef EMPER_LOG_OFF +#include "Dispatcher.hpp" // for Dispatcher +#endif + class SumActor : public Actor<uint64_t> { private: uint64_t sum = 0; -- GitLab