Minor fix with includes

My mistake: <cstring> for std::strlen() and <cstdlib> for std::strtol().
This commit is contained in:
David Capello 2017-04-12 13:03:45 -03:00
parent 5cfb0cd189
commit fece0cf025

View File

@ -18,10 +18,8 @@
#include "doc/document.h" #include "doc/document.h"
#include "doc/slice.h" #include "doc/slice.h"
// TODO define one way to use std:: functions, this is getting really strange on different compilers #include <cstdlib>
#include <cstdlib> // Needed to use std::strtol() on clang #include <cstring>
#include <cstring> // Needed to use std::strtol() on gcc
#include <set> #include <set>
namespace app { namespace app {