Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
IsVoidType.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5// HEADER_UNIT_SKIP - Deprecated
6
7template<typename T> struct TIsVoidTypeBase { enum { Value = false }; };
8template<> struct TIsVoidTypeBase<void> { enum { Value = true }; };
9template<> struct TIsVoidTypeBase<void const> { enum { Value = true }; };
10template<> struct TIsVoidTypeBase<void volatile> { enum { Value = true }; };
11template<> struct TIsVoidTypeBase<void const volatile> { enum { Value = true }; };
12
13/**
14 * TIsVoidType
15 */
16template<typename T> struct UE_DEPRECATED(5.2, "TIsVoidType has been deprecated, please use std::is_void instead.") TIsVoidType : TIsVoidTypeBase<T> {};