-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathenv.hpp
46 lines (36 loc) · 2 KB
/
env.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#pragma once
#include <stdx/compiler.hpp>
#include <stdx/env.hpp>
using cib_log_env_t = stdx::env<>;
// NOLINTBEGIN(cppcoreguidelines-macro-usage)
#ifdef __clang__
#define CIB_PRAGMA_SEMI
#else
#define CIB_PRAGMA_SEMI ;
#endif
#define CIB_LOG_ENV_DECL(...) \
[[maybe_unused]] typedef decltype([] { \
return stdx::extend_env_t<cib_log_env_t, __VA_ARGS__>{}; \
}()) cib_log_env_t
#define CIB_APPEND_LOG_ENV_DECL(E) \
[[maybe_unused]] typedef decltype([] { \
return stdx::append_env_t<cib_log_env_t, E>{}; \
}()) cib_log_env_t
#define CIB_LOG_ENV(...) \
STDX_PRAGMA(diagnostic push) \
STDX_PRAGMA(diagnostic ignored "-Wshadow") \
CIB_LOG_ENV_DECL(__VA_ARGS__) \
CIB_PRAGMA_SEMI \
STDX_PRAGMA(diagnostic pop)
#define CIB_APPEND_LOG_ENV(E) \
STDX_PRAGMA(diagnostic push) \
STDX_PRAGMA(diagnostic ignored "-Wshadow") \
CIB_APPEND_LOG_ENV_DECL(E) \
CIB_PRAGMA_SEMI \
STDX_PRAGMA(diagnostic pop)
#define CIB_WITH_LOG_ENV(...) \
STDX_PRAGMA(diagnostic push) \
STDX_PRAGMA(diagnostic ignored "-Wshadow") \
if constexpr (CIB_LOG_ENV_DECL(__VA_ARGS__); true) \
STDX_PRAGMA(diagnostic pop)
// NOLINTEND(cppcoreguidelines-macro-usage)