From 49e139b7f7adecc29109340c8592197453245139 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Mon, 10 Mar 2014 03:53:12 +0000 Subject: [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 --- include/llvm/Support/system_error.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/llvm/Support/system_error.h') diff --git a/include/llvm/Support/system_error.h b/include/llvm/Support/system_error.h index ecd3e3c97d..046132f859 100644 --- a/include/llvm/Support/system_error.h +++ b/include/llvm/Support/system_error.h @@ -652,7 +652,7 @@ public: class _do_message : public error_category { public: - virtual std::string message(int ev) const override; + std::string message(int ev) const override; }; const error_category& generic_category(); -- cgit v1.2.3