From: helly Date: Mon, 5 Jun 2006 22:12:44 +0000 (+0000) Subject: - delete allows null X-Git-Tag: 0.13.6~275 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4cca52e971b2324210ebf3c5f824f3a36b47df76;p=re2c - delete allows null --- diff --git a/re2c/code.cc b/re2c/code.cc index 784b33eb..e7c8afca 100644 --- a/re2c/code.cc +++ b/re2c/code.cc @@ -180,10 +180,7 @@ BitMap::BitMap(const Go *g, const State *x) BitMap::~BitMap() { - if (next) - { - delete next; - } + delete next; } const BitMap *BitMap::find(const Go *g, const State *x)