summaryrefslogtreecommitdiff
path: root/src/ast/ast.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/ast.hpp')
-rw-r--r--src/ast/ast.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast/ast.hpp b/src/ast/ast.hpp
index c0ab4b2f..504d3704 100644
--- a/src/ast/ast.hpp
+++ b/src/ast/ast.hpp
@@ -291,7 +291,7 @@ class ImplDef:
TypeRef m_type;
public:
ImplDef() {}
- ImplDef(ImplDef&&) noexcept = default;
+ ImplDef(ImplDef&&) /*noexcept*/ = default;
ImplDef(MetaItems attrs, GenericParams params, Path trait_type, TypeRef impl_type):
m_attrs( move(attrs) ),
m_params( move(params) ),
@@ -329,7 +329,7 @@ class Impl:
::std::vector< ::std::pair< ::std::vector<TypeRef>, Impl > > m_concrete_impls;
public:
Impl() {}
- Impl(Impl&&) noexcept = default;
+ Impl(Impl&&) /*noexcept*/ = default;
Impl(MetaItems attrs, GenericParams params, TypeRef impl_type, Path trait_type):
m_def( move(attrs), move(params), move(trait_type), move(impl_type) )
{}