Skip to content

Commit

Permalink
fix explicit template instantiation for clang
Browse files Browse the repository at this point in the history
  • Loading branch information
sim82 committed Jun 9, 2016
1 parent 67df09b commit b4fd53e
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions papara.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1715,22 +1715,23 @@ bool file_exists(const char *filename)

}

namespace papara
{
// explicit template instantiations of the queries/references classes for the different supported data types and gap models,
// i.e., controlled combinatorial detonation happens here...
template class queries<tag_dna>;
template class queries<tag_aa>;

// explicit template instantiations of the queries/references classes for the different supported data types and gap models,
// i.e., controlled combinatorial detonation happens here...
template class queries<tag_dna>;
template class queries<tag_aa>;

template class references<pvec_pgap,tag_dna>;
template class references<pvec_cgap,tag_dna>;

template class references<pvec_cgap,tag_aa>;
template class references<pvec_pgap,tag_aa>;
template class references<pvec_pgap,tag_dna>;
template class references<pvec_cgap,tag_dna>;

template class references<pvec_cgap,tag_aa>;
template class references<pvec_pgap,tag_aa>;

template class driver<pvec_pgap,tag_dna>;
template class driver<pvec_cgap,tag_dna>;

template class driver<pvec_cgap,tag_aa>;
template class driver<pvec_pgap,tag_aa>;
template class driver<pvec_pgap,tag_dna>;
template class driver<pvec_cgap,tag_dna>;

template class driver<pvec_cgap,tag_aa>;
template class driver<pvec_pgap,tag_aa>;
}

0 comments on commit b4fd53e

Please sign in to comment.