mirror of https://github.com/procxx/kepka.git
Adapt code to compile by MSVC 2015, remove conditional compilation (#105)
Fixes workaround introduced in #101. Author: @anatoly-spb. Related to: #17.
This commit is contained in:
parent
b1c7c6fc61
commit
e1a947e850
|
@ -30,6 +30,8 @@ void log(const char *message, const char *file, int line);
|
|||
|
||||
// Release build assertions.
|
||||
inline constexpr void noop() {
|
||||
// MSVC2015 requires return to suppress warning: a constexpr function must contain exactly one return statement
|
||||
return void();
|
||||
}
|
||||
|
||||
[[noreturn]] inline void fail(const char *message, const char *file, int line) {
|
||||
|
@ -43,14 +45,9 @@ inline constexpr void noop() {
|
|||
std::abort();
|
||||
}
|
||||
|
||||
// Since MSVC 2015 cannot understand "constexpr void" (void is literal since C++14)
|
||||
// we have to use conditional compilation
|
||||
inline
|
||||
#if !defined(_MSC_VER) || (_MSC_VER > 1900)
|
||||
constexpr
|
||||
#endif
|
||||
void validate(bool condition, const char *message, const char *file, int line) {
|
||||
(GSL_UNLIKELY(!(condition))) ? fail(message, file, line) : noop();
|
||||
inline constexpr void validate(bool condition, const char *message, const char *file, int line) {
|
||||
// MSVC2015 requires return to suppress error C3249: illegal statement or sub-expression for 'constexpr' function
|
||||
return (GSL_UNLIKELY(!(condition))) ? fail(message, file, line) : noop();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue