Describe the bug
\hideinheritancegraph seems to not-hide the inheritance graph both in CPP and Python
Expected behavior
Adding \hideinheritancegraph to the comment block should output html without inheritance graph
To Reproduce
Install graphviz, add HAVE_DOT = YES to the default doxygen configuration file and run doxygen on the following code
Supplied a self contained example that reproduces the issue: doxytest.zip
#include <string>
/**
\class ClassBase
\hideinheritancegraph
\brief This is the base class that does nothing
*/
class ClassBase
{
std::string getName() { return "gles";}
};
class ClassDerivedA : public ClassBase{
};
class ClassDerivedB : public ClassBase{
};
Version
1.9.3 from ubuntu 22.03 official repository (jammy) and 1.10 locally compiled (latest commit).
Platform: Ubuntu 22.04.3 LTS
Architecture: 64 bit