Files
Project-Reboot-3.0/Project Reboot 3.0/IsTriviallyCopyConstructible.h
2023-04-15 19:53:58 -04:00

9 lines
136 B
C++

#pragma once
#include "inc.h"
template <typename T>
struct TIsTriviallyCopyConstructible
{
enum { Value = __has_trivial_copy(T) };
};