Skip to content

Commit 4c8fb33

Browse files
committed
Fixed initialization order
1 parent 2175b3e commit 4c8fb33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ngscopeclient/FilterGraphEditor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ using namespace std;
5252
// FilterGraphGroup
5353

5454
FilterGraphGroup::FilterGraphGroup(FilterGraphEditor& ed)
55-
: m_parent(ed)
56-
, m_outputId(ed.AllocateID())
55+
: m_outputId(ed.AllocateID())
5756
, m_inputId(ed.AllocateID())
57+
, m_parent(ed)
5858
{
5959
}
6060

0 commit comments

Comments
 (0)