Skip to content

Commit

Permalink
Bug 735767 - [PATCH] Fix potential copy and paste issue in vhdlparser…
Browse files Browse the repository at this point in the history
…/VhdlParser.cc
  • Loading branch information
Dimitri van Heesch committed Sep 23, 2014
1 parent 92eb236 commit 9238e34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vhdlparser/VhdlParser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5579,7 +5579,7 @@ if(tok)
s5=tok->image.c_str();

if(tok1)
s3=tok->image.data();
s3=tok1->image.data();

if(tok2)
s3+=":=";
Expand Down
2 changes: 1 addition & 1 deletion vhdlparser/vhdlparser.jj
Original file line number Diff line number Diff line change
Expand Up @@ -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+=":=";
Expand Down

0 comments on commit 9238e34

Please sign in to comment.