summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-02-04 19:54:47 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-02-04 19:54:47 (GMT)
commit1335cc7076d6a752c43c9a4eef958feef84d3edd (patch)
tree7e6fbbe8ab93608561d5cd8866e206620e024124 /src
parent3552dcb3031af16dd01cb36b3503f12255de8878 (diff)
downloadDoxygen-1335cc7076d6a752c43c9a4eef958feef84d3edd.zip
Doxygen-1335cc7076d6a752c43c9a4eef958feef84d3edd.tar.gz
Doxygen-1335cc7076d6a752c43c9a4eef958feef84d3edd.tar.bz2
Fixed constructor detection bug
Diffstat (limited to 'src')
-rw-r--r--src/scanner.l4
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 "
)
{