Skip to content

Commit

Permalink
fix warning [-Wimplicit-exception-spec-mismatch]
Browse files Browse the repository at this point in the history
  • Loading branch information
nrnhines committed May 22, 2024
1 parent 7e84d4b commit 9e53b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nrnoc/memblist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Memb_list& Memb_list::operator=(Memb_list&& rhs) noexcept {
return *this;

Check warning on line 55 in src/nrnoc/memblist.cpp

View check run for this annotation

Codecov / codecov/patch

src/nrnoc/memblist.cpp#L52-L55

Added lines #L52 - L55 were not covered by tests
}

Memb_list::~Memb_list() {
Memb_list::~Memb_list() noexcept {
if (m_owns_nodes) {
nodes_free();
}
Expand Down

0 comments on commit 9e53b77

Please sign in to comment.