From 612b3c44182f9954ea2057fb8ba3f7b2e761284f Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Thu, 6 Aug 2026 14:51:51 +0200 Subject: [PATCH] Declare C++11 as a requirement in the library metadata The metadata advertised C++03, but the archives have needed C++11 for some time: including boost/archive/text_oarchive.hpp pulls in boost/scoped_ptr.hpp, and Boost.SmartPtr uses `noexcept`. Nothing tested C++03 either, as every CI job starts at 11. --- meta/libraries.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/libraries.json b/meta/libraries.json index b609407ecd..cc90ef96a0 100644 --- a/meta/libraries.json +++ b/meta/libraries.json @@ -11,5 +11,5 @@ "maintainers": [ "Robert Ramey " ], - "cxxstd": "03" + "cxxstd": "11" }