Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Makes non reference type from type.
template<class Ty>
struct remove_reference;
Parameters
- Ty
The type to modify.
Remarks
An instance of the type modifier holds a modified-type that is Ty1 when Ty is of the form Ty1&, otherwise Ty.
Example
// std_tr1__type_traits__remove_reference.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
int main()
{
int *p = (std::remove_reference<int&>::type *)0;
p = p; // to quiet "unused" warning
std::cout << "remove_reference<int&> == "
<< typeid(*p).name() << std::endl;
return (0);
}
remove_reference<int&> == int
Requirements
Header: <type_traits>
Namespace: std