UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
RemoveCV.h File Reference
#include "CoreTypes.h"
#include <type_traits>

Go to the source code of this file.

Functions

template<typename T >
struct UE_DEPRECATED (5.3, "TRemoveCV has been deprecated, please use std::remove_cv_t instead.") TRemoveCV
 

Function Documentation

◆ UE_DEPRECATED()

template<typename T >
struct UE_DEPRECATED ( 5.  3,
"TRemoveCV has been  deprecated,
please use std::remove_cv_t instead."   
)

TRemoveCV<type> will remove any const/volatile qualifiers from a type. (based on std::remove_cv<> note: won't remove the const from "const int*", as the pointer is not const