From 43c8fb044351af27b05bba20f36bbfce583ddeb2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 8 Dec 2019 19:29:49 +0100 Subject: Cleanup: Add missing copy and assignment method declarations --- ingen/URI.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ingen') diff --git a/ingen/URI.hpp b/ingen/URI.hpp index 91096ba0..2d2f2aad 100644 --- a/ingen/URI.hpp +++ b/ingen/URI.hpp @@ -47,8 +47,8 @@ public: URI(const URI& uri); URI& operator=(const URI& uri); - URI(URI&& uri); - URI& operator=(URI&& uri); + URI(URI&& uri) noexcept; + URI& operator=(URI&& uri) noexcept; ~URI(); -- cgit v1.2.1