Skip to content
Snippets Groups Projects
Commit 8a4d7588 authored by Rene Brun's avatar Rene Brun
Browse files

Fix initialization order in constructor

git-svn-id: http://root.cern.ch/svn/root/trunk@22837 27541ba8-7e3a-0410-8455-c3a389f83636
parent 504f57fd
No related branches found
No related tags found
No related merge requests found
......@@ -22,11 +22,11 @@
//______________________________________________________________________________
Reflex::NameLookup::NameLookup(const std::string& name, const Scope& current)
: fCurrentScope(current)
, fLookupName(name)
, fPartialSuccess(false)
: fLookupName(name)
, fPosNamePart(0)
, fPosNamePartLen(std::string::npos)
, fCurrentScope(current)
, fPartialSuccess(false)
{
// Initialize a NameLookup object used internally to keep track of lookup
// states.
......
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