aboutsummaryrefslogtreecommitdiff
path: root/libcxx/include/__utility/move.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/include/__utility/move.h')
-rw-r--r--libcxx/include/__utility/move.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__utility/move.h b/libcxx/include/__utility/move.h
index 015986f..bc16697 100644
--- a/libcxx/include/__utility/move.h
+++ b/libcxx/include/__utility/move.h
@@ -33,7 +33,7 @@ move(_LIBCPP_LIFETIMEBOUND _Tp&& __t) _NOEXCEPT {
}
template <class _Tp>
-using __move_if_noexcept_result_t =
+using __move_if_noexcept_result_t _LIBCPP_NODEBUG =
__conditional_t<!is_nothrow_move_constructible<_Tp>::value && is_copy_constructible<_Tp>::value, const _Tp&, _Tp&&>;
template <class _Tp>