linker.TreatVerifyImportErrorsAsWarnings

linker.TreatVerifyImportErrorsAsWarnings

#Overview

name: linker.TreatVerifyImportErrorsAsWarnings

This variable is created as a Console Variable (cvar).

It is referenced in 1 C++ source file.

#Summary

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/CoreUObject/Private/UObject/LinkerLoad.cpp:155

Scope: file

Source code excerpt:

COREUOBJECT_API int32 GTreatVerifyImportErrorsAsWarnings = 0;
static FAutoConsoleVariableRef CVarTreatVerifyImportErrorsAsWarnings(
	TEXT("linker.TreatVerifyImportErrorsAsWarnings"),
	GTreatVerifyImportErrorsAsWarnings,
	TEXT("If true, the errors emitted due to verify import failures will be warnings instead."),
	ECVF_Default
);
#endif // WITH_EDITOR