free() require cstdlib to be included
This commit is contained in:
parent
a931686317
commit
51147203be
1
NEWS
1
NEWS
|
@ -1,5 +1,6 @@
|
||||||
ver 0.20.4 (not yet released)
|
ver 0.20.4 (not yet released)
|
||||||
* workaround for GCC 4.9 "constexpr" bug
|
* workaround for GCC 4.9 "constexpr" bug
|
||||||
|
* fix FreeBSD build failure
|
||||||
|
|
||||||
ver 0.20.3 (2017/01/25)
|
ver 0.20.3 (2017/01/25)
|
||||||
* protocol
|
* protocol
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <new>
|
#include <new>
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allocate and construct a variable-size object. That is useful for
|
* Allocate and construct a variable-size object. That is useful for
|
||||||
|
|
Loading…
Reference in New Issue