Skip to content

Commit

Permalink
[addonmanager] initialize members in the order they were declared
Browse files Browse the repository at this point in the history
  • Loading branch information
mkortstiege committed Mar 10, 2015
1 parent 9de31ce commit e2f3538
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/addons/AddonManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ bool CAddonMgr::CheckUserDirs(const cp_cfg_element_t *settings)
}

CAddonMgr::CAddonMgr()
: m_cpluff(nullptr),
m_cp_context(nullptr)
: m_cp_context(nullptr),
m_cpluff(nullptr)
{ }

CAddonMgr::~CAddonMgr()
Expand Down

0 comments on commit e2f3538

Please sign in to comment.