fixup! 🎨 Cleanup include path for catch2

This commit is contained in:
Isabella Muerte
2019-09-17 10:14:58 -07:00
parent 54f7f970bf
commit dcebd5897f
3 changed files with 27 additions and 27 deletions

View File

@@ -1,12 +1,6 @@
#include <catch2/catch.hpp>
#include <tl/optional.hpp>
#define TOKENPASTE(x, y) x##y
#define TOKENPASTE2(x, y) TOKENPASTE(x, y)
#define STATIC_REQUIRE(e) \
constexpr bool TOKENPASTE2(rqure, __LINE__) = e; \
REQUIRE(e);
TEST_CASE("Constexpr", "[constexpr]") {
#if !defined(TL_OPTIONAL_MSVC2015) && defined(TL_OPTIONAL_CXX14)
SECTION("empty construct") {