My Project
is_nothrow_default_constructible.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_IS_NOTHROW_DEFAULT_CONSTRUCTIBLE_HPP
29 #define BSL_IS_NOTHROW_DEFAULT_CONSTRUCTIBLE_HPP
30 
31 #include "bool_constant.hpp"
32 
33 namespace bsl
34 {
51  template<typename T>
53  public bool_constant<__is_nothrow_constructible(T)> // PRQA S 0605
54  {};
55 }
56 
57 #endif
If the provided type is nothrow default constructible, provides the member constant value equal to tr...
Definition: is_nothrow_default_constructible.hpp:52
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition: integral_constant.hpp:45