Skip to content
Snippets Groups Projects
Commit 88d6c37f authored by Fons Rademakers's avatar Fons Rademakers
Browse files

re-order initializer list.

git-svn-id: http://root.cern.ch/svn/root/trunk@41755 27541ba8-7e3a-0410-8455-c3a389f83636
parent 2c74e4d1
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ public:
}
RealVector(const RealVector& other, RooAbsReal* real=0) :
_real(real?real:other._real), _buf(other._buf), _nativeBuf(other._nativeBuf), _vec(other._vec) {
_vec(other._vec), _real(real?real:other._real), _buf(other._buf), _nativeBuf(other._nativeBuf) {
_vec0 = _vec.size()>0 ? &_vec.front() : 0 ;
}
......
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