Skip to content
Snippets Groups Projects
Commit 44f36053 authored by Bianca Cristina Cristescu's avatar Bianca Cristina Cristescu Committed by Axel Naumann
Browse files

Remove validation of name for TListOf* upon loading the list for speedup.

parent 5cddfd10
No related branches found
No related tags found
No related merge requests found
......@@ -375,8 +375,7 @@ void TListOfDataMembers::Load()
DataMemberInfo_t *t = gInterpreter->DataMemberInfo_Factory(info);
while (gInterpreter->DataMemberInfo_Next(t)) {
// if the name cannot be obtained there is no use to put in list
if (gInterpreter->DataMemberInfo_IsValid(t) && gInterpreter->DataMemberInfo_Name(t)) {
if (gInterpreter->DataMemberInfo_IsValid(t)) {
// Get will check if there is already there or create a new one
// (or re-use a previously unloaded version).
Get(t);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment