diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 05343fc..7652c7a 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2818,7 +2818,7 @@ Flag any use of `&&` as a return type, except in `std::move` and `std::forward`. class derived : public base { public: - override int multiply(int value, int factor = 10); + int multiply(int value, int factor = 10) override; }; derived d;