mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-12 22:17:47 +00:00
[ADT] Switch another place to llvm::is_trivially_move_constructible
.
I missed this the first time around, sorry. llvm-svn: 336166
This commit is contained in:
parent
bb148a0677
commit
3b0beec122
@ -240,7 +240,7 @@ public:
|
||||
// FIXME: we should use constexpr if here and below to avoid instantiating
|
||||
// the non-trivial static objects when unnecessary. While the linker should
|
||||
// remove them, it is still wasteful.
|
||||
if (std::is_trivially_move_constructible<CallableT>::value &&
|
||||
if (llvm::is_trivially_move_constructible<CallableT>::value &&
|
||||
std::is_trivially_destructible<CallableT>::value) {
|
||||
CallbackAndInlineFlag = {&CallImpl<CallableT>, IsInlineStorage};
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user