Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
TProtoClass Extend error message.
  • Loading branch information
pcanal committed Oct 26, 2020
commit 79c56a7fa850607ecf47840a12d458f1e6d6202b
4 changes: 2 additions & 2 deletions core/meta/src/TProtoClass.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Bool_t TProtoClass::FillTClass(TClass* cl) {
return kFALSE;
}
if (cl->fHasRootPcmInfo) {
Fatal("FillTClass", "Filling TClass %s a second time", cl->GetName());
Fatal("FillTClass", "Filling TClass %s a second time but none of the info is in the TClass instance ... ", cl->GetName());
}
if (gDebug > 1) Info("FillTClass","Loading TProtoClass for %s - %s",cl->GetName(),GetName());

Expand Down Expand Up @@ -269,7 +269,7 @@ Bool_t TProtoClass::FillTClass(TClass* cl) {
if (cl->fSizeof != -1 && cl->fSizeof != fSizeof) {
Error("FillTClass",
"For %s the sizeof provided by GenerateInitInstance (%d) is different from the one provided by TProtoClass (%d)",
cl->GetName(), cl->fSizeof, cl->fSizeof);
cl->GetName(), cl->fSizeof, fSizeof);
} else
cl->fSizeof = fSizeof;
cl->fCheckSum = fCheckSum;
Expand Down