diff options
author | Stephen Hines <srhines@google.com> | 2014-04-23 16:57:46 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2014-04-24 15:53:16 -0700 |
commit | 36b56886974eae4f9c5ebc96befd3e7bfe5de338 (patch) | |
tree | e6cfb69fbbd937f450eeb83bfb83b9da3b01275a /lib/Support/system_error.cpp | |
parent | 69a8640022b04415ae9fac62f8ab090601d8f889 (diff) | |
download | external_llvm-36b56886974eae4f9c5ebc96befd3e7bfe5de338.tar.gz external_llvm-36b56886974eae4f9c5ebc96befd3e7bfe5de338.tar.bz2 external_llvm-36b56886974eae4f9c5ebc96befd3e7bfe5de338.zip |
Update to LLVM 3.5a.
Change-Id: Ifadecab779f128e62e430c2b4f6ddd84953ed617
Diffstat (limited to 'lib/Support/system_error.cpp')
-rw-r--r-- | lib/Support/system_error.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Support/system_error.cpp b/lib/Support/system_error.cpp index b22745afc3..299f54abb1 100644 --- a/lib/Support/system_error.cpp +++ b/lib/Support/system_error.cpp @@ -48,8 +48,8 @@ _do_message::message(int ev) const { class _generic_error_category : public _do_message { public: - virtual const char* name() const LLVM_OVERRIDE; - virtual std::string message(int ev) const LLVM_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 LLVM_OVERRIDE; - virtual std::string message(int ev) const LLVM_OVERRIDE; - virtual error_condition default_error_condition(int ev) const LLVM_OVERRIDE; + const char* name() const override; + std::string message(int ev) const override; + error_condition default_error_condition(int ev) const override; }; const char* |