From: Justin Lebar Date: Fri, 21 Oct 2016 20:28:00 +0000 (+0000) Subject: [ADT] Get rid of use of LLVM_NOEXCEPT in CachedHashString.h. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=600523a45763047d3e20a249bb36b4fe88f84fc9;p=llvm [ADT] Get rid of use of LLVM_NOEXCEPT in CachedHashString.h. LLVM_NOEXCEPT is no longer necessary (yay). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@284876 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/CachedHashString.h b/include/llvm/ADT/CachedHashString.h index c86726e95d3..d0ca27e4299 100644 --- a/include/llvm/ADT/CachedHashString.h +++ b/include/llvm/ADT/CachedHashString.h @@ -119,9 +119,8 @@ public: return *this; } - CachedHashString(CachedHashString &&Other) LLVM_NOEXCEPT : P(Other.P), - Size(Other.Size), - Hash(Other.Hash) { + CachedHashString(CachedHashString &&Other) noexcept + : P(Other.P), Size(Other.Size), Hash(Other.Hash) { Other.P = getEmptyKeyPtr(); }