Skip to content

Commit

Permalink
Fixed VS warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ezralanglois committed Aug 30, 2016
1 parent bc990eb commit 0f58309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interop/model/table/imaging_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace illumina { namespace interop { namespace model { namespace table
*/
float operator()(const size_t r, const column_id c, const size_t subcol=0)const
{
if(c >= m_enum_to_index.size())
if(static_cast<size_t>(c) >= m_enum_to_index.size())
INTEROP_THROW(model::index_out_of_bounds_exception, "Invalid enum id for column");
const size_t col = m_enum_to_index[static_cast<size_t>(c)];
if(col >= m_enum_to_index.size())
Expand Down

0 comments on commit 0f58309

Please sign in to comment.