mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 17:03:06 +01:00
Use constructor initialization list in Stateful class
This commit is contained in:
parent
9e4dc284ee
commit
4e6cdb4daa
1 changed files with 3 additions and 3 deletions
|
|
@ -45,11 +45,11 @@ int Stateful::current_state_version = 0;
|
|||
int Stateful::loading_state_version = 0;
|
||||
|
||||
Stateful::Stateful ()
|
||||
: _properties (new OwnedPropertyList)
|
||||
: _extra_xml (0)
|
||||
, _instant_xml (0)
|
||||
, _properties (new OwnedPropertyList)
|
||||
, _stateful_frozen (0)
|
||||
{
|
||||
_extra_xml = 0;
|
||||
_instant_xml = 0;
|
||||
}
|
||||
|
||||
Stateful::~Stateful ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue