[#bsl-remove_volatile-0c] = xref:bsl.adoc[bsl]::remove_volatile :relfileprefix: ../ :mrdocs: Metafunction removing a top‐level `volatile` qualifier from a type. == Synopsis Declared in `<bslmf_removevolatile.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TYPE> struct remove_volatile; ---- == Description This `struct` template implements the `remove_volatile` meta‐function defined in the C++11 standard [meta.trans.cv], providing an alias, `type`, that returns the result. `type` has the same type as the (template parameter) `t_TYPE` except that any top‐level `volatile`‐qualifier has been removed. Note that this generic default template provides a `type` that is an alias to `t_TYPE` for when `t_TYPE` is not `volatile`‐qualified. A template specialization is provided (below) that removes the `volatile`‐qualifier for when `t_TYPE` is `volatile`‐qualified. == Type Aliases [cols="1,4"] |=== | Name| Description | xref:bsl/remove_volatile-0c/type.adoc[`type`] | This `typedef` is an alias to the (template parameter) `t_TYPE`. |=== == Specializations [cols="1,4"] |=== | Name| Description | xref:bsl/remove_volatile-0a.adoc[`remove_volatile<t_TYPE volatile>`] | Partial specialization of `bsl::remove_volatile` for `volatile`‐qualified types. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#