Fix misplaced override specifier

Fixed #248.
This commit is contained in:
Gabriel Dos Reis 2015-10-02 03:12:47 -07:00
parent c4088e053b
commit 00d542f777

View File

@ -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;