diff options
author | John Hodge <tpg@mutabah.net> | 2016-03-18 13:06:35 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-03-18 13:06:35 +0800 |
commit | 629fa5d38be99066f0fdb664796e9f7c6aea49ba (patch) | |
tree | 7c27ce31fcf97811ae3fde81f19f132009d51353 /src/ast/provided_module.cpp | |
parent | 28e67c7ed47e9b3891f5dc72de46edf3a3b94a6e (diff) | |
download | mrust-629fa5d38be99066f0fdb664796e9f7c6aea49ba.tar.gz |
AST - Switch impl blocks to contain `Item`s (merges code)
Diffstat (limited to 'src/ast/provided_module.cpp')
-rw-r--r-- | src/ast/provided_module.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ast/provided_module.cpp b/src/ast/provided_module.cpp index 99c86d3c..e36784f0 100644 --- a/src/ast/provided_module.cpp +++ b/src/ast/provided_module.cpp @@ -15,7 +15,6 @@ void AST_InitProvidedModule() fields.push_back( AST::StructItem(AST::MetaItems(), false, "", TypeRef(TypeRef::TagUnsizedArray(), Span(), TypeRef(Span(), CORETYPE_U8))) ); g_compiler_module.add_struct(true, "str", AST::Struct(AST::GenericParams(), mv$(fields)), AST::MetaItems()); - // TODO: Defer this until AFTER AST_InitProvidedModule_Impls(); } |