T.21 Fix wrong return type (#1942)

Co-authored-by: Nikolay Panov <pn.interface@gmail.com>
This commit is contained in:
Nikolay Panov
2022-08-02 20:30:21 +04:00
committed by GitHub
parent 6f27719b2b
commit dca24a0379

View File

@@ -17434,7 +17434,7 @@ The rule supports the view that a concept should reflect a (mathematically) cohe
bool operator<(const Convenient&, const Convenient&); bool operator<(const Convenient&, const Convenient&);
// ... and the other comparison operators ... // ... and the other comparison operators ...
Minimal operator+(const Convenient&, const Convenient&); Convenient operator+(const Convenient&, const Convenient&);
// ... and the other arithmetic operators ... // ... and the other arithmetic operators ...
void f(const Convenient& x, const Convenient& y) void f(const Convenient& x, const Convenient& y)