Removes unsigned-signed integer comparison warnings.

This commit is contained in:
Markus Blatt
2019-04-25 10:00:59 +02:00
parent 48c3802bf3
commit 3aa60433ad
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1737,7 +1737,7 @@ namespace Opm {
const auto& segments = well.segments;
// \Note: eventually we need to hanlde the situations that some segments are shut
assert(int(segment_set.size()) == segments.size());
assert( 1u + segment_set.size() == segments.size());
for (const auto& segment : segments) {
const int segment_index = segment_set.segmentNumberToIndex(segment.first);