From 4565a8d1e112fc8bb02cff01f089993249a050be Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Mon, 22 Apr 2024 13:10:49 -0400 Subject: [PATCH 1/2] Include for std::numeric_limits --- src/internal/math.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/internal/math.h b/src/internal/math.h index 28d93fb..d7d50ea 100644 --- a/src/internal/math.h +++ b/src/internal/math.h @@ -2,6 +2,7 @@ #define MATH_H #include "nurbs.h" +#include namespace adsk { From afc7efa9d9907f1bd316b368c431541be3af2b2e Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Mon, 22 Apr 2024 13:11:27 -0400 Subject: [PATCH 2/2] Include for std::max and std::min --- src/internal/math.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/internal/math.h b/src/internal/math.h index d7d50ea..c68f36f 100644 --- a/src/internal/math.h +++ b/src/internal/math.h @@ -2,6 +2,7 @@ #define MATH_H #include "nurbs.h" +#include #include namespace adsk