My Project
include
bsl
is_nothrow_copyable.hpp
Go to the documentation of this file.
1
28
#ifndef BSL_IS_NOTHROW_COPYABLE_HPP
29
#define BSL_IS_NOTHROW_COPYABLE_HPP
30
31
#include "
bool_constant.hpp
"
32
#include "
is_nothrow_copy_assignable.hpp
"
33
#include "
is_nothrow_copy_constructible.hpp
"
34
35
namespace
bsl
36
{
48
template
<
typename
T>
49
class
is_nothrow_copyable
final :
50
public
bool_constant
<
51
is_nothrow_copy_assignable<T>::value && is_nothrow_copy_constructible<T>::value>
52
{};
53
}
54
55
#endif
bsl::integral_constant
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition:
integral_constant.hpp:45
is_nothrow_copy_constructible.hpp
is_nothrow_copy_assignable.hpp
bsl::is_nothrow_copyable
If the provided type is nothrow copy assignable and constructible, provides the member constant value...
Definition:
is_nothrow_copyable.hpp:49
bool_constant.hpp
Generated by
1.8.15