LibreOffice Module onlineupdate (master) 1
|
RemoveConst removes top-level const qualifications on a type. More...
#include <TypeTraits.h>
Public Types | |
typedef T | Type |
RemoveConst removes top-level const qualifications on a type.
mozilla::RemoveConst<int>::Type is int; mozilla::RemoveConst<const int>::Type is int; mozilla::RemoveConst<const int*>::Type is const int*; mozilla::RemoveConst<int* const>::Type is int*.
Definition at line 678 of file TypeTraits.h.
typedef T mozilla::RemoveConst< T >::Type |
Definition at line 680 of file TypeTraits.h.