VCCC
2024.05
VisualCamp Common C++ library
destructible.hpp
Go to the documentation of this file.
1
//
2
// Created by cosge on 2023-12-02.
3
//
4
5
#ifndef VCCC_CONCEPTS_DESTRUCTIBLE_HPP_
6
#define VCCC_CONCEPTS_DESTRUCTIBLE_HPP_
7
8
#include <type_traits>
9
10
namespace
vccc
{
11
14
33
template
<
typename
T>
34
struct
destructible
: std::is_nothrow_destructible<T> {};
35
37
38
}
// namespace vccc
39
40
#endif
// VCCC_CONCEPTS_DESTRUCTIBLE_HPP_
vccc
Definition:
directory.h:12
vccc::destructible
specifies that an object of the type can be destroyed
Definition:
destructible.hpp:34
include
vccc
__concepts
destructible.hpp
Generated by
1.9.1