OpenVDB 12.0.0
 
Loading...
Searching...
No Matches
match_const< T, ReferenceT > Struct Template Reference

Trait used to transfer the const-ness of a reference type to another type. More...

#include <nanovdb/util/Util.h>

Public Types

using type = typename remove_const<T>::type
 

Detailed Description

template<typename T, typename ReferenceT>
struct nanovdb::util::match_const< T, ReferenceT >

Trait used to transfer the const-ness of a reference type to another type.

Template Parameters
TType whose const-ness needs to match the reference type
ReferenceTReference type that is not const

match_const<const int, float>::type = int match_const<int, float>::type = int

Member Typedef Documentation

◆ type

template<typename T, typename ReferenceT>
using type = typename remove_const<T>::type