From f3e88afd3928081aa321f0ccca9a91b5f587b113 Mon Sep 17 00:00:00 2001 From: Mura <35004798+mura-orz@users.noreply.github.com> Date: Fri, 26 Apr 2019 09:00:38 +0900 Subject: [PATCH] Update peglib.h This '#else' directive does not have such extra condition in C++. --- peglib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peglib.h b/peglib.h index 14b2628..27f4574 100644 --- a/peglib.h +++ b/peglib.h @@ -30,7 +30,7 @@ #define PEGLIB_NO_CONSTEXPR_SUPPORT #elif (_MSC_VER >= 1800) // good to go -#else (_MSC_VER < 1800) +#else //(_MSC_VER < 1800) #error "Requires C+11 support" #endif #endif