fix ill-formed example C.65 (missing noexcept on declaration) (#2101)

pull/2104/head
Eisenwave 3 years ago committed by GitHub
parent db079ab301
commit a80c2a6f36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6387,7 +6387,7 @@ If `x = x` changes the value of `x`, people will be surprised and bad errors can
string s;
int i;
public:
Foo& operator=(Foo&& a);
Foo& operator=(Foo&& a) noexcept;
// ...
};

Loading…
Cancel
Save