Commit 9238e342 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 735767 - [PATCH] Fix potential copy and paste issue in vhdlparser/VhdlParser.cc

parent 92eb2360
......@@ -5579,7 +5579,7 @@ if(tok)
s5=tok->image.c_str();
if(tok1)
s3=tok->image.data();
s3=tok1->image.data();
if(tok2)
s3+=":=";
......
......@@ -1402,7 +1402,7 @@ QCString interface_variable_declaration() : {Token *tok=0;Token *tok1=0;Token *
s5=tok->image.c_str();
if(tok1)
s3=tok->image.data();
s3=tok1->image.data();
if(tok2)
s3+=":=";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment