summaryrefslogtreecommitdiffstats
path: root/src/URI.cpp
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 /src/URI.cpp
parent1920eb87c72de856e957fc3093f28cea62d72063 (diff)
downloadingen-43c8fb044351af27b05bba20f36bbfce583ddeb2.tar.gz
ingen-43c8fb044351af27b05bba20f36bbfce583ddeb2.tar.bz2
ingen-43c8fb044351af27b05bba20f36bbfce583ddeb2.zip
Cleanup: Add missing copy and assignment method declarations
Diffstat (limited to 'src/URI.cpp')
-rw-r--r--src/URI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/URI.cpp b/src/URI.cpp
index 7e3e1dba..5222c055 100644
--- a/src/URI.cpp
+++ b/src/URI.cpp
@@ -80,7 +80,7 @@ URI::operator=(const URI& uri)
return *this;
}
-URI::URI(URI&& uri)
+URI::URI(URI&& uri) noexcept
: _node(uri._node)
, _uri(uri._uri)
{
@@ -89,7 +89,7 @@ URI::URI(URI&& uri)
}
URI&
-URI::operator=(URI&& uri)
+URI::operator=(URI&& uri) noexcept
{
_node = uri._node;
_uri = uri._uri;