Skip to content

Commit 1594487

Browse files
authored
fix(cpplint): include what you use - visualization (#9576)
Signed-off-by: M. Fatih Cırıt <mfc@autoware.org>
1 parent 065b603 commit 1594487

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

visualization/autoware_pyplot/src/axes.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
#include <autoware/pyplot/axes.hpp>
1616
#include <autoware/pyplot/loader.hpp>
1717

18+
#include <tuple>
19+
1820
namespace autoware::pyplot
1921
{
2022
inline namespace axes

visualization/autoware_pyplot/src/common.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
#include <autoware/pyplot/common.hpp>
1616

17+
#include <utility>
18+
1719
namespace autoware::pyplot
1820
{
1921
inline namespace common

visualization/autoware_pyplot/src/pyplot.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
#include <autoware/pyplot/loader.hpp>
1616
#include <autoware/pyplot/pyplot.hpp>
1717

18+
#include <tuple>
19+
#include <vector>
20+
1821
namespace autoware::pyplot
1922
{
2023
PyPlot::PyPlot(const pybind11::module & mod_) : mod(mod_)

0 commit comments

Comments
 (0)