We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 733496c commit 5650773Copy full SHA for 5650773
src/internet/model/global-route-manager-impl.cc
@@ -129,11 +129,9 @@ SPFVertex::~SPFVertex()
129
uint32_t orgCount = (*piter)->m_children.size();
130
(*piter)->m_children.remove(this);
131
uint32_t newCount = (*piter)->m_children.size();
132
- if (orgCount > newCount)
133
- {
134
- NS_ASSERT_MSG(orgCount > newCount,
135
- "Unable to find the current vertex from its parents --- impossible!");
136
- }
+
+ NS_ASSERT_MSG(orgCount > newCount,
+ "Unable to find the current vertex from its parents --- impossible!");
137
}
138
139
// delete children
0 commit comments