Add cstdlib include

On some platforms some of the includers of this header don't have
'atoi' defined after the change in #1749
This commit is contained in:
Daniel Koch 2019-04-06 07:43:17 -04:00
parent 3416d48b59
commit 0aea3106e2

View File

@ -102,6 +102,7 @@ std::string to_string(const T& val) {
#include <algorithm>
#include <string>
#include <cstdio>
#include <cstdlib>
#include <cassert>
#include "PoolAlloc.h"