mirror of
https://github.com/boostorg/nowide.git
synced 2026-02-14 12:52:17 +00:00
8 lines
191 B
C++
8 lines
191 B
C++
#ifndef NOWIDE_STATIC_ASSERT_HPP
|
|
#define NOWIDE_STATIC_ASSERT_HPP
|
|
|
|
#define NOWIDE_STATIC_ASSERT(c) static_assert(c, #c)
|
|
#define NOWIDE_STATIC_ASSERT_MSG(c, msg) static_assert(c, msg)
|
|
|
|
#endif
|