From 24ccee21048a364543ebe5aa8cf9f38115cb3813 Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Wed, 16 Dec 2020 01:45:24 -0500 Subject: [PATCH] Add "cxxstd" json field. The "cxxstd" json field is being added to each Boost library's meta json information for libraries whose minumum C++ standard compilation level is C++11 on up. The value of this field matches one of the values for 'cxxstd' in Boost.Build. The purpose of doing this is to provide information for the Boost website documentation for each library which will specify the minimum C++ standard compilation that an end-user must employ in order to use the particular library. This will aid end-users who want to know if they can successfully use a Boost library based on their C++ compiler's compilation level, without having to search the library's documentation to find this out. --- meta/libraries.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/libraries.json b/meta/libraries.json index 11e19ad..4da5bf8 100644 --- a/meta/libraries.json +++ b/meta/libraries.json @@ -10,5 +10,6 @@ "description": "A never-valueless, strong guarantee implementation of std::variant.", "category": [ "Containers", "Data" - ] + ], + "cxxstd": "11" }