[/ 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:remove_reference remove_reference] template struct remove_reference { typedef __below type; }; template using remove_reference_t = typename remove_reference::type; // C++11 and above __type The same type as `T`, but with any reference modifier removed. __std_ref 8.3.2. [all_compilers] __header ` #include ` or ` #include ` [table Examples [ [Expression] [Result Type]] [[`remove_reference::type`][`int`]] [[`remove_reference::type`] [`int const`]] [[`remove_reference::type`] [`int`]] [[`remove_reference::type`] [`int*`]] [[`remove_reference::type`] [`int*`]] ] [endsect]