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

initialize fSorted in default ctor.

git-svn-id: http://root.cern.ch/svn/root/trunk@7196 27541ba8-7e3a-0410-8455-c3a389f83636
parent 120b535c
No related branches found
No related tags found
No related merge requests found
// @(#)root/cont:$Name: $:$Id: TSeqCollection.h,v 1.4 2000/09/27 10:05:23 rdm Exp $ // @(#)root/cont:$Name: $:$Id: TSeqCollection.h,v 1.5 2001/01/09 18:33:59 rdm Exp $
// Author: Fons Rademakers 04/08/95 // Author: Fons Rademakers 04/08/95
/************************************************************************* /*************************************************************************
...@@ -32,7 +32,7 @@ class TSeqCollection : public TCollection { ...@@ -32,7 +32,7 @@ class TSeqCollection : public TCollection {
protected: protected:
Bool_t fSorted; // true if collection has been sorted Bool_t fSorted; // true if collection has been sorted
TSeqCollection() { } TSeqCollection() : fSorted(kFALSE) { }
virtual void Changed() { fSorted = kFALSE; } virtual void Changed() { fSorted = kFALSE; }
public: public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment