1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[ADT] Get rid of use of LLVM_NOEXCEPT in CachedHashString.h.

LLVM_NOEXCEPT is no longer necessary (yay).

llvm-svn: 284876
This commit is contained in:
Justin Lebar 2016-10-21 20:28:00 +00:00
parent bbc3abcc55
commit 61678ad735

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