[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
This commit is contained in:
Justin Lebar 2016-10-21 20:28:00 +00:00
parent a0d7657789
commit 600523a457

View File

@ -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();
}