aboutsummaryrefslogtreecommitdiff
path: root/src/CharacterSet.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/CharacterSet.hpp')
-rw-r--r--src/CharacterSet.hpp6
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: