From 16f771652ba4de52dd113de0fd5ba5f37763f3fd Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Fri, 24 Aug 2018 17:47:27 +0900 Subject: [PATCH] [enco] Include functional in Driver (#1174) This commit inserts '#include ' at the top of Driver.cpp to fix a build break reported by the recent C++ compiler (g++ 8.X and clang++ 7.X). Signed-off-by: Jonghyun Park --- contrib/enco/cli/src/Driver.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/enco/cli/src/Driver.cpp b/contrib/enco/cli/src/Driver.cpp index 8e9fb02..0956842 100644 --- a/contrib/enco/cli/src/Driver.cpp +++ b/contrib/enco/cli/src/Driver.cpp @@ -6,6 +6,8 @@ #include #include +#include + namespace cmdline { -- 2.7.4