Skip to content
Snippets Groups Projects
Commit 2f3b6b53 authored by Axel Naumann's avatar Axel Naumann
Browse files

html/src/THtml.cxx

Skip (synthesized) tuples; fixes roottest @ C++14.
parent 3adf0af5
No related branches found
No related tags found
No related merge requests found
...@@ -1599,6 +1599,8 @@ void THtml::CreateListOfClasses(const char* filter) ...@@ -1599,6 +1599,8 @@ void THtml::CreateListOfClasses(const char* filter)
if (strstr(cname, "__gnu_cxx::")) continue; if (strstr(cname, "__gnu_cxx::")) continue;
// Work around ROOT-6016 // Work around ROOT-6016
if (!strcmp(cname, "timespec")) continue; if (!strcmp(cname, "timespec")) continue;
// "tuple"s are synthetic in the interpreter
if (!strncmp(cname, "tuple<", 6)) continue;
// get class & filename - use TROOT::GetClass, as we also // get class & filename - use TROOT::GetClass, as we also
// want those classes without decl file name! // want those classes without decl file name!
......
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