[/ Copyright 2007 John Maddock. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt). ] [section:add_volatile add_volatile] template struct add_volatile { typedef __below type; }; __type The same type as `T volatile` for all `T`. __std_ref 3.9.3. __header ` #include ` or ` #include ` [table Examples [ [Expression] [Result Type]] [[`add_volatile::type`][`int volatile`]] [[`add_volatile::type`] [`int&`]] [[`add_volatile::type`] [`int* volatile`]] [[`add_volatile::type`] [`int const volatile`]] ] [all_compilers] [endsect]