Skip to content

Commit

Permalink
Bug 643618 - Fortran: variable with name "type" confuses Doxygen
Browse files Browse the repository at this point in the history
Most problems were solved in version 1.8.5 but the underscore character (_) had not been incorporated, this is done with this patch.
  • Loading branch information
albert-github committed Mar 9, 2014
1 parent 8eeaae0 commit 17c5b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fortranscanner.l
Expand Up @@ -567,7 +567,7 @@ SCOPENAME ({ID}{BS}"::"{BS})*

/*------- type definition -------------------------------------------------------------------------------*/

<Start,ModuleBody>^{BS}type/[^a-z0-9] {
<Start,ModuleBody>^{BS}type/[^a-z0-9_] {
if(YY_START == Start)
{
addModule(NULL);
Expand Down

0 comments on commit 17c5b61

Please sign in to comment.