Fix: Attempt to fix build error on windows

`index_mask.cc` ends up including this header, but not much else,
the `<algorithm>` include is necessary on Windows for `std::max`.
This commit is contained in:
Hans Goudey 2022-02-23 13:02:06 -05:00
parent 226f0c4fef
commit 7518adc5bb
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@
* This file contains code that can be shared between different hash table implementations.
*/
#include <algorithm>
#include <cmath>
#include "BLI_allocator.hh"