vhdlpp: Minor fix for ReportStmt::write_to_stream.

This commit is contained in:
Maciej Suminski 2015-12-10 10:42:59 +01:00
parent 3b310e8227
commit 9276515e19
1 changed files with 1 additions and 2 deletions

View File

@ -524,9 +524,8 @@ int ReportStmt::emit(ostream&out, Entity*ent, ScopeBase*scope)
void ReportStmt::write_to_stream(std::ostream&fd)
{
fd << "report \"";
fd << "report ";
msg_->write_to_stream(fd);
fd << "\"" << std::endl;
fd << "severity ";
switch(severity_)