[C++11] Remove 'virtual' keyword from methods marked with 'override' keyword.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203442 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper
2014-03-10 03:53:12 +00:00
parent 292fcee823
commit 49e139b7f7
14 changed files with 62 additions and 67 deletions

View File

@ -48,8 +48,8 @@ _do_message::message(int ev) const {
class _generic_error_category : public _do_message {
public:
virtual const char* name() const override;
virtual std::string message(int ev) const override;
const char* name() const override;
std::string message(int ev) const override;
};
const char*
@ -74,9 +74,9 @@ generic_category() {
class _system_error_category : public _do_message {
public:
virtual const char* name() const override;
virtual std::string message(int ev) const override;
virtual error_condition default_error_condition(int ev) const override;
const char* name() const override;
std::string message(int ev) const override;
error_condition default_error_condition(int ev) const override;
};
const char*