Skip to content

Commit

Permalink
CI: resolve missing includes for cpplint
Browse files Browse the repository at this point in the history
Signed-off-by: Rhys Mainwaring <[email protected]>
  • Loading branch information
srmainwaring committed Oct 30, 2024
1 parent caed92f commit d6fc6b2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ArduPilotPlugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@
#include <gz/msgs/imu.pb.h>
#include <gz/msgs/laserscan.pb.h>

#include <algorithm>
#include <chrono>
#include <functional>
#include <memory>
#include <mutex>
#include <string>
#include <sstream>
Expand Down
2 changes: 2 additions & 0 deletions src/CameraZoomPlugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
#include <atomic>
#include <cmath>
#include <limits>
#include <memory>
#include <mutex>
#include <string>
#include <vector>

#include <gz/common/Profiler.hh>

Expand Down
2 changes: 2 additions & 0 deletions src/GstCameraPlugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
#include <gst/gst.h>

#include <iostream>
#include <memory>
#include <string>
#include <thread>
#include <vector>

#include <gz/plugin/Register.hh>
#include <gz/rendering/Camera.hh>
Expand Down
2 changes: 2 additions & 0 deletions src/ParachutePlugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@

#include <gz/msgs/entity_factory.pb.h>

#include <memory>
#include <string>
#include <vector>

#include <gz/plugin/Register.hh>
#include <gz/common/Profiler.hh>
Expand Down
4 changes: 4 additions & 0 deletions src/Util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@

#include "Util.hh"

#include <string>
#include <unordered_set>
#include <vector>

#include <gz/sim/components/Joint.hh>
#include <gz/sim/components/JointVelocity.hh>
#include <gz/sim/components/Name.hh>
Expand Down

0 comments on commit d6fc6b2

Please sign in to comment.