summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-12-08 19:29:49 +0100
committerDavid Robillard <d@drobilla.net>2019-12-08 20:59:06 +0100
commit43c8fb044351af27b05bba20f36bbfce583ddeb2 (patch)
tree05178c43da65d4964d42bb55b91ca5c294fa894f /ingen
parent1920eb87c72de856e957fc3093f28cea62d72063 (diff)
downloadingen-43c8fb044351af27b05bba20f36bbfce583ddeb2.tar.gz
ingen-43c8fb044351af27b05bba20f36bbfce583ddeb2.tar.bz2
ingen-43c8fb044351af27b05bba20f36bbfce583ddeb2.zip
Cleanup: Add missing copy and assignment method declarations
Diffstat (limited to 'ingen')
-rw-r--r--ingen/URI.hpp4
1 files changed, 2 insertions, 2 deletions
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();