Files
Reboot-Launcher/dependencies/reboot/Project Reboot 3.0/RemoveCV.h
Alessandro Autiero b41e22adeb <feat: New project structure>
<feat: New release>
2023-09-02 15:34:15 +02:00

6 lines
292 B
C++

#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; };