diff options
author | albert-github <albert.tests@gmail.com> | 2019-02-06 17:57:52 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-02-06 17:57:52 (GMT) |
commit | d763a8c1f6c73982ae83ddd3b390528b3e00770e (patch) | |
tree | 7a52890fa554ef4f23223746c7c35bf9ad233866 /src/doxygen.cpp | |
parent | 2802e2b4ee8158dba3f3584037e99907c6db7ec4 (diff) | |
download | Doxygen-d763a8c1f6c73982ae83ddd3b390528b3e00770e.zip Doxygen-d763a8c1f6c73982ae83ddd3b390528b3e00770e.tar.gz Doxygen-d763a8c1f6c73982ae83ddd3b390528b3e00770e.tar.bz2 |
Bug 766508 - missing comments of overridden methods
Analogous to python also for PHP and Java all functions are by default virtual (for python fix see problem #6566 and fix #6570)
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 08d3bc7..3823950 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -7818,6 +7818,7 @@ static void computeMemberRelations() // ); if (md!=bmd && bmcd && mcd && bmcd!=mcd && (bmd->virtualness()!=Normal || bmd->getLanguage()==SrcLangExt_Python || + bmd->getLanguage()==SrcLangExt_Java || bmd->getLanguage()==SrcLangExt_PHP || bmcd->compoundType()==ClassDef::Interface || bmcd->compoundType()==ClassDef::Protocol ) && |