Move algorithm to root
diff --git a/include/rive/rive_types.hpp b/include/rive/rive_types.hpp index f3de296..3723aea 100644 --- a/include/rive/rive_types.hpp +++ b/include/rive/rive_types.hpp
@@ -34,6 +34,7 @@ // We really like these headers, so we include them all the time. +#include <algorithm> #include <cassert> #include <cstddef> #include <cstdint>
diff --git a/src/math/raw_path.cpp b/src/math/raw_path.cpp index c77e999..651eb79 100644 --- a/src/math/raw_path.cpp +++ b/src/math/raw_path.cpp
@@ -3,7 +3,6 @@ */ #include "rive/math/raw_path.hpp" -#include <algorithm> #include <cmath> using namespace rive;