diff options
| author | Denis Protivensky <dprotivensky@accesssoftek.com> | 2015-06-01 09:08:11 +0000 |
|---|---|---|
| committer | Denis Protivensky <dprotivensky@accesssoftek.com> | 2015-06-01 09:08:11 +0000 |
| commit | 1c43df7481e6325c725243842ef1d0f56e65581c (patch) | |
| tree | 8495a2f3a3116f4a6c216d67f862f5afe938f5e8 | |
| parent | c44223ed962ebf56ec8a8146e1592465fff7bfee (diff) | |
| download | bcm5719-llvm-1c43df7481e6325c725243842ef1d0f56e65581c.tar.gz bcm5719-llvm-1c43df7481e6325c725243842ef1d0f56e65581c.zip | |
COFF: Better noexcept specification with LLVM_NOEXCEPT
This is a follow-on to r238732
llvm-svn: 238733
| -rw-r--r-- | lld/COFF/Error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/COFF/Error.h b/lld/COFF/Error.h index d2894d2fba2..45c31b80134 100644 --- a/lld/COFF/Error.h +++ b/lld/COFF/Error.h @@ -26,7 +26,7 @@ enum class LLDError { class LLDErrorCategory : public std::error_category { public: - const char *name() const noexcept override { return "lld"; } + const char *name() const LLVM_NOEXCEPT override { return "lld"; } std::string message(int EV) const override { switch (static_cast<LLDError>(EV)) { |

