Making sure the MOAB unstructured mesh function is an override of the base class.

This commit is contained in:
Patrick Shriwise 2020-04-05 15:04:16 -05:00
parent 4e1a4e45de
commit 6775574b0f

View file

@ -2079,8 +2079,8 @@ UnstructuredMesh::get_score_tags(std::string score) const {
}
void
UnstructuredMesh::add_score(std::string score) const {
auto score_tags = this->get_score_tags(score);
UnstructuredMesh::add_score(const std::string& score) {
auto score_tags = get_score_tags(score);
}
void UnstructuredMesh::remove_score(std::string score) const {