Skip to content
Snippets Groups Projects
Commit d2395cb9 authored by Christian Engwer's avatar Christian Engwer
Browse files

remove keyword explicit for the bool cast of shared_ptr

[[Imported from SVN: r7041]]
parent 70c93528
No related branches found
No related tags found
No related merge requests found
......@@ -113,7 +113,7 @@ namespace Dune
}
/** \brief Checks if shared_ptr manages an object, i.e. whether get() != 0. */
explicit operator bool() const {
operator bool() const {
return rep_ != 0 && rep_->rep_ != 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment