From a7570d7608abab82600e44a645dc910d742eea6b Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Tue, 19 Jan 2021 22:19:49 -0500 Subject: [PATCH] [skip ci] Add "cxxstd" json field. The "cxxstd" json field is being added to each Boost library's meta json information for libraries in order to specify the minumum C++ standard compilation level. 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 | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/meta/libraries.json b/meta/libraries.json index ca7c4b6..b75bd98 100644 --- a/meta/libraries.json +++ b/meta/libraries.json @@ -13,7 +13,8 @@ "Memory", "Miscellaneous", "Patterns" - ] + ], + "cxxstd": "03" }, { "key": "utility/call_traits", @@ -25,7 +26,8 @@ "documentation": "call_traits.htm", "category": [ "Generic" - ] + ], + "cxxstd": "03" }, { "key": "utility/compressed_pair", @@ -38,7 +40,8 @@ "category": [ "Data", "Patterns" - ] + ], + "cxxstd": "03" }, { "key": "utility/identity_type", @@ -53,7 +56,8 @@ ], "maintainers": [ "Lorenzo Caminiti " - ] + ], + "cxxstd": "03" }, { "key": "utility/in_place_factories", @@ -65,7 +69,8 @@ "documentation": "in_place_factories.html", "category": [ "Generic" - ] + ], + "cxxstd": "03" }, { "key": "utility/operators", @@ -83,7 +88,8 @@ ], "maintainers": [ "Daniel Frey " - ] + ], + "cxxstd": "03" }, { "key": "utility/result_of", @@ -96,7 +102,8 @@ "authors": "", "maintainers": [ "Daniel Walker " - ] + ], + "cxxstd": "03" }, { "key": "utility/string_ref", @@ -109,7 +116,8 @@ "authors": "Marshall Clow", "maintainers": [ "Marshall Clow " - ] + ], + "cxxstd": "03" }, { "key": "utility/value_initialized", @@ -121,6 +129,7 @@ "documentation": "value_init.htm", "category": [ "Miscellaneous" - ] + ], + "cxxstd": "03" } ]