summaryrefslogtreecommitdiff
path: root/idlc/inc/astscope.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/inc/astscope.hxx')
-rw-r--r--idlc/inc/astscope.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/idlc/inc/astscope.hxx b/idlc/inc/astscope.hxx
index 2e7e258e2312..237b5d0bb82a 100644
--- a/idlc/inc/astscope.hxx
+++ b/idlc/inc/astscope.hxx
@@ -35,6 +35,11 @@ public:
AstScope(NodeType nodeType);
virtual ~AstScope();
+ AstScope(AstScope const&) = default;
+ AstScope(AstScope&&) = default;
+ AstScope& operator=(AstScope const&) = default;
+ AstScope& operator=(AstScope&&) = default;
+
NodeType getScopeNodeType() const { return m_nodeType; }
AstDeclaration* addDeclaration(AstDeclaration* pDecl);