commit bc65f7453963e79a99e3c56fd573c6e2a1a09ae0
parent ab6562b95f49434767a443f8eab969712fa598cd
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date: Thu, 3 Mar 2022 21:02:48 +0100
fix nodiscard
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/clap/private/macros.h b/include/clap/private/macros.h
@@ -23,7 +23,7 @@
#if defined(__cplusplus) && __cplusplus >= 201703L
# define CLAP_NODISCARD [[nodiscard]]
-#elsif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201300L
+#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201300L
# define CLAP_NODISCARD [[nodiscard]]
#else
# define CLAP_NODISCARD