Skip to content

Commit

Permalink
Restore missing namespace in test_utils definition file.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsorby committed Nov 21, 2024
1 parent 8409fc6 commit 231d19e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ void printComponent(const libcellml::ComponentPtr &component, size_t c, const st
}
}

void printComponent(const ComponentPtr &component, bool includeMaths)
void printComponent(const libcellml::ComponentPtr &component, bool includeMaths)
{
printComponent(component, -1, {}, includeMaths);
}

void printModel(const ModelPtr &model, bool includeMaths)
void printModel(const libcellml::ModelPtr &model, bool includeMaths)
{
std::cout << "MODEL: '" << model->name() << "'";
if (model->id() != "") {
Expand Down

0 comments on commit 231d19e

Please sign in to comment.