Files
Project-Reboot-3.0/Project Reboot 3.0/RemoveReference.h
2023-04-15 19:53:58 -04:00

6 lines
225 B
C++

#pragma once
template <typename T> struct TRemoveReference { typedef T Type; };
template <typename T> struct TRemoveReference<T& > { typedef T Type; };
template <typename T> struct TRemoveReference<T&&> { typedef T Type; };