Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 77c0b0aa authored by Vincent Liard's avatar Vincent Liard
Browse files

fix ae_genetic_unit::get_rna_list

parent 4b199a31
No related branches found
No related tags found
No related merge requests found
...@@ -382,7 +382,7 @@ inline ae_list<ae_rna*>** ae_genetic_unit::get_rna_list( void ) const ...@@ -382,7 +382,7 @@ inline ae_list<ae_rna*>** ae_genetic_unit::get_rna_list( void ) const
} }
inline std::vector<std::list<ae_rna*>> ae_genetic_unit::get_rna_list_std() const { inline std::vector<std::list<ae_rna*>> ae_genetic_unit::get_rna_list_std() const {
std::vector<std::list<ae_rna*>> r; std::vector<std::list<ae_rna*>> r(LAGGING - LEADING + 1);
for (int8_t strand = LEADING ; strand <= LAGGING ; strand++) for (int8_t strand = LEADING ; strand <= LAGGING ; strand++)
for (ae_list_node<ae_rna*>* rna_node = _rna_list[strand]->get_first(); for (ae_list_node<ae_rna*>* rna_node = _rna_list[strand]->get_first();
rna_node != NULL; rna_node != NULL;
......
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