Gui: modernize C++: use default member init
This commit is contained in:
@@ -237,12 +237,9 @@ int SoFCSelectionContextEx::merge(int status, SoFCSelectionContextBasePtr &outpu
|
||||
///////////////////////////////////////////////////////////////////////
|
||||
|
||||
SoFCSelectionCounter::SoFCSelectionCounter()
|
||||
:counter(std::make_shared<int>(0))
|
||||
,hasSelection(false)
|
||||
,hasPreselection(false)
|
||||
: counter(std::make_shared<int>(0))
|
||||
{}
|
||||
|
||||
|
||||
SoFCSelectionCounter::~SoFCSelectionCounter() = default;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user