Skip to content

Commit

Permalink
Reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Aug 14, 2024
1 parent efdd984 commit 98043de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/UEST/Public/UEST.h
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,10 @@ struct TUESTInstantiator
return __LINE__; \
} \
}; \
void BOOST_PP_CAT(F, ClassName)::GetTests(TArray<FString>& OutBeautifiedNames, TArray<FString>& OutTestCommands) const { Super::GetTests(OutBeautifiedNames, OutTestCommands); } \
void BOOST_PP_CAT(F, ClassName)::GetTests(TArray<FString>& OutBeautifiedNames, TArray<FString>& OutTestCommands) const \
{ \
Super::GetTests(OutBeautifiedNames, OutTestCommands); \
} \
static const TUESTInstantiator<BOOST_PP_CAT(F, BOOST_PP_CAT(ClassName, Impl))> BOOST_PP_CAT(ClassName, Instantiator); \
struct BOOST_PP_CAT(F, BOOST_PP_CAT(ClassName, Impl)) \
: public BOOST_PP_CAT(F, ClassName)
Expand Down

0 comments on commit 98043de

Please sign in to comment.