From 3b6a47601f26cc343307a238354ff32429d1cd83 Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Tue, 15 Dec 2020 17:01:09 -0500 Subject: [PATCH 1/2] 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/libraries.json b/meta/libraries.json index 37c84ae..906f8b9 100644 --- a/meta/libraries.json +++ b/meta/libraries.json @@ -8,6 +8,7 @@ "category": [ "Concurrent" ], + "cxxstd": "11", "maintainers": [ "Oliver Kowalke " ] From cff3299d3b587a3a3cf8a08a5d2657134802be07 Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Tue, 15 Dec 2020 21:55:31 -0500 Subject: [PATCH 2/2] Move cxxstd json field to end. --- meta/libraries.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/libraries.json b/meta/libraries.json index 906f8b9..253c7f0 100644 --- a/meta/libraries.json +++ b/meta/libraries.json @@ -8,8 +8,8 @@ "category": [ "Concurrent" ], - "cxxstd": "11", "maintainers": [ "Oliver Kowalke " - ] + ], + "cxxstd": "11" }