![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <NotCVRefTo.h>
Concept which describes convertibility from one type to another.
This is useful for templated constructors to prevent them being instantiated for the class type itself so that it will call a move or copy constructor instead:
struct FSomeClass { template <CNotCVRefTo<FSomeClass> ArgType> FSomeClass(ArgType&& Arg); { } };