mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-03 02:25:57 +08:00
clang-format and clang-tidy fixes for b36e4736
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user