Skip to content

Commit 9ad82fd

Browse files
committed
[Math] Don't exclude TMath::Limits<Long64_t> functions from LinkDef
Some link pragmas were commented out because they supposedly don't work with CINT. This is not applicable anymore. One might consider to just remove these pragmas because `link C++ function` is ignored now, but for consistency with the previous lines that list the functions for different types, I would suggest to keep it.
1 parent 26c1500 commit 9ad82fd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

math/mathcore/inc/LinkDef1.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@
3535
#pragma link C++ function TMath::Limits<Int_t>::Max();
3636
#pragma link C++ function TMath::Limits<Int_t>::Min();
3737

38-
// exclude these since they do not work in Cling
39-
//#pragma link C++ function TMath::Limits<Long64_t>::Max();
40-
//#pragma link C++ function TMath::Limits<Long64_t>::Min();
38+
#pragma link C++ function TMath::Limits<Long64_t>::Max();
39+
#pragma link C++ function TMath::Limits<Long64_t>::Min();
4140

4241
#pragma link C++ function TMath::MinElement(Long64_t, const Short_t*);
4342
#pragma link C++ function TMath::MinElement(Long64_t, const Int_t*);

0 commit comments

Comments
 (0)