Cleanse LOG_CONSTINIT macro

Should be unnecessary.
This commit is contained in:
Nekotekina 2022-06-30 20:57:43 +03:00 committed by Ivan
parent 0b8d5f7b98
commit 5c6f5a1610
2 changed files with 2 additions and 7 deletions

View File

@ -182,13 +182,7 @@ namespace logs
void set_init(std::initializer_list<stored_message>);
}
#if __cpp_constinit >= 201907
#define LOG_CONSTINIT constinit
#else
#define LOG_CONSTINIT
#endif
#define LOG_CHANNEL(ch, ...) LOG_CONSTINIT inline ::logs::channel ch(::logs::make_channel_name(#ch, ##__VA_ARGS__)); \
#define LOG_CHANNEL(ch, ...) inline constinit ::logs::channel ch(::logs::make_channel_name(#ch, ##__VA_ARGS__)); \
namespace logs { inline ::logs::registerer reg_##ch{ch}; }
LOG_CHANNEL(rsx_log, "RSX");

View File

@ -68,6 +68,7 @@ namespace std
#if defined(__INTELLISENSE__)
#define consteval constexpr
#define constinit
#endif
using schar = signed char;