Skip to content
Snippets Groups Projects
Commit 6bc813aa authored by stefan's avatar stefan
Browse files

Fixed, build error (isnumber not found)

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2221 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent b86b87d1
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ bool shift_left(const String& atom_name, bool is_hetatm,
return false;
}
if (isnumber(atom_name[0]) || atom_name=="UNK" ||
if (isdigit(atom_name[0]) || atom_name=="UNK" ||
atom_name.length()==4) {
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment