Commit 70b91ad1 authored by Dominik Charousset's avatar Dominik Charousset

Fix build without actor_profiler enabled

parent ea343bd3
...@@ -69,8 +69,8 @@ public: ...@@ -69,8 +69,8 @@ public:
# define CAF_AFTER_PROCESSING(self, result) \ # define CAF_AFTER_PROCESSING(self, result) \
self->system().profiler_after_processing(*self, result) self->system().profiler_after_processing(*self, result)
#else #else
# define CAF_BEFORE_PROCESSING() CAF_VOID_STMT # define CAF_BEFORE_PROCESSING(self, msg) CAF_VOID_STMT
# define CAF_AFTER_PROCESSING(result) CAF_VOID_STMT # define CAF_AFTER_PROCESSING(self, result) CAF_VOID_STMT
#endif #endif
} // namespace caf } // namespace caf
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment