cgv
Loading...
Searching...
No Matches
has_virtual_destructor.h
1#pragma once
2
3#include <type_traits>
4
5namespace cgv {
6 namespace type {
8 namespace cond {
10template <typename T>
12{
13 static const bool value = std::has_virtual_destructor<T>::value;
14};
15 }
16 }
17}
the cgv namespace
Definition print.h:11
template condition returning, whether the passed type has a virtual destructor