Fix build issue on Linux

This commit is contained in:
Gaute Lindkvist 2018-05-02 12:11:15 +02:00
parent a37957824a
commit 98af9e00ab

View File

@ -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.