diff options
Diffstat (limited to 'src/boost/libs/fusion/meta')
-rw-r--r-- | src/boost/libs/fusion/meta/explicit-failures-markup.xml | 23 | ||||
-rw-r--r-- | src/boost/libs/fusion/meta/libraries.json | 20 |
2 files changed, 43 insertions, 0 deletions
diff --git a/src/boost/libs/fusion/meta/explicit-failures-markup.xml b/src/boost/libs/fusion/meta/explicit-failures-markup.xml new file mode 100644 index 00000000..c2e6ea97 --- /dev/null +++ b/src/boost/libs/fusion/meta/explicit-failures-markup.xml @@ -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> diff --git a/src/boost/libs/fusion/meta/libraries.json b/src/boost/libs/fusion/meta/libraries.json new file mode 100644 index 00000000..d60f74e5 --- /dev/null +++ b/src/boost/libs/fusion/meta/libraries.json @@ -0,0 +1,20 @@ +{ + "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>" + ] +} |