Skip to content

Commit

Permalink
Use include guards instead of pragma once because of ros2/ros2_docume…
Browse files Browse the repository at this point in the history
  • Loading branch information
DLu committed Apr 5, 2024
1 parent bef763b commit 4f955ef
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@

/* Author: David V. Lu!! */

#pragma once
#ifndef RVIZ_PLUGIN_TUTORIAL__POINT_DISPLAY_HPP_
#define RVIZ_PLUGIN_TUTORIAL__POINT_DISPLAY_HPP_

#include <rviz_common/message_filter_display.hpp>
#include <rviz_common/properties/color_property.hpp>
Expand All @@ -59,3 +60,5 @@ private Q_SLOTS:
std::unique_ptr<rviz_common::properties::ColorProperty> color_property_;
};
} // namespace rviz_plugin_tutorial

#endif // RVIZ_PLUGIN_TUTORIAL__POINT_DISPLAY_HPP_

0 comments on commit 4f955ef

Please sign in to comment.