diff options
author | Thomas Zander <thomas.e.zander@googlemail.com> | 2017-01-28 16:07:37 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-01-31 21:21:37 +0100 |
commit | 51147203be4848847f079847206c9b5e0e36cb3d (patch) | |
tree | 379bdca8897393acf9dc35e850ef5e07b064e612 /src | |
parent | a9316863176f2e66f78b050b772fe87af3462f2c (diff) |
free() require cstdlib to be included
Diffstat (limited to 'src')
-rw-r--r-- | src/util/VarSize.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/VarSize.hxx b/src/util/VarSize.hxx index a386e5dc4..5f383bc4b 100644 --- a/src/util/VarSize.hxx +++ b/src/util/VarSize.hxx @@ -36,6 +36,7 @@ #include <type_traits> #include <utility> #include <new> +#include <cstdlib> /** * Allocate and construct a variable-size object. That is useful for |