summaryrefslogtreecommitdiff
path: root/include/value.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/value.h')
-rw-r--r--include/value.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/value.h b/include/value.h
index 7c9511d74d..c017bcbd27 100644
--- a/include/value.h
+++ b/include/value.h
@@ -61,13 +61,13 @@ class value
{
public:
//Constructors
- value() {}
- explicit value(std::unique_ptr<tag>&& t);
+ value() noexcept {}
+ explicit value(std::unique_ptr<tag>&& t) noexcept;
explicit value(tag&& t);
//Moving
- value(value&&) = default;
- value& operator=(value&&) = default;
+ value(value&&) noexcept = default;
+ value& operator=(value&&) noexcept = default;
//Copying
explicit value(const value& rhs);