Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 6ea07b20 authored by LUISELLI Juliette's avatar LUISELLI Juliette
Browse files

fix undefined var in prok mode

parent 06d8151b
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,13 @@ class Recombination : public Mutation {
// ==========================================================================
// Getters
// ==========================================================================
virtual MutationType mut_type() const override { return RECOMB; };
virtual MutationType mut_type() const override {
#ifdef __EUKARYOTE
return RECOMB;
#else
exit(1);
#endif
};
int32_t posA() const { return posA_; }
int32_t posB() const { return posB_; }
int16_t align_score() const { return align_score_; }
......
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