Skip to content

Commit

Permalink
Workaround old compilers' "call is ambiguous" prob
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyelewis committed Jan 3, 2018
1 parent f9b408a commit f58a0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/uni/file/pdb/pdb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ residue_id_vec cath::file::get_backbone_complete_residue_ids(const pdb &arg_pdb
for (const pdb_residue &the_res : arg_pdb) {
if ( is_backbone_complete( the_res ) ) {
const residue_id the_res_id = the_res.get_residue_id();
if ( ! contains( seen_res_ids, the_res_id ) ) {
if ( ! cath::common::contains( seen_res_ids, the_res_id ) ) {
seen_res_ids.push_back( the_res_id );
results.push_back( the_res_id );
}
Expand Down

0 comments on commit f58a0fb

Please sign in to comment.