Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
636 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#if !defined(FORCE_INLINE)
#if defined(_MSC_VER)
#define FORCE_INLINE __forceinline
#else
#define FORCE_INLINE inline __attribute__((always_inline))
#endif
#endif
#if !defined(ASSUME_TRUE)
#if defined(_MSC_VER) && !defined(__clang__)
#define ASSUME_TRUE(condition) __assume(condition)
#else
// *INDENT-OFF*
#define ASSUME_TRUE(condition) do {if (!(condition)) __builtin_unreachable();} while (0)
// *INDENT-ON*
#endif
#endif
#if !defined(UNUSED)
#define UNUSED(x) static_cast<void>(x)
#endif