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

@ -88,9 +88,9 @@ protected:
, m_input_sample_rate(sample_rate) , m_input_sample_rate(sample_rate)
, m_indexW(0) , m_indexW(0)
, m_indexR(0) , m_indexR(0)
, m_numLeftI(0.0f)
, m_LVolume(256) , m_LVolume(256)
, m_RVolume(256) , m_RVolume(256)
, m_numLeftI(0.0f)
{ {
memset(m_buffer, 0, sizeof(m_buffer)); memset(m_buffer, 0, sizeof(m_buffer));
} }

View File

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