From b3640817e3fa1ae42aea59b67989d0559327f52d Mon Sep 17 00:00:00 2001 From: Yuxin Wu Date: Fri, 31 Mar 2017 14:54:34 -0700 Subject: [PATCH] Include When compiling on Linux host to armv7a target following to the tutorial, got error of "errno undeclared". Include this header fixed this problem. --- test_helpers/Utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_helpers/Utils.cpp b/test_helpers/Utils.cpp index 4c0e8167c..4d87d5305 100644 --- a/test_helpers/Utils.cpp +++ b/test_helpers/Utils.cpp @@ -26,7 +26,7 @@ #include #include #include - +#include namespace { /* Advance the iterator to the first character which is not a comment @@ -161,4 +161,4 @@ std::tuple test_helpers::parse_ppm_header(std:: fs.ignore(1); return std::make_tuple(width, height, max_val); -} \ No newline at end of file +} -- 2.34.1