nemerle 2bbe6144ff Fix PoolAllocator::resize for too large p_new_size
The code had a subtle signed/unsigned bug -
```cpp
if( signed - unsigned < 0)
// signed - unsigned is unsigned in c++, so
if( unsigned < 0)
// and thus the if block will never be executed
```

Thus all the following code would be ran, including unnecessary retries
of compacting the pool.
2018-05-17 00:35:47 +02:00
..
2018-05-16 14:50:44 -03:00
2018-01-18 22:13:00 +01:00
2018-02-21 19:46:06 +01:00
2018-02-21 19:46:06 +01:00
2018-02-21 19:46:06 +01:00
2018-05-15 17:14:31 -03:00
2018-02-21 19:46:06 +01:00
2018-04-29 11:41:36 +02:00