mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
clang-format and clang-tidy fixes for b36e4736
This commit is contained in:
parent
b36e4736f5
commit
b74108e1a4
@ -74,7 +74,7 @@ class CircularLinkedList {
|
||||
root = copy.root;
|
||||
end = copy.end;
|
||||
}
|
||||
CircularLinkedList(CircularLinkedList&& source) {
|
||||
CircularLinkedList(CircularLinkedList&& source) noexcept {
|
||||
root = source.root;
|
||||
end = source.end;
|
||||
}
|
||||
@ -82,7 +82,7 @@ class CircularLinkedList {
|
||||
root = other.root;
|
||||
end = other.end;
|
||||
}
|
||||
CircularLinkedList& operator=(CircularLinkedList&& other) {
|
||||
CircularLinkedList& operator=(CircularLinkedList&& other) noexcept {
|
||||
root = other.root;
|
||||
end = other.end;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user