From a66eebab5cab5c1e128276ef04574158e84619c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9F=B3=E6=99=93=E4=BC=9F?= <39303645+Shixiaowei02@users.noreply.github.com> Date: Mon, 11 Jan 2021 17:59:24 +0800 Subject: [PATCH] fix header file paths of gflags, commit 4, test=develop (#30274) --- paddle/fluid/string/pretty_log.cc | 2 +- paddle/fluid/string/pretty_log.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/paddle/fluid/string/pretty_log.cc b/paddle/fluid/string/pretty_log.cc index 4534fdc58b8..c0715e644fb 100644 --- a/paddle/fluid/string/pretty_log.cc +++ b/paddle/fluid/string/pretty_log.cc @@ -13,7 +13,7 @@ // limitations under the License. #include "paddle/fluid/string/pretty_log.h" -#include +#include "gflags/gflags.h" DEFINE_bool(color, true, "Whether to turn on pretty log"); diff --git a/paddle/fluid/string/pretty_log.h b/paddle/fluid/string/pretty_log.h index 5e2aedb22ad..696e2bb04f0 100644 --- a/paddle/fluid/string/pretty_log.h +++ b/paddle/fluid/string/pretty_log.h @@ -13,11 +13,11 @@ // limitations under the License. #pragma once -#include #include #include #include #include +#include "gflags/gflags.h" #include "paddle/fluid/string/printf.h" -- GitLab