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 /src/CharacterSet.hpp | |
parent | 54881d9f90acfb1676b3eebb0feb17811d1cc4bf (diff) |
Refactoring: make application of rule of zero/five consistent
Diffstat (limited to 'src/CharacterSet.hpp')
-rw-r--r-- | src/CharacterSet.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CharacterSet.hpp b/src/CharacterSet.hpp index 657c89d..ba271f6 100644 --- a/src/CharacterSet.hpp +++ b/src/CharacterSet.hpp @@ -21,11 +21,11 @@ namespace Uri { class CharacterSet { // Lifecycle management public: - ~CharacterSet(); + ~CharacterSet() noexcept; CharacterSet(const CharacterSet&); - CharacterSet(CharacterSet&&); + CharacterSet(CharacterSet&&) noexcept; CharacterSet& operator=(const CharacterSet&); - CharacterSet& operator=(CharacterSet&&); + CharacterSet& operator=(CharacterSet&&) noexcept; // Methods public: |