mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix debug compile issue in RiaImageTools.cpp
This commit is contained in:
parent
3fddca093e
commit
2d5d5d13d2
@ -103,7 +103,7 @@ void RiaImageTools::distanceTransform2d(std::vector<std::vector<unsigned int>>&
|
||||
for (int64_t u = M - 1; u > 0; --u)
|
||||
{
|
||||
int64_t fVal = f(u, s[q], g, y);
|
||||
CVF_ASSERT(fVal= < std::numeric_limits<double>::max());
|
||||
CVF_ASSERT(fVal <= std::numeric_limits<double>::max());
|
||||
image[u][y] = static_cast<unsigned int>(fVal);
|
||||
if (u == t[q])
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user