Hello I having error with header file that seems to be showing error in visual studio.
The project does compile but the header itself is showing errors that is part of my logger header
Visual Studio is showing the following error.
Severity Code Description Project File Line Suppression State
Error (active) E0147 declaration is incompatible with "FLogCategoryLogTaskManagement LogTaskManagement" (declared at line 24 of "f:\Unreal Engine 4.19\UnrealPlugins\Plugins\TaskManagement\Source\TaskManagement\Private\TaskManagementLog.h") UnrealPlugins f:\Unreal Engine 4.19\UnrealPlugins\Plugins\TaskManagement\Source\TaskManagement\Private\TaskManagementLog.h 24
and my TaskManagementLog.h contains the following
#pragma once
/*----------------------------------------------------------------------------
Low level includes.
----------------------------------------------------------------------------*/
#include "CoreMinimal.h"
#include "Logging/LogVerbosity.h"
#include "Logging/LogCategory.h"
#include "Logging/LogMacros.h"
#include "CoreGlobals.h"
/*----------------------------------------------------------------------------
Includes.
----------------------------------------------------------------------------*/
#include "Logging/LogSuppressionInterface.h"
#include "Logging/LogScopedCategoryAndVerbosityOverride.h"
#include "Logging/LogScopedVerbosityOverride.h"
DECLARE_LOG_CATEGORY_EXTERN(LogTaskManagement, Log, All);
Anyone know what I need to include to remove the error from Visual Studio