This makes doxygen treat static inline functions like other inline functions.

--- src/scanner.l	Sat Mar  3 19:52:51 2001
+++ src/scanner.l	Thu Apr  5 08:20:13 2001
@@ -654,7 +654,8 @@
   					  lineCount();
   					}
 <FindMembers>{B}*"static"{BN}+     	{ //current->type += " static ";
-  					  current->stat = TRUE;
+                                          if((current->memSpec & Entry::Inline) == 0)
+  					    current->stat = TRUE;
 					  lineCount();
 					}
 <FindMembers>{B}*"extern"{BN}+		{
@@ -667,6 +668,7 @@
 					  lineCount();
 					}
 <FindMembers>{B}*"inline"{BN}+		{ current->memSpec|=Entry::Inline;
+  					  current->stat = FALSE;
                                           lineCount(); 
                                         }
 <FindMembers>{B}*"mutable"{BN}+		{ current->memSpec|=Entry::Mutable;

