From ec17c3a962f3a259e18c994c9af4ff26a2ac3797 Mon Sep 17 00:00:00 2001 From: Mathias Kraus Date: Mon, 4 Sep 2023 15:12:11 +0200 Subject: [PATCH] iox-#1036 Remove superfluous clang-tidy suppression --- iceoryx_dust/source/posix_wrapper/message_queue.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/iceoryx_dust/source/posix_wrapper/message_queue.cpp b/iceoryx_dust/source/posix_wrapper/message_queue.cpp index 07bfd96395..21f9366c68 100644 --- a/iceoryx_dust/source/posix_wrapper/message_queue.cpp +++ b/iceoryx_dust/source/posix_wrapper/message_queue.cpp @@ -113,8 +113,6 @@ MessageQueue& MessageQueue::operator=(MessageQueue&& other) noexcept << "\" during move operation - resource leaks are possible!" << std::endl; } - /// 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; m_mqDescriptor = other.m_mqDescriptor;