Skip to content

Commit ac32fcf

Browse files
committed
🐛 Fix includes in bindings
1 parent 366f2f3 commit ac32fcf

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

bindings/bindings.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@
4848
#include <pybind11/detail/common.h>
4949
#include <pybind11/pybind11.h>
5050
#include <pybind11/pytypes.h>
51+
// NOLINTNEXTLINE(misc-include-cleaner)
52+
#include <pybind11/stl.h>
5153
#include <sstream>
5254
#include <stdexcept>
5355
#include <string>

bindings/na/nasp/nasp.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
#include <pybind11/cast.h>
2020
#include <pybind11/detail/common.h>
2121
#include <pybind11/pybind11.h>
22+
// NOLINTNEXTLINE(misc-include-cleaner)
23+
#include <pybind11/stl.h>
24+
// NOLINTNEXTLINE(misc-include-cleaner)
25+
#include <pybind11_json/pybind11_json.hpp>
2226
#include <string>
2327

2428
namespace py = pybind11;

bindings/na/zoned/zoned.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#include <pybind11/cast.h>
2525
#include <pybind11/detail/common.h>
2626
#include <pybind11/pybind11.h>
27+
// NOLINTNEXTLINE(misc-include-cleaner)
28+
#include <pybind11_json/pybind11_json.hpp>
2729
#include <spdlog/common.h>
2830
#include <string>
2931

0 commit comments

Comments
 (0)