From 4c82352229dd3b27af5d9e9d5d34f3fc06b6f426 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Tue, 15 Mar 2016 17:33:11 +0100 Subject: [PATCH] vhdlpp: Corrected the comment mark from the previous commit. --- vhdlpp/subprogram_emit.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vhdlpp/subprogram_emit.cc b/vhdlpp/subprogram_emit.cc index 0b6f27f11..0a38c58f2 100644 --- a/vhdlpp/subprogram_emit.cc +++ b/vhdlpp/subprogram_emit.cc @@ -45,7 +45,7 @@ int SubprogramBody::emit_package(ostream&fd) const if(const Expression*init = var->peek_init_expr()) { fd << cur->first << " = "; init->emit(fd, NULL, NULL); - fd << "; -- automatic function emulation" << endl; + fd << "; // automatic function emulation" << endl; } }