OpenVDB  9.0.1
Public Types | List of all members
CopyConstness< FromType, ToType > Struct Template Reference

CopyConstness<T1, T2>::Type is either const T2 or T2 with no const qualifier, depending on whether T1 is const. More...

#include <openvdb/Types.h>

Public Types

using Type = typename std::remove_const< ToType >::type
 

Detailed Description

template<typename FromType, typename ToType>
struct openvdb::v9_0::CopyConstness< FromType, ToType >

CopyConstness<T1, T2>::Type is either const T2 or T2 with no const qualifier, depending on whether T1 is const.

For example,

Member Typedef Documentation

using Type = typename std::remove_const<ToType>::type