2
0
mirror of https://github.com/boostorg/nowide.git synced 2026-02-14 12:52:17 +00:00
Files
nowide/standalone/static_assert.hpp
Alexander Grund 7054b4b2a6 Allow building as standalone (No Boost references at all)
Update conversion script
Fix references in Code
Add tests
2020-03-15 18:44:21 +01:00

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