Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
Launder.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#if __cplusplus >= 201703L
5#include <new> // IWYU pragma: export
6#define UE_LAUNDER(x) std::launder(x)
7#else
8#define UE_LAUNDER(x) (x)
9#endif