Skip to content

Commit b674f55

Browse files
committed
nolints
1 parent d640587 commit b674f55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/viam/sdk/services/navigation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Navigation::Waypoint auto_from_proto(const viam::service::navigation::v1::Waypoi
2323
}
2424

2525
template <>
26-
viam::service::navigation::v1::Waypoint auto_to_proto(const Navigation::Waypoint& wp) {
26+
viam::service::navigation::v1::Waypoint auto_to_proto(const Navigation::Waypoint& wp) { // NOLINT
2727
viam::service::navigation::v1::Waypoint ret;
2828
*ret.mutable_id() = wp.id;
2929
*ret.mutable_location() = wp.location.to_proto();
@@ -38,7 +38,7 @@ Navigation::Path auto_from_proto(const viam::service::navigation::v1::Path& prot
3838
}
3939

4040
template <>
41-
viam::service::navigation::v1::Path auto_to_proto(const Navigation::Path& p) {
41+
viam::service::navigation::v1::Path auto_to_proto(const Navigation::Path& p) { // NOLINT
4242
viam::service::navigation::v1::Path ret;
4343
*ret.mutable_destination_waypoint_id() = p.destination_waypoint_id;
4444
vecToRepeatedPtr(p.geopoints, *ret.mutable_geopoints());

0 commit comments

Comments
 (0)