mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
- unkeyworded for testing - removed upstreamed patches - link to regex upstream test issue - exclude redis test suite: new failure - unexclude wave suite: only exclude a failing test - add patches for spirit tests & serialization QA issue Closes: https://bugs.gentoo.org/975233 Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com> Part-of: https://codeberg.org/gentoo/gentoo/pulls/714 Merges: https://codeberg.org/gentoo/gentoo/pulls/714 Signed-off-by: Sam James <sam@gentoo.org>
17 lines
697 B
Diff
17 lines
697 B
Diff
|
|
x3/attribute_type_check.cpp:34:42: error: 'decay_t' is not a member of 'boost'; did you mean 'std::decay_t'?
|
|
34 | static inline checked_attr_parser<boost::decay_t<Value>, Expected>
|
|
| ^~~~~~~
|
|
|
|
--- a/libs/spirit/test/x3/attribute_type_check.cpp
|
|
+++ b/libs/spirit/test/x3/attribute_type_check.cpp
|
|
@@ -31,7 +31,7 @@ struct checked_attr_parser : x3::attr_pa
|
|
};
|
|
|
|
template <typename Expected, typename Value>
|
|
-static inline checked_attr_parser<boost::decay_t<Value>, Expected>
|
|
+static inline checked_attr_parser<std::decay_t<Value>, Expected>
|
|
checked_attr(Value&& value) { return { std::forward<Value>(value) }; }
|
|
|
|
// instantiate our type checker
|