mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-08 13:36:26 +00:00
[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:
parent
a0d7657789
commit
600523a457
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user