diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-30 19:07:40 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-30 19:07:40 (GMT) |
commit | d6c2464982e5b1c027cdde0400822c3b2fc7fd41 (patch) | |
tree | 1af9ec39b9e7ff0cb9f87ec777a114d0b9ad5ab1 /src/markdown.cpp | |
parent | 94ea18e60c50db14f25eda642be020fac5917b3c (diff) | |
download | Doxygen-d6c2464982e5b1c027cdde0400822c3b2fc7fd41.zip Doxygen-d6c2464982e5b1c027cdde0400822c3b2fc7fd41.tar.gz Doxygen-d6c2464982e5b1c027cdde0400822c3b2fc7fd41.tar.bz2 |
Bug 735620 - [PATCH] Remove not needed variable caching in src/markdown.cpp
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r-- | src/markdown.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp index cc86af4..12d72ff 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -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; |