We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c066e47 commit bf24975Copy full SHA for bf24975
source/containers/array.cpp
@@ -35,7 +35,9 @@ struct array_value_type<T> {
35
};
36
37
struct monostate {
38
- friend auto operator<=>(monostate, monostate) = default;
+ // Cannot be a hidden friend to work around
39
+ // https://github.com/llvm/llvm-project/issues/123815
40
+ auto operator<=>(monostate const &) const & = default;
41
42
43
template<std::size_t size>
0 commit comments