Files
UnrealEngineUWP/Engine/Source/Developer/UnrealCodeAnalyzerTests/Private/UseIfMacro.cpp
Mikolaj Sieluzycki f301a29aca Add basic UnrealCodeAnalyzer tests.
[CL 2613399 by Mikolaj Sieluzycki in Main branch]
2015-07-08 08:24:54 -04:00

14 lines
212 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "UnrealCodeAnalyzerTestsPCH.h"
#include "UseIfMacro.h"
static int Function_UseIfMacro()
{
#if IF_MACRO
return 0;
#else
return 1;
#endif
}