diff options
author | John Hodge <tpg@mutabah.net> | 2015-09-06 18:08:38 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2015-09-06 18:08:38 +0800 |
commit | 03e211d6eeb3f8f3c6f0b22f77c2074e81443952 (patch) | |
tree | 5e07ee69f9020e829e79fb700fa2f35e602b0bcb /src/ast/provided_module.cpp | |
parent | 0b6d7c51056ed7b8eb25af6041c4feb5e6e23051 (diff) | |
download | mrust-03e211d6eeb3f8f3c6f0b22f77c2074e81443952.tar.gz |
Rough span support
Diffstat (limited to 'src/ast/provided_module.cpp')
-rw-r--r-- | src/ast/provided_module.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast/provided_module.cpp b/src/ast/provided_module.cpp index 460b7494..fc006020 100644 --- a/src/ast/provided_module.cpp +++ b/src/ast/provided_module.cpp @@ -23,11 +23,11 @@ void AST_InitProvidedModule() void AST_InitProvidedModule_Impls() { if( !g_copy_marker_path.is_valid() ) { - g_copy_marker_path = AST::Path( {AST::PathNode("marker"),AST::PathNode("Copy")} ); + g_copy_marker_path = AST::Path( "", {AST::PathNode("marker"),AST::PathNode("Copy")} ); } if( !g_sized_marker_path.is_valid() ) { - g_sized_marker_path = AST::Path( {AST::PathNode("marker"),AST::PathNode("Sized")} ); + g_sized_marker_path = AST::Path( "", {AST::PathNode("marker"),AST::PathNode("Sized")} ); } #define impl(trait, type) \ |