Reorder class initializer lists

This commit is contained in:
Tillmann Karras
2014-07-04 03:53:22 +02:00
parent be1fe80bb6
commit d3fa8a6167
2 changed files with 3 additions and 3 deletions

View File

@ -19,8 +19,8 @@ class IBannerLoader
{
public:
IBannerLoader()
: m_pBannerFile(nullptr)
, m_IsValid(false)
: m_IsValid(false)
, m_pBannerFile(nullptr)
{}
virtual ~IBannerLoader()