diff options
author | albert-github <albert.tests@gmail.com> | 2018-10-22 13:03:48 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-10-22 13:03:48 (GMT) |
commit | f56ce241a09dff819c194be4585aae99f35d85f1 (patch) | |
tree | 24bfee5c8efd1b11d7428c01bd9adc49f341d717 /src/doxygen.cpp | |
parent | b57e0be90a8209574e4033aab0f82ce8313e4b34 (diff) | |
download | Doxygen-f56ce241a09dff819c194be4585aae99f35d85f1.zip Doxygen-f56ce241a09dff819c194be4585aae99f35d85f1.tar.gz Doxygen-f56ce241a09dff819c194be4585aae99f35d85f1.tar.bz2 |
issue_6566: INHERIT_DOCS not working for python
methods in Python are always "virtual" (but there is no way to signal it).
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 13c60fb..7eb7968 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -7697,7 +7697,7 @@ static void computeMemberRelations() // bmcd->name().data(),bmd->name().data(),bmd // ); if (md!=bmd && bmcd && mcd && bmcd!=mcd && - (bmd->virtualness()!=Normal || + (bmd->virtualness()!=Normal || bmd->getLanguage()==SrcLangExt_Python || bmcd->compoundType()==ClassDef::Interface || bmcd->compoundType()==ClassDef::Protocol ) && |