libmv: Fix missing algorithm header in numeric/poly.h

numeric/poly.h uses std::swap but was not including the `<algorithm>`
header.

Pull Request: https://projects.blender.org/blender/blender/pulls/110659
This commit is contained in:
Ray molenkamp 2023-08-01 15:44:29 +02:00
parent a1eff7d0c0
commit 2d1d361e6e

@ -22,6 +22,7 @@
#define LIBMV_NUMERIC_POLY_H_
#include <stdio.h>
#include <algorithm>
#include <cmath>
namespace libmv {