UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
RemoveCV.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6#include <type_traits>
7
13template <typename T>
14struct UE_DEPRECATED(5.3, "TRemoveCV has been deprecated, please use std::remove_cv_t instead.") TRemoveCV
15{
16 using Type = std::remove_cv_t<T>;
17};
#define UE_DEPRECATED(Version, Message)
Definition CoreMiscDefines.h:302