1
0
Fork 0

explicitly call the base class function

This commit is contained in:
Kevin Matz 2022-12-11 16:46:11 -05:00
parent 059c115c15
commit b84d7bafe9
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ std::shared_ptr<DATA::data_header> UniverseMerger::metadata() const
if (sources_.size() == 1)
return sources_.front()->metadata();
return metadata();
return Universe::metadata();
}