Skip to content

Commit 743f958

Browse files
fixup
1 parent ee5953a commit 743f958

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

tesseract_common/src/tool_path.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ ToolPath::ToolPath(std::string description)
4343
{
4444
}
4545

46-
ToolPath::ToolPath(boost::uuids::uuid uuid, std::string description)
47-
: uuid_(std::move(uuid)), description_(std::move(description))
46+
ToolPath::ToolPath(boost::uuids::uuid uuid, std::string description) : uuid_(uuid), description_(std::move(description))
4847
{
4948
}
5049

tesseract_common/src/tool_path_segment.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ToolPathSegment::ToolPathSegment(std::string description)
4545
}
4646

4747
ToolPathSegment::ToolPathSegment(boost::uuids::uuid uuid, std::string description)
48-
: uuid_(std::move(uuid)), description_(std::move(description))
48+
: uuid_(uuid), description_(std::move(description))
4949
{
5050
}
5151

0 commit comments

Comments
 (0)