From 03e211d6eeb3f8f3c6f0b22f77c2074e81443952 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 6 Sep 2015 18:08:38 +0800 Subject: Rough span support --- src/ast/provided_module.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ast/provided_module.cpp') 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) \ -- cgit v1.2.3