Static Function in Namespace Not Defined
Error
static function 'FString OS_MDC_Keys::ReplaceAll()' declared but not definednamespace OS_MDC_Keys
{
static FString ReplaceAll();
}Cause
Fix
namespace OS_MDC_Keys
{
static FString ReplaceAll() {}
}namespace OS_MDC_Keys
{
FString ReplaceAll();
}Last updated