mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix build issue on Linux
This commit is contained in:
parent
a37957824a
commit
98af9e00ab
@ -87,7 +87,7 @@ caf::Line<S> caf::Line<S>::findLineBetweenNearestPoints(const Line& otherLine, b
|
|||||||
|
|
||||||
S d = a * e - b * b;
|
S d = a * e - b * b;
|
||||||
|
|
||||||
if (d < std::numeric_limits<typename S>::epsilon())
|
if (d < std::numeric_limits<S>::epsilon())
|
||||||
{
|
{
|
||||||
// Parallel lines. Choice of closest points is arbitrary.
|
// Parallel lines. Choice of closest points is arbitrary.
|
||||||
// Just use start to start.
|
// Just use start to start.
|
||||||
|
Loading…
Reference in New Issue
Block a user