Skip to content
Snippets Groups Projects
Commit 7cd721f1 authored by Lorenzo Moneta's avatar Lorenzo Moneta
Browse files

fix copy constructor (Coverity)

git-svn-id: http://root.cern.ch/svn/root/trunk@44144 27541ba8-7e3a-0410-8455-c3a389f83636
parent 08f93ab1
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ protected:
Int_t fColUpb;
Int_t fColLwb;
TMatrixTLazy(const TMatrixTLazy<Element> &) : TObject() { }
TMatrixTLazy(const TMatrixTLazy<Element> &) : TObject(), fRowUpb(0),fRowLwb(0),fColUpb(0),fColLwb(0) { }
void operator=(const TMatrixTLazy<Element> &) { }
private:
......@@ -95,7 +95,7 @@ protected:
Int_t fRowUpb;
Int_t fRowLwb;
TMatrixTSymLazy(const TMatrixTSymLazy<Element> &) : TObject() { }
TMatrixTSymLazy(const TMatrixTSymLazy<Element> &) : TObject(), fRowUpb(0),fRowLwb(0) { }
void operator=(const TMatrixTSymLazy<Element> &) { }
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment