Fix dump of primitive CHARACTER types.

This commit is contained in:
Stephen Williams 2013-05-12 15:31:48 -07:00
parent 7f7decde03
commit 13be45bd73
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ void VTypePrimitive::show(ostream&out) const
case BIT:
out << "BIT";
break;
case CHARACTER:
out << "CHARACTER";
break;
case INTEGER:
out << "INTEGER";
break;