diff options
author | albert-github <albert.tests@gmail.com> | 2018-07-20 12:30:03 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-07-20 12:30:03 (GMT) |
commit | 5088fb700cd0bb4a9ce676ae235d48586229e1ba (patch) | |
tree | ba2ac8c185013c4083b8f9354243cf394e41b49c /src/classdef.h | |
parent | 3e310e8d977ab9a3341c6d40336337f530ed9e4c (diff) | |
download | Doxygen-5088fb700cd0bb4a9ce676ae235d48586229e1ba.zip Doxygen-5088fb700cd0bb4a9ce676ae235d48586229e1ba.tar.gz Doxygen-5088fb700cd0bb4a9ce676ae235d48586229e1ba.tar.bz2 |
Bug 648180 - Fortran: tagfile.tag:789: warning: Unknown compound attribute `type' found!
In Fortran the keyword 'type' is used that in the context of the tag file is 'struct'.
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/classdef.h b/src/classdef.h index b169221..12fcd93 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -266,6 +266,9 @@ class ClassDef : public Definition /** Returns TRUE if this class is implemented in Objective-C */ bool isObjectiveC() const; + /** Returns TRUE if this class is implemented in Fortran */ + bool isFortran() const; + /** Returns TRUE if this class is implemented in C# */ bool isCSharp() const; |