From e420eca2b244c303af51534ab09632045a186b21 Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Thu, 3 Oct 2024 08:07:05 -0500 Subject: Cleanup from clang-tidy. --- include/fud_string.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/fud_string.hpp') diff --git a/include/fud_string.hpp b/include/fud_string.hpp index 1a38d43..1939c7d 100644 --- a/include/fud_string.hpp +++ b/include/fud_string.hpp @@ -38,11 +38,11 @@ class String { explicit String(const utf8* cString); explicit String(const char* cString); String(const String& rhs); - String(String&& rhs); + String(String&& rhs) noexcept; ~String(); String& operator=(const String& rhs); - String& operator=(String&& rhs); + String& operator=(String&& rhs) noexcept; [[nodiscard]] constexpr size_t length() const { -- cgit v1.2.3