Skip to content

Commit

Permalink
Avoid warnings for clang39
Browse files Browse the repository at this point in the history
  • Loading branch information
peremato committed Oct 21, 2016
1 parent 1bdeae3 commit d7dcba3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion math/matrix/inc/TVectorT.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ template<class Element> class TVectorT : public TObject {
*this = another;
}
#ifndef __CINT__
TVectorT(Int_t lwb,Int_t upb,Element iv1, ...);
TVectorT(Int_t lwb,Int_t upb,Double_t iv1, ...);
#endif
virtual ~TVectorT() { Clear(); }

Expand Down
2 changes: 1 addition & 1 deletion math/matrix/src/TVectorT.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ TVectorT<Element>::TVectorT(const TMatrixTDiag_const<Element> &md) : TObject()
/// TVectorT foo(1,3,0.0,1.0,1.5,"END");

template<class Element>
TVectorT<Element>::TVectorT(Int_t lwb,Int_t upb,Element iv1, ...)
TVectorT<Element>::TVectorT(Int_t lwb,Int_t upb,Double_t iv1, ...)
{
if (upb < lwb) {
Error("TVectorT(Int_t, Int_t, ...)","upb(%d) < lwb(%d)",upb,lwb);
Expand Down

0 comments on commit d7dcba3

Please sign in to comment.