Skip to content
Snippets Groups Projects
Commit 90fe45e3 authored by Olivier Couet's avatar Olivier Couet
Browse files

Class name like ROOT::Experimental::TDataFrame were not parsed correctly for the list of libraries

parent efd142b3
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ void libs(TString classname)
const char *libname;
// Find in which library classname sits
classname.ReplaceAll("_1",":");
libname = gInterpreter->GetClassSharedLibs(classname.Data());
if(!libname) return;
......
......@@ -17,7 +17,7 @@ esac
echo '#!/bin/sh' > listofclass.sh
echo '' >> listofclass.sh
grep -s "Collaboration diagram for" $DOXYGEN_OUTPUT_DIRECTORY/html/classT*.html | sed -e "s/.html:.*$//" | sed -e "s/^.*html\/class/\.\/makelibs.sh /" >> listofclass.sh
grep -s "Collaboration diagram for" $DOXYGEN_OUTPUT_DIRECTORY/html/class*.html | sed -e "s/.html:.*$//" | sed -e "s/^.*html\/class/\.\/makelibs.sh /" >> listofclass.sh
chmod +x ./listofclass.sh
./listofclass.sh
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