From 104c88cfea8e3d2d6bca1a22c26010256919862c Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Fri, 19 Jul 2019 13:42:20 +0800 Subject: [PATCH] mgr/PyFormatter.h: add necessary #include this header uses `std::string`, `std::string_view` and `std::stringstream`, so it should include the corresponding headers. Signed-off-by: Kefu Chai --- src/mgr/PyFormatter.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mgr/PyFormatter.h b/src/mgr/PyFormatter.h index 58fead174ec..e30ae9f054a 100644 --- a/src/mgr/PyFormatter.h +++ b/src/mgr/PyFormatter.h @@ -21,6 +21,9 @@ #include "PythonCompat.h" #include +#include +#include +#include #include #include -- 2.39.5