From 6c87c21b344dd3d9d00c33d9bf180dedd02ffc9c Mon Sep 17 00:00:00 2001 From: jmacey Date: Wed, 27 Sep 2023 11:01:44 +0100 Subject: [PATCH] std::clamp failed as I forgot to include algorithm --- src/Vec3.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Vec3.cpp b/src/Vec3.cpp index c83dfc99..d01e63a4 100644 --- a/src/Vec3.cpp +++ b/src/Vec3.cpp @@ -19,6 +19,7 @@ #include "NGLassert.h" #include "Vec4.h" #include +#include /// @file Vec3.cpp /// @brief implementation files for Vec3 class