Skip to content
Snippets Groups Projects
Commit 44a05d61 authored by Philippe Canal's avatar Philippe Canal
Browse files

Add missing initialization

git-svn-id: http://root.cern.ch/svn/root/trunk@48607 27541ba8-7e3a-0410-8455-c3a389f83636
parent 5f9c3ec8
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ static bool R__match_filename(const char *srcname,const char *filename)
const clang::CXXRecordDecl *R__ScopeSearch(const char *name, const clang::Type** resultType = 0);
BaseSelectionRule::BaseSelectionRule(long index, BaseSelectionRule::ESelect sel, const std::string& attributeName, const std::string& attributeValue)
: fIndex(index), fIsSelected(sel),fMatchFound(false),fCXXRecordDecl(0)
: fIndex(index), fIsSelected(sel),fMatchFound(false),fCXXRecordDecl(0),fRequestedType(0)
{
fAttributes.insert(AttributesMap_t::value_type(attributeName, attributeValue));
}
......
......@@ -60,7 +60,7 @@ private:
const clang::Type *fRequestedType; // Same as the record decl but with some of the typedef preserved (Double32_t, Float16_t, etc..)
public:
BaseSelectionRule(long index) : fIndex(index),fIsSelected(kNo),fMatchFound(false),fCXXRecordDecl(0) {}
BaseSelectionRule(long index) : fIndex(index),fIsSelected(kNo),fMatchFound(false),fCXXRecordDecl(0),fRequestedType(0) {}
BaseSelectionRule(long index, ESelect sel, const std::string& attributeName, const std::string& attributeValue);
virtual void DebugPrint() const;
......
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