mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix build warning on Linux
This commit is contained in:
parent
a3f6a8dd3d
commit
2f4bc7301d
@ -374,9 +374,9 @@ void RiuCreateMultipleFractionsUi::updateButtonsEnableState()
|
||||
{
|
||||
bool hasOverlappingK = false;
|
||||
const auto& opts = options();
|
||||
for (int i = 0; i < opts.size(); i++)
|
||||
for (size_t i = 0; i < opts.size(); i++)
|
||||
{
|
||||
for (int j = i + 1; j < opts.size(); j++)
|
||||
for (size_t j = i + 1; j < opts.size(); j++)
|
||||
{
|
||||
int absMin = std::min(opts[i]->topKLayer(), opts[j]->topKLayer());
|
||||
int absMax = std::max(opts[i]->baseKLayer(), opts[j]->baseKLayer());
|
||||
|
Loading…
Reference in New Issue
Block a user