Skip to content

Commit

Permalink
iox-#1196 Add issue numbers to suppression todos
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Eltzschig <[email protected]>
  • Loading branch information
elfenpiff committed Jul 25, 2022
1 parent c7db02c commit 28200ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iceoryx_hoofs/source/posix_wrapper/message_queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ MessageQueue& MessageQueue::operator=(MessageQueue&& other) noexcept
}
CreationPattern_t::operator=(std::move(other));

/// NOLINTJUSTIFICATION will be fixed with the builder pattern
/// NOLINTJUSTIFICATION iox-#1036 will be fixed with the builder pattern
/// NOLINTNEXTLINE(bugprone-use-after-move,hicpp-invalid-access-moved)
m_name = std::move(other.m_name);
m_attributes = other.m_attributes;
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_hoofs/source/posix_wrapper/named_pipe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ NamedPipe& NamedPipe::operator=(NamedPipe&& rhs) noexcept
IOX_DISCARD_RESULT(destroy());
CreationPattern_t::operator=(std::move(rhs));

/// NOLINTJUSTIFICATION will be fixed with the builder pattern
/// NOLINTJUSTIFICATION iox-#1036 will be fixed with the builder pattern
/// NOLINTNEXTLINE(bugprone-use-after-move,hicpp-invalid-access-moved)
m_sharedMemory = std::move(rhs.m_sharedMemory);
m_data = rhs.m_data;
Expand Down

0 comments on commit 28200ba

Please sign in to comment.