From e6d8e650b591e1e495822de356661e37a729f745 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Mon, 2 Jul 2018 22:46:33 -0700 Subject: Allow default move semantics --- src/Uri.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/Uri.cpp b/src/Uri.cpp index 2d549c2..01f5141 100644 --- a/src/Uri.cpp +++ b/src/Uri.cpp @@ -580,6 +580,8 @@ namespace Uri { }; Uri::~Uri() = default; + Uri::Uri(Uri&&) = default; + Uri& Uri::operator=(Uri&&) = default; Uri::Uri() : impl_(new Impl) -- cgit v1.2.3