diff options
author | Richard Walters <rwalters@digitalstirling.com> | 2018-08-09 12:52:51 -0700 |
---|---|---|
committer | Richard Walters <rwalters@digitalstirling.com> | 2018-08-09 12:52:51 -0700 |
commit | 65669919341ab2940f00dc32ff622f00c6c2f6da (patch) | |
tree | 7376bfd85ef553d178eb3279ab06b5ed1caf2ad5 /include | |
parent | 54881d9f90acfb1676b3eebb0feb17811d1cc4bf (diff) |
Refactoring: make application of rule of zero/five consistent
Diffstat (limited to 'include')
-rw-r--r-- | include/Uri/Uri.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/Uri/Uri.hpp b/include/Uri/Uri.hpp index 41a70f5..82b426f 100644 --- a/include/Uri/Uri.hpp +++ b/include/Uri/Uri.hpp @@ -23,11 +23,11 @@ namespace Uri { class Uri { // Lifecycle management public: - ~Uri(); + ~Uri() noexcept; Uri(const Uri& other); - Uri(Uri&&); + Uri(Uri&&) noexcept; Uri& operator=(const Uri& other); - Uri& operator=(Uri&&); + Uri& operator=(Uri&&) noexcept; // Public methods public: |