mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:37:35 +00:00
Kernel: Some clang-tidy fixes in Bus/VirtIO
This commit is contained in:
parent
471b38db68
commit
9be409585c
5 changed files with 11 additions and 9 deletions
|
@ -116,8 +116,8 @@ public:
|
|||
|
||||
QueueChain(QueueChain&& other)
|
||||
: m_queue(other.m_queue)
|
||||
, m_start_of_chain_index(other.m_start_of_chain_index)
|
||||
, m_end_of_chain_index(other.m_end_of_chain_index)
|
||||
, m_start_of_chain_index(move(other.m_start_of_chain_index))
|
||||
, m_end_of_chain_index(move(other.m_end_of_chain_index))
|
||||
, m_chain_length(other.m_chain_length)
|
||||
, m_chain_has_writable_pages(other.m_chain_has_writable_pages)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue