diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-02-04 19:54:47 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-02-04 19:54:47 (GMT) |
commit | 88c84f0affadf69d1813d1a971692a5097f8870a (patch) | |
tree | 7e6fbbe8ab93608561d5cd8866e206620e024124 | |
parent | d5383c8badf77a98f3e45d9764035103a529b317 (diff) | |
download | Doxygen-88c84f0affadf69d1813d1a971692a5097f8870a.zip Doxygen-88c84f0affadf69d1813d1a971692a5097f8870a.tar.gz Doxygen-88c84f0affadf69d1813d1a971692a5097f8870a.tar.bz2 |
Fixed constructor detection bug
-rw-r--r-- | src/scanner.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scanner.l b/src/scanner.l index 46ed1f1..4032a73 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -1,6 +1,6 @@ /***************************************************************************** * - * + * $Id$ * * Copyright (C) 1997-2002 by Dimitri van Heesch. * @@ -2284,7 +2284,7 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^'\\\n]{1,4}"'")) QCString tempName; static QRegExp re("operator[^a-z_A-Z0-9]"); if (tempArg==-1) tempName=current->name; else tempName=current->name.left(tempArg); - if ((current->type.isEmpty() && tempName.find(re)==-1) || + if (/*(current->type.isEmpty() && tempName.find(re)==-1) || */ current->type.left(8)=="typedef " ) { |