UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
LocTesting.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "Misc/Build.h"
6
7#ifndef ENABLE_LOC_TESTING
8 #define ENABLE_LOC_TESTING (UE_BUILD_DEBUG || UE_BUILD_DEVELOPMENT || UE_BUILD_TEST)
9#endif
10
11static_assert(!ENABLE_LOC_TESTING || !UE_BUILD_SHIPPING, "ENABLE_LOC_TESTING can never be enabled in shipping builds");
#define UE_BUILD_SHIPPING
Definition Build.h:20
#define ENABLE_LOC_TESTING
Definition LocTesting.h:8