mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
124 files changed.
This commit is contained in:
6
Project Reboot 3.0/RemoveCV.h
Normal file
6
Project Reboot 3.0/RemoveCV.h
Normal file
@@ -0,0 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
template <typename T> struct TRemoveCV { typedef T Type; };
|
||||
template <typename T> struct TRemoveCV<const T> { typedef T Type; };
|
||||
template <typename T> struct TRemoveCV<volatile T> { typedef T Type; };
|
||||
template <typename T> struct TRemoveCV<const volatile T> { typedef T Type; };
|
||||
Reference in New Issue
Block a user