From a859225de5a576e3dbf7580c6edabcb6da252ce9 Mon Sep 17 00:00:00 2001 From: Roy Bellingan Date: Wed, 2 Sep 2026 11:45:31 +0100 Subject: [PATCH] c++ complain that ciso646 is non standard, and version should be used --- contrib/absl/absl/base/options.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/absl/absl/base/options.h b/contrib/absl/absl/base/options.h index 230bf1ee..9e5b26ff 100644 --- a/contrib/absl/absl/base/options.h +++ b/contrib/absl/absl/base/options.h @@ -70,8 +70,12 @@ // Include a standard library header to allow configuration based on the // standard library in use. #ifdef __cplusplus +#if __cplusplus >= 202002L +#include +#else #include #endif +#endif // ----------------------------------------------------------------------------- // Type Compatibility Options