diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2016-04-09 17:05:02 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2016-04-09 17:05:02 (GMT) |
commit | dff2af357cdf877355768b7990a345af60700110 (patch) | |
tree | 7d162b578d176ff5e4cde1acb0fa6f5e2cb64d35 | |
parent | 4c03fcc7b11fcf57e40fe1568132e62e7c4d5ef1 (diff) | |
parent | 0e45c10d7db6dc82aa0828df7e30ec4c8c5a1f97 (diff) | |
download | Doxygen-dff2af357cdf877355768b7990a345af60700110.zip Doxygen-dff2af357cdf877355768b7990a345af60700110.tar.gz Doxygen-dff2af357cdf877355768b7990a345af60700110.tar.bz2 |
Merge pull request #467 from albert-github/feature/bug_764515
Bug 764515 - doxygen crashes no resolved
-rw-r--r-- | src/scanner.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/scanner.l b/src/scanner.l index 6e94a20..6c69224 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -1977,6 +1977,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) current->section=Entry::USINGDECL_SEC; } current_root->addSubEntry(current); + previous = current; current = new Entry ; initEntry(); BEGIN(Using); |