My Project
has_virtual_destructor.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_HAS_VIRTUAL_DESTRUCTOR_HPP
29 #define BSL_HAS_VIRTUAL_DESTRUCTOR_HPP
30 
31 #include "bool_constant.hpp"
32 
33 namespace bsl
34 {
46  template<typename T>
47  class has_virtual_destructor final : // --
48  public bool_constant<__has_virtual_destructor(T)>
49  {};
50 }
51 
52 #endif
If the provided type is a class type, provides the member constant value equal to true....
Definition: has_virtual_destructor.hpp:47
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition: integral_constant.hpp:45