forked from TartanLlama/optional
Support GCC 4.9
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
REQUIRE(e);
|
||||
|
||||
TEST_CASE("Constexpr", "[constexpr]") {
|
||||
#if !(_MSC_VER == 1900)
|
||||
#if !defined(TL_OPTIONAL_MSVC2015) && !defined(TL_OPTIONAL_GCC49)
|
||||
SECTION("empty construct") {
|
||||
constexpr tl::optional<int> o2{};
|
||||
constexpr tl::optional<int> o3 = {};
|
||||
|
||||
Reference in New Issue
Block a user