Files
UnrealEngineUWP/Engine/Source/Developer/UnrealCodeAnalyzerTests/Private/Inheritance.cpp
Mikolaj Sieluzycki 153fc243cf CIS fix.
[CL 2613506 by Mikolaj Sieluzycki in Main branch]
2015-07-08 10:08:15 -04:00

13 lines
231 B
C++

#include "UnrealCodeAnalyzerTestsPCH.h"
#include "Inheritance.h"
class FTestDerivedClass : public FTestBaseClass
{ };
static void Function_Inheritance()
{
#ifdef UNREAL_CODE_ANALYZER
FTestDerivedClass TestDerivedClass;
#endif
}