Skip to content
Snippets Groups Projects
Commit 79b409a5 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'fix_header_log_off' into 'master'

Fix headers when EMPER_LOG_OFF is defined

See merge request !59
parents da96e449 059cce0a
No related branches found
No related tags found
1 merge request!59Fix headers when EMPER_LOG_OFF is defined
Pipeline #55309 passed
......@@ -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;
......
......@@ -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
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment