Skip to content

Commit

Permalink
Add a missing semicolon (#357)
Browse files Browse the repository at this point in the history
This is required as of the latest Drake.
  • Loading branch information
jwnimmer-tri authored Jun 25, 2024
1 parent 423dd8f commit 10f95c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drake_ros/viz/scene_markers_system.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace {
/// Converts Drake shape descriptions to ROS Marker messages.
class SceneGeometryToMarkers : public drake::geometry::ShapeReifier {
public:
DRAKE_NO_COPY_NO_MOVE_NO_ASSIGN(SceneGeometryToMarkers)
DRAKE_NO_COPY_NO_MOVE_NO_ASSIGN(SceneGeometryToMarkers);

explicit SceneGeometryToMarkers(const SceneMarkersParams& params)
: params_(params) {}
Expand Down

0 comments on commit 10f95c3

Please sign in to comment.