Skip to content

Commit

Permalink
Removed unused function for compile time speed up.
Browse files Browse the repository at this point in the history
  • Loading branch information
dougbinks committed Oct 27, 2017
1 parent 739bac1 commit 24b8106
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions Aurora/RuntimeObjectSystem/RuntimeInclude.h
Expand Up @@ -54,15 +54,6 @@ template< size_t COUNT > struct RuntimeIncludeFiles : public RuntimeIncludeFiles
RuntimeIncludeFiles() : RuntimeIncludeFiles<COUNT-1>( COUNT )
{
}

virtual const char* GetIncludeDir( size_t Num_ ) const
{
if( Num_ < COUNT )
{
return this->RuntimeIncludeFiles< COUNT-1 >::GetIncludeDir( Num_ );
}
else return 0;
}
};

template<> struct RuntimeIncludeFiles<0> : public IRuntimeIncludeFileList
Expand All @@ -73,15 +64,8 @@ template<> struct RuntimeIncludeFiles<0> : public IRuntimeIncludeFileList
RuntimeIncludeFiles() : IRuntimeIncludeFileList( 0 )
{
}

virtual const char* GetIncludeDir( size_t Num_ ) const
{
return 0;
}
};



#define RUNTIME_MODIFIABLE_INCLUDE_BASE( N ) \
template<> struct RuntimeIncludeFiles< N + 1 > : public RuntimeIncludeFiles< N >\
{ \
Expand Down

0 comments on commit 24b8106

Please sign in to comment.