mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fixed compare between signed/unsigned
This commit is contained in:
parent
24d4e6d094
commit
021cd5f1e0
@ -577,7 +577,7 @@ QStringList RimEclipseCase::timeStepStrings()
|
|||||||
QString RimEclipseCase::timeStepName(int frameIdx)
|
QString RimEclipseCase::timeStepName(int frameIdx)
|
||||||
{
|
{
|
||||||
std::vector<QDateTime> timeStepDates = this->timeStepDates();
|
std::vector<QDateTime> timeStepDates = this->timeStepDates();
|
||||||
CVF_ASSERT(frameIdx < timeStepDates.size());
|
CVF_ASSERT(frameIdx < static_cast<int>(timeStepDates.size()));
|
||||||
|
|
||||||
if (m_timeStepFormatString.isEmpty())
|
if (m_timeStepFormatString.isEmpty())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user