diff options
Diffstat (limited to 'src/parse/root.cpp')
-rw-r--r-- | src/parse/root.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/root.cpp b/src/parse/root.cpp index a64105c7..1e57227e 100644 --- a/src/parse/root.cpp +++ b/src/parse/root.cpp @@ -906,7 +906,7 @@ void Parse_Impl(TokenStream& lex, AST::Module& mod, AST::MetaItems attrs, bool i if( GET_TOK(tok, lex) == TOK_DOUBLE_DOT )
{
// Default impl
- impl_type = TypeRef();
+ impl_type = TypeRef(TypeRef::TagInvalid(), lex.getPosition());
}
else
{
|