From fece0cf02575580a6f6ea45fffa26a735a221a0e Mon Sep 17 00:00:00 2001 From: David Capello Date: Wed, 12 Apr 2017 13:03:45 -0300 Subject: [PATCH] Minor fix with includes My mistake: for std::strlen() and for std::strtol(). --- src/app/file/file_data.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/file/file_data.cpp b/src/app/file/file_data.cpp index fa641c980..38376f9be 100644 --- a/src/app/file/file_data.cpp +++ b/src/app/file/file_data.cpp @@ -18,10 +18,8 @@ #include "doc/document.h" #include "doc/slice.h" -// TODO define one way to use std:: functions, this is getting really strange on different compilers -#include // Needed to use std::strtol() on clang -#include // Needed to use std::strtol() on gcc - +#include +#include #include namespace app {