Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Relocation of unistd.h and execinfo.h includes to void namespace pollution #14

Merged
merged 1 commit into from
Jun 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions include/reactor-cpp/assert.hh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ constexpr bool runtime_assertion = true;
#include <stdexcept>
#include <string>

#ifdef __linux__
#include <execinfo.h>
#include <unistd.h>
#endif

namespace reactor {
using EnvPhase = Environment::Phase;

Expand All @@ -41,8 +46,6 @@ public:
};

#ifdef __linux__
#include <execinfo.h>
#include <unistd.h>

inline void print_debug_backtrace() {
void* array[10]; // NOLINT
Expand Down