From 5a8ec8e50569303e9220ea52fdc20ec0e0c19ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rickard=20Hallerb=C3=A4ck?= Date: Sat, 19 Sep 2020 20:25:46 +0200 Subject: [PATCH] Include what is used in pybind11.h (#2499) * Include what is used * Separated the C++ standard library headers and the project headers * Reordering includes --- include/pybind11/pybind11.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/pybind11/pybind11.h b/include/pybind11/pybind11.h index 617c01f0..7c5286a9 100644 --- a/include/pybind11/pybind11.h +++ b/include/pybind11/pybind11.h @@ -46,6 +46,11 @@ #include "detail/class.h" #include "detail/init.h" +#include +#include +#include +#include + #if defined(__GNUG__) && !defined(__clang__) # include #endif