mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fixed compare between signed and unsigned values
This commit is contained in:
parent
4d1b083a5f
commit
432dbcdeac
@ -282,7 +282,7 @@ bool RifEclipseInputFileTools::readDataFromKeyword(ecl_kw_type* eclipseKeywordDa
|
||||
|
||||
bool mathingItemCount = false;
|
||||
{
|
||||
int itemCount = ecl_kw_get_size(eclipseKeywordData);
|
||||
size_t itemCount = static_cast<size_t>(ecl_kw_get_size(eclipseKeywordData));
|
||||
if (itemCount == caseData->mainGrid()->cellCount())
|
||||
{
|
||||
mathingItemCount = true;
|
||||
|
Loading…
Reference in New Issue
Block a user