Skip to content

Commit

Permalink
Fix a compilation error on MacOS and add two missing source file.
Browse files Browse the repository at this point in the history
Code generated with commit ba87cb5f65a2f7a32793eeb781f41a23adc6a7ff of
ROOT.jl-generator
  • Loading branch information
grasph committed Jul 28, 2024
1 parent 9c1c149 commit d490041
Show file tree
Hide file tree
Showing 3 changed files with 472 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deps/src/JlClasses_017.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,15 @@ struct JlTProfile2D: public Wrapper {
// signature to use in the veto list: Int_t TProfile2D::Fill(const char *, Double_t, Double_t, Double_t)
// defined in /home/pgras/.julia/conda/3/include/TProfile2D.h:105:22
t.method("Fill", static_cast<Int_t (TProfile2D::*)(const char *, Double_t, Double_t, Double_t) >(&TProfile2D::Fill));
t.method("Fill", [](TProfile2D& a, const char * arg0, Double_t arg1, Double_t arg2)->Int_t { return a.Fill(arg0, arg1, arg2); });
t.method("Fill", [](TProfile2D* a, const char * arg0, Double_t arg1, Double_t arg2)->Int_t { return a->Fill(arg0, arg1, arg2); });
t.method("Fill", [](TProfile2D& a, const char * arg0, Double_t arg1, Double_t arg2)->Int_t { return a.TProfile2D::Fill(arg0, arg1, arg2); });
t.method("Fill", [](TProfile2D* a, const char * arg0, Double_t arg1, Double_t arg2)->Int_t { return a->TProfile2D::Fill(arg0, arg1, arg2); });

DEBUG_MSG("Adding wrapper for Int_t TProfile2D::Fill(const char *, const char *, Double_t, Double_t) (" __HERE__ ")");
// signature to use in the veto list: Int_t TProfile2D::Fill(const char *, const char *, Double_t, Double_t)
// defined in /home/pgras/.julia/conda/3/include/TProfile2D.h:106:22
t.method("Fill", static_cast<Int_t (TProfile2D::*)(const char *, const char *, Double_t, Double_t) >(&TProfile2D::Fill));
t.method("Fill", [](TProfile2D& a, const char * arg0, const char * arg1, Double_t arg2)->Int_t { return a.Fill(arg0, arg1, arg2); });
t.method("Fill", [](TProfile2D* a, const char * arg0, const char * arg1, Double_t arg2)->Int_t { return a->Fill(arg0, arg1, arg2); });
t.method("Fill", [](TProfile2D& a, const char * arg0, const char * arg1, Double_t arg2)->Int_t { return a.TProfile2D::Fill(arg0, arg1, arg2); });
t.method("Fill", [](TProfile2D* a, const char * arg0, const char * arg1, Double_t arg2)->Int_t { return a->TProfile2D::Fill(arg0, arg1, arg2); });

DEBUG_MSG("Adding wrapper for Int_t TProfile2D::Fill(Double_t, Double_t, Double_t, Double_t) (" __HERE__ ")");
// signature to use in the veto list: Int_t TProfile2D::Fill(Double_t, Double_t, Double_t, Double_t)
Expand Down
Loading

0 comments on commit d490041

Please sign in to comment.