Update peglib.h

This '#else' directive does not have such extra condition in C++.
This commit is contained in:
Mura 2019-04-26 09:00:38 +09:00 committed by GitHub
parent 55add1dacb
commit f3e88afd39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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