bsl::remove_volatile<t_TYPE volatile>

Partial specialization of bsl::remove_volatile for volatile-qualified types.

Synopsis

Declared in <bslmf_removevolatile.h>

template<class t_TYPE>
struct remove_volatile<t_TYPE volatile>;

Description

This partial specialization of bsl::remove_volatile, for when the (template parameter) t_TYPE is volatile-qualified, provides a typedef, type, that has the volatile-qualifier removed.

Type Aliases

NameDescription
type This typedef is an alias to the same type as the (template parameter) t_TYPE except with the volatile-qualifier removed.