Skip to content

Commit

Permalink
Fix for signed/unsigned comparison warning
Browse files Browse the repository at this point in the history
  • Loading branch information
roystgnr committed Jan 25, 2013
1 parent d78bab2 commit 44e1945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/geom/elem.h
Original file line number Diff line number Diff line change
Expand Up @@ -2190,7 +2190,7 @@ class Elem::PackedElem
libmesh_assert_greater_equal (*(_buf_begin+5), 0);
libmesh_assert_less (static_cast<unsigned int>(*(_buf_begin+5)),
libMesh::n_processors() ||
*(_buf_begin+5) == DofObject::invalid_processor_id);
static_cast<unsigned int>(*(_buf_begin+5)) == DofObject::invalid_processor_id);
return static_cast<unsigned int>(*(_buf_begin+5));
}

Expand Down

0 comments on commit 44e1945

Please sign in to comment.