diff options
author | David Robillard <d@drobilla.net> | 2019-12-08 19:29:49 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-12-08 20:59:06 +0100 |
commit | 43c8fb044351af27b05bba20f36bbfce583ddeb2 (patch) | |
tree | 05178c43da65d4964d42bb55b91ca5c294fa894f /ingen | |
parent | 1920eb87c72de856e957fc3093f28cea62d72063 (diff) | |
download | ingen-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.hpp | 4 |
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(); |