From b74108e1a40f314a7ebeefe7432f22a54bd14604 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Tue, 2 Nov 2021 02:07:19 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for b36e4736 --- operations_on_datastructures/circular_linked_list.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operations_on_datastructures/circular_linked_list.cpp b/operations_on_datastructures/circular_linked_list.cpp index 2ddb626db..8cc93aec5 100644 --- a/operations_on_datastructures/circular_linked_list.cpp +++ b/operations_on_datastructures/circular_linked_list.cpp @@ -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; }