Skip to content
Snippets Groups Projects
Commit 3b9389fc authored by Studer Gabriel's avatar Studer Gabriel
Browse files

make it compile with GCC 9

parent 73d40095
No related branches found
No related tags found
No related merge requests found
......@@ -407,7 +407,9 @@ bool QueryState::IsAtomSelected(const AtomHandle& h)
if(ret==false) return false;
ret = this->EvalResidue(h.GetResidue().Impl());
if(ret==false) return false;
return this->EvalAtom(h.Impl());
ret = this->EvalAtom(h.Impl());
if(ret==false) return false;
return true;
}
bool QueryState::IsResidueSelected(const ResidueHandle& r)
......
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