Fix return type
This commit is contained in:
parent
0306044ece
commit
a783cc1138
@ -208,9 +208,8 @@ struct or_
|
||||
struct name \
|
||||
{ \
|
||||
template<class T, class U> \
|
||||
constexpr decltype(auto) operator()(T&& x, U&& y) const \
|
||||
noexcept(noexcept(FIT_FORWARD(T)(x) op FIT_FORWARD(U)(y))) \
|
||||
{ return FIT_FORWARD(T)(x) op FIT_FORWARD(U)(y); } \
|
||||
constexpr auto operator()(T&& x, U&& y) const FIT_RETURNS \
|
||||
(FIT_FORWARD(T)(x) op FIT_FORWARD(U)(y)); \
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user