diff options
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) \ |