1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-11-05 17:39:01 -06:00

Initial commit

This commit is contained in:
Crimson-Hawk
2024-03-05 16:42:40 +08:00
commit f1e4595ebf
39576 changed files with 7006612 additions and 0 deletions

View File

@@ -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>

View File

@@ -0,0 +1,68 @@
[
{
"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"
],
"cxxstd": "03"
},
{
"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"
],
"cxxstd": "03"
},
{
"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"
],
"cxxstd": "03"
},
{
"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"
],
"cxxstd": "03"
}
]