Skip to content

Commit

Permalink
Fixed another warning as error for MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
ezralanglois committed Aug 30, 2016
1 parent 8fa3028 commit 1ea0bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interop/logic/table/create_imaging_table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ namespace illumina { namespace interop { namespace logic { namespace table
{
const id_t tid = model::metric_base::base_cycle_metric::tile_hash_from_id(it->first);
if (!tile_metrics.has_metric(tid)) continue;
const id_t cycle = model::metric_base::base_cycle_metric::cycle_from_id(it->first);
const size_t cycle = static_cast<size_t>(model::metric_base::base_cycle_metric::cycle_from_id(it->first));
const size_t row = it->second;
const summary::read_cycle& read = cycle_to_read[cycle-1];
table_populator::populate(tile_metrics.get_metric(tid),
Expand Down

0 comments on commit 1ea0bd0

Please sign in to comment.