diff options
Diffstat (limited to 'src/parse')
-rw-r--r-- | src/parse/paths.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parse/paths.cpp b/src/parse/paths.cpp index 2c97075e..6b84ec0b 100644 --- a/src/parse/paths.cpp +++ b/src/parse/paths.cpp @@ -156,9 +156,8 @@ AST::Path Parse_Path(TokenStream& lex, bool is_abs, eParsePathGenericMode generi params = ::AST::PathParams { {}, ::std::vector<TypeRef> { TypeRef(TypeRef::TagTuple(), lex.end_span(ps), ::std::move(args)) }, - { ::std::make_pair( (::std::string)"Output", mv$(ret_type) ) } + { ::std::make_pair( ::std::string("Output"), mv$(ret_type) ) } }; - // TODO: Use 'ret_type' as an associated type bound GET_TOK(tok, lex); } |