remove ROBUST, this is taken care of by NDEBUG (thanks to Petr Uzel)

This commit is contained in:
Arnout Engelen
2008-12-31 15:52:26 +00:00
parent 8b7a51c57d
commit 3d6ac8bdd3
8 changed files with 47 additions and 82 deletions

View File

@@ -31,8 +31,7 @@ public:
}
PackList (Packet * m_val)
{
if (!ROBUST)
assert (m_val != NULL);
assert (m_val != NULL);
content = new PackListNode(m_val);
}
~PackList ()