Skip to content
Snippets Groups Projects
Commit 920738cb authored by Philippe Canal's avatar Philippe Canal
Browse files

[In part because of the lack of module,] the ClassInfo for STL collection is...

[In part because of the lack of module,] the ClassInfo for STL collection is not always present when it could/should, so we also need to filter out the header file from the compiler based on their name


git-svn-id: http://root.cern.ch/svn/root/trunk@48468 27541ba8-7e3a-0410-8455-c3a389f83636
parent 9e3861ce
No related branches found
No related tags found
No related merge requests found
......@@ -1633,6 +1633,18 @@ void THtml::CreateListOfClasses(const char* filter)
strstr(classPtr->GetDeclFileName(), "include/c++/") ||
!strncmp(classPtr->GetDeclFileName(), "/usr/include",12)))
continue;
if (classPtr->GetDeclFileName() && (
!strcmp(classPtr->GetDeclFileName(), "vector") ||
!strcmp(classPtr->GetDeclFileName(), "list") ||
!strcmp(classPtr->GetDeclFileName(), "deque") ||
!strcmp(classPtr->GetDeclFileName(), "map") ||
!strcmp(classPtr->GetDeclFileName(), "valarray") ||
!strcmp(classPtr->GetDeclFileName(), "set")||
!strcmp(classPtr->GetDeclFileName(), "stdlib.h") ) )
{
// Those are STL header, just ignore.
continue;
}
if (skipROOTClasses) {
if (classPtr->GetSharedLibs() && classPtr->GetSharedLibs()[0]) {
std::string lib(classPtr->GetSharedLibs());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment