From 824e12748f225c1b11f065d333ce54967e17233c Mon Sep 17 00:00:00 2001 From: Ferdinand Bachmann Date: Wed, 22 Apr 2020 14:43:09 +0200 Subject: [PATCH] fix typo in standard support detection --- detect/cxxstd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detect/cxxstd.cpp b/detect/cxxstd.cpp index 56e1c7b..71f417b 100644 --- a/detect/cxxstd.cpp +++ b/detect/cxxstd.cpp @@ -1,4 +1,4 @@ -#if __cpluplus < CXX_STANDARD +#if __cplusplus < CXX_STANDARD #error "c++ standard not new enough" #endif