diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/functional/meta | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/functional/meta')
-rw-r--r-- | src/boost/libs/functional/meta/explicit-failures-markup.xml | 33 | ||||
-rw-r--r-- | src/boost/libs/functional/meta/libraries.json | 64 |
2 files changed, 97 insertions, 0 deletions
diff --git a/src/boost/libs/functional/meta/explicit-failures-markup.xml b/src/boost/libs/functional/meta/explicit-failures-markup.xml new file mode 100644 index 00000000..ea9b3239 --- /dev/null +++ b/src/boost/libs/functional/meta/explicit-failures-markup.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright 2017-2018 Daniel James + Distributed under the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http://www.boost.org/LICENSE_1_0.txt) +--> +<explicit-failures-markup> + <!-- functional/factory --> + <library name="functional/factory"> + <mark-expected-failures> + <test name="factory_with_allocator"/> + <toolset name="borland-*"/> + <note author="Tobias Schwinger"> + Probably broken const conversion with that compiler. + </note> + </mark-expected-failures> + </library> + + <!-- functional/forward --> + <library name="functional/foward"> + <mark-unusable> + <toolset name="msvc-7.0*"/> + <toolset name="msvc-7.1*"/> + <toolset name="sun-5.*"/> + <toolset name="vacpp*"/> + <toolset name="borland-*"/> + <note author="Tobias Schwinger"> + This compiler is currently not supported. + </note> + </mark-unusable> + </library> +</explicit-failures-markup> diff --git a/src/boost/libs/functional/meta/libraries.json b/src/boost/libs/functional/meta/libraries.json new file mode 100644 index 00000000..c9d7a3b9 --- /dev/null +++ b/src/boost/libs/functional/meta/libraries.json @@ -0,0 +1,64 @@ +[ + { + "key": "functional", + "boost-version": "1.16.0", + "name": "Functional", + "authors": [ + "Mark Rodgers" + ], + "description": "The Boost.Function library contains a family of class templates that are function object wrappers.", + "category": [ + "Function-objects" + ] + }, + { + "key": "functional/factory", + "boost-version": "1.43.0", + "name": "Functional/Factory", + "authors": [ + "Glen Fernandes", + "Tobias Schwinger" + ], + "maintainers": [ + "Glen Fernandes <glenjofe -at- gmail.com>", + "Tobias Schwinger <tschwinger -at- isonews2.com>" + ], + "description": "Function object templates for dynamic and static object creation", + "documentation": "factory/", + "category": [ + "Function-objects" + ] + }, + { + "key": "functional/forward", + "boost-version": "1.43.0", + "name": "Functional/Forward", + "authors": [ + "Tobias Schwinger" + ], + "maintainers": [ + "Tobias Schwinger <tschwinger -at- isonews2.com>" + ], + "description": "Adapters to allow generic function objects to accept arbitrary arguments", + "documentation": "forward/", + "category": [ + "Function-objects" + ] + }, + { + "key": "functional/overloaded_function", + "boost-version": "1.50.0", + "name": "Functional/Overloaded Function", + "authors": [ + "Lorenzo Caminiti" + ], + "maintainers": [ + "Lorenzo Caminiti <lorcaminiti -at- gmail.com>" + ], + "description": "Overload different functions into a single function object.", + "documentation": "overloaded_function/", + "category": [ + "Function-objects" + ] + } +] |