remove module name from DirEntry

This commit is contained in:
Mark Thom
2018-10-02 20:37:15 -06:00
parent 5792990dff
commit 61536d2004
4 changed files with 22 additions and 27 deletions

View File

@@ -195,8 +195,8 @@ macro_rules! return_from_clause {
}
macro_rules! dir_entry {
($idx:expr, $module_name:expr) => (
CodePtr::Local(LocalCodePtr::DirEntry($idx, $module_name))
($idx:expr) => (
CodePtr::Local(LocalCodePtr::DirEntry($idx))
)
}