build: remove explicit C++ standard check
Very few repositories have this extra check that the C++ standard
matches a particular version and instead choose to rely on compiler
header checks to verify particular features are present. This
repository itself compiles with C++17 for now, so remove the explicit
check for C++20.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I366dc22f1daff483872db168ed5311233c839bae
diff --git a/meson.build b/meson.build
index 1d14bf1..ee9a1a4 100644
--- a/meson.build
+++ b/meson.build
@@ -19,14 +19,6 @@
#####################################################################
-# Validate the c++ Standard
-
-if get_option('cpp_std') != 'c++20'
- error('This project requires cpp std to be in c++20 mode')
-endif
-
-#########################################################################
-
# Get Compiler and default build type
compiler = meson.get_compiler('cpp')