mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix compare between signed/unsigned
This commit is contained in:
parent
51fd5e39b0
commit
7e7b9e6cfc
@ -125,7 +125,7 @@ size_t RigNNCData::connectionsWithNoCommonArea( QStringList& connectionTextFirst
|
||||
{
|
||||
connectionWithNoCommonAreaCount++;
|
||||
|
||||
if ( connectionTextFirstItems.size() < maxItemCount )
|
||||
if ( connectionTextFirstItems.size() < static_cast<int>( maxItemCount ) )
|
||||
{
|
||||
QString firstConnectionText;
|
||||
QString secondConnectionText;
|
||||
|
Loading…
Reference in New Issue
Block a user