diff options
author | 2020-01-31 20:20:53 +0100 | |
---|---|---|
committer | 2020-01-31 20:20:53 +0100 | |
commit | 72f86082aaef3166335dad915fa4656073a51a76 (patch) | |
tree | e95111d3ffdc0dc259ef54d19ecf0c924b9e2b30 /src/lib/netlist/plib/pmempool.h | |
parent | 146739fb884397840555dbd0dceb01aeb9f191c8 (diff) |
netlist: clang lint fixes. (nw)
Diffstat (limited to 'src/lib/netlist/plib/pmempool.h')
-rw-r--r-- | src/lib/netlist/plib/pmempool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/plib/pmempool.h b/src/lib/netlist/plib/pmempool.h index a06c67acd8e..aab6448258b 100644 --- a/src/lib/netlist/plib/pmempool.h +++ b/src/lib/netlist/plib/pmempool.h @@ -149,7 +149,7 @@ namespace plib { } catch (...) { - this->deallocate(mem, sizeof(T)); + deallocate(mem, sizeof(T)); throw; } } @@ -165,7 +165,7 @@ namespace plib { } catch (...) { - this->deallocate(mem, sizeof(T)); + deallocate(mem, sizeof(T)); throw; } } |