add missing initializers
This commit is contained in:
parent
2c2f848c54
commit
80b98934c3
@ -174,7 +174,8 @@ void ERsm::load_block(std::deque<std::string>& lines, std::size_t& vector_length
|
||||
SummaryNode::category_from_keyword(kw_list[kw_index]),
|
||||
SummaryNode::Type::Undefined,
|
||||
wgnames[kw_index],
|
||||
make_num(nums_list[kw_index])};
|
||||
make_num(nums_list[kw_index]),
|
||||
""};
|
||||
block_data.emplace_back( node, vector_length );
|
||||
}
|
||||
|
||||
|
@ -177,7 +177,8 @@ ESmry::ESmry(const std::string &filename, bool loadBaseRunData) :
|
||||
SummaryNode::category_from_keyword(keywords[i], segmentExceptions),
|
||||
SummaryNode::Type::Undefined,
|
||||
wgnames[i],
|
||||
nums[i]
|
||||
nums[i],
|
||||
""
|
||||
});
|
||||
|
||||
keywList.insert(keyString);
|
||||
@ -240,7 +241,8 @@ ESmry::ESmry(const std::string &filename, bool loadBaseRunData) :
|
||||
SummaryNode::category_from_keyword(keywords[i], segmentExceptions),
|
||||
SummaryNode::Type::Undefined,
|
||||
wgnames[i],
|
||||
nums[i]
|
||||
nums[i],
|
||||
""
|
||||
});
|
||||
|
||||
keywList.insert(keyString);
|
||||
|
Loading…
Reference in New Issue
Block a user