Fix bug 795 858, printing "(null)" instead of empty string ""
This commit is contained in:
parent
cf76c25599
commit
01b8416f24
1 changed files with 1 additions and 1 deletions
|
|
@ -1847,7 +1847,7 @@ void value_t::print(std::ostream& _out,
|
|||
|
||||
switch (type()) {
|
||||
case VOID:
|
||||
out << "(null)";
|
||||
out << "";
|
||||
break;
|
||||
|
||||
case BOOLEAN:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue