summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index 6b86afb..b1c12a6 100644
--- a/src/util.h
+++ b/src/util.h
@@ -199,7 +199,7 @@ int guessSection(const char *name);
inline bool isId(int c)
{
- return c=='_' || isalnum(c) || c>=128 || c<0;
+ return c=='_' || c>=128 || c<0 || isalnum(c);
}
QCString removeRedundantWhiteSpace(const QCString &s);