]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
mgr/PyFormatter.h: add necessary #include
authorKefu Chai <kchai@redhat.com>
Fri, 19 Jul 2019 05:42:20 +0000 (13:42 +0800)
committerKefu Chai <kchai@redhat.com>
Thu, 25 Jul 2019 01:00:28 +0000 (09:00 +0800)
this header uses `std::string`, `std::string_view` and
`std::stringstream`, so it should include the corresponding headers.

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/mgr/PyFormatter.h

index 58fead174ec50d2f93308bbf25aa7895ae48f728..e30ae9f054ab372fa3dd50aefaa2940f13b05501 100644 (file)
@@ -21,6 +21,9 @@
 #include "PythonCompat.h"
 
 #include <stack>
+#include <string>
+#include <string_view>
+#include <sstream>
 #include <memory>
 #include <list>