mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
124 files changed.
This commit is contained in:
5
Project Reboot 3.0/RemoveReference.h
Normal file
5
Project Reboot 3.0/RemoveReference.h
Normal file
@@ -0,0 +1,5 @@
|
||||
#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; };
|
||||
Reference in New Issue
Block a user