Internals: Remove unneeded returns on asserts.

This commit is contained in:
Wilson Snyder
2018-06-13 18:05:00 -04:00
parent a15e6f68dd
commit 5d26bca55c
7 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -133,8 +133,8 @@ ostream& operator<<(ostream& os, V3GraphVertex* vertexp) {
void V3GraphEdge::init(V3Graph* graphp,
V3GraphVertex* fromp, V3GraphVertex* top, int weight,
bool cutable) {
UASSERT(fromp, "Null from pointer\n");
UASSERT(top, "Null to pointer\n");
UASSERT(fromp, "Null from pointer");
UASSERT(top, "Null to pointer");
m_fromp = fromp;
m_top = top;
m_weight = weight;