From 9276515e1964a63b1be7c6d12f02cb6459226834 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Thu, 10 Dec 2015 10:42:59 +0100 Subject: [PATCH] vhdlpp: Minor fix for ReportStmt::write_to_stream. --- vhdlpp/sequential_emit.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vhdlpp/sequential_emit.cc b/vhdlpp/sequential_emit.cc index c5309c039..2f09ad0a6 100644 --- a/vhdlpp/sequential_emit.cc +++ b/vhdlpp/sequential_emit.cc @@ -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_)