diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-24 21:55:06 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-24 21:55:06 +0800 |
commit | 23cba420f497b5da5b0a63f078cea2ef2291078a (patch) | |
tree | 96d60ee57ac0014f3a359b94a0ae3db94bae7acd /src/ast/ast.cpp | |
parent | 74868acb8e3db00cbab565abd6fbd76cbf763674 (diff) | |
download | mrust-23cba420f497b5da5b0a63f078cea2ef2291078a.tar.gz |
AST - Spans, spans everywhere!
Diffstat (limited to 'src/ast/ast.cpp')
-rw-r--r-- | src/ast/ast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/ast.cpp b/src/ast/ast.cpp index 90fd8286..804b7cac 100644 --- a/src/ast/ast.cpp +++ b/src/ast/ast.cpp @@ -24,7 +24,7 @@ namespace { MetaItems MetaItems::clone() const
{
- return MetaItems( clone_mivec(m_items) );
+ return MetaItems( m_span, clone_mivec(m_items) );
}
void MetaItems::push_back(MetaItem i)
|