mirror of
https://github.com/BlackMATov/vmath.hpp.git
synced 2026-01-04 08:51:15 +07:00
12 lines
262 B
C++
12 lines
262 B
C++
#pragma once
|
|
|
|
#include "doctest.h"
|
|
|
|
#define STATIC_REQUIRE(...)\
|
|
static_assert(__VA_ARGS__, #__VA_ARGS__);\
|
|
REQUIRE(__VA_ARGS__);
|
|
|
|
#define STATIC_REQUIRE_FALSE(...)\
|
|
static_assert(!(__VA_ARGS__), "!(" #__VA_ARGS__ ")");\
|
|
REQUIRE(!(__VA_ARGS__));
|