Skip to content

Commit

Permalink
Bug 735620 - [PATCH] Remove not needed variable caching in src/markdo…
Browse files Browse the repository at this point in the history
…wn.cpp
  • Loading branch information
Dimitri van Heesch committed Aug 30, 2014
1 parent 94ea18e commit d6c2464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown.cpp
Expand Up @@ -1540,7 +1540,7 @@ static bool isTableBlock(const char *data,int size)

i+=ret; // goto next line
int cc2;
ret = findTableColumns(data+i,size-i,start,end,cc2);
findTableColumns(data+i,size-i,start,end,cc2);

//printf("isTableBlock: %d\n",cc1==cc2);
return cc1==cc2;
Expand Down

0 comments on commit d6c2464

Please sign in to comment.