All Classes Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
gears::concepts::Destructible< T > Struct Template Reference

Checks if a type has a destructor. More...

Inherits is_destructible< Bare< T > >.

Detailed Description

template<typename T>
struct gears::concepts::Destructible< T >

A Unary concept to check if a type has a destructor.

Classes without a destructor can typically not be instantiated with automatic storage duration, so this would be useful to check in those situations where this is a requirement. Types without a destructor are often pretty rare, however.

Template Parameters
TType to check

Definition at line 218 of file basic.hpp.