Skip to content

Commit 5125ee4

Browse files
committed
SMV: use module base name in parse tree output
The smv:: prefix does not add information, hence it is removed.
1 parent 5c83c53 commit 5125ee4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/smvlang/smv_parse_tree.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void smv_parse_treet::show(std::ostream &out) const
103103
{
104104
auto &module = module_it.second;
105105

106-
out << "Module: " << module.name << std::endl << std::endl;
106+
out << "Module: " << module.base_name << '\n' << '\n';
107107

108108
out << " PARAMETERS:\n";
109109

0 commit comments

Comments
 (0)