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

Fix a warning in default constructor when compiling with -weffc++

git-svn-id: http://root.cern.ch/svn/root/trunk@22819 27541ba8-7e3a-0410-8455-c3a389f83636
parent d88140e4
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ protected:
static Bool_t ParseUrl(const char *url, TString &archive, TString &member);
public:
TArchiveFile() : fMemberIndex(-1), fFile(0), fMembers(0), fCurMember(0) { }
TArchiveFile() : fArchiveName(""), fMemberName(""), fMemberIndex(-1), fFile(0), fMembers(0), fCurMember(0) { }
TArchiveFile(const char *archive, const char *member, TFile *file);
virtual ~TArchiveFile();
......
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