1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-23 22:42:10 -05: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,23 @@
<?xml version="1.0" encoding="utf-8"?>
<explicit-failures-markup>
<!-- fusion -->
<library name="fusion">
<mark-expected-failures>
<test name="define_struct_inline_move"/>
<test name="define_tpl_struct_inline_move"/>
<toolset name="msvc-10.0"/>
<toolset name="msvc-11.0"/>
<toolset name="msvc-12.0"/>
<toolset name="qcc-4.4.2_x86"/>
<toolset name="gcc-4.4~c++0x*"/>
<toolset name="gcc-4.4~gnu0x*"/>
<note author="Kohei Takahashi">
The compiler doesn't generate defaulted move ctor/assgin thus
perform copy construction/assginment. Even though such case,
the `inline` versions don't force generating move ctor/assign
to preserve trivial requirements. Since that is not documented
behaviour, it might be changed in future release.
</note>
</mark-expected-failures>
</library>
</explicit-failures-markup>

View File

@@ -0,0 +1,21 @@
{
"key": "fusion",
"name": "Fusion",
"authors": [
"Joel de Guzman",
"Dan Marsden",
"Tobias Schwinger"
],
"description": "Library for working with tuples, including various containers, algorithms, etc.",
"documentation": "doc/html/",
"category": [
"Data",
"Metaprogramming"
],
"maintainers": [
"Joel de Guzman <joel -at- boost-consulting.com>",
"Dan Marsden <danmarsden -at- yahoo.co.uk>",
"Tobias Schwinger <tschwinger -at- isonews2.com>"
],
"cxxstd": "03"
}