diff options
author | Richard Walters <rwalters@digitalstirling.com> | 2018-07-23 21:42:00 -0700 |
---|---|---|
committer | Richard Walters <rwalters@digitalstirling.com> | 2018-07-23 21:42:00 -0700 |
commit | a09abace8d4ec0d2fc9bb65493dfae7b7ce8e0fe (patch) | |
tree | f264e91c74d2e033c4e8474e377c9af36ac5c6f9 /include | |
parent | c2dade7a5a0b4e8317e8eb6f249cef91eb54cc1a (diff) |
Add copy constructor and assignment operator
Diffstat (limited to 'include')
-rw-r--r-- | include/Uri/Uri.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Uri/Uri.hpp b/include/Uri/Uri.hpp index f531d09..41a70f5 100644 --- a/include/Uri/Uri.hpp +++ b/include/Uri/Uri.hpp @@ -24,9 +24,9 @@ namespace Uri { // Lifecycle management public: ~Uri(); - Uri(const Uri&) = delete; + Uri(const Uri& other); Uri(Uri&&); - Uri& operator=(const Uri&) = delete; + Uri& operator=(const Uri& other); Uri& operator=(Uri&&); // Public methods |