added vector include that causes fail on monterey

This commit is contained in:
Harvey Fong 2025-06-12 18:51:06 -06:00
parent 5f35157cbb
commit 85b6555870

View File

@ -4,6 +4,7 @@
#include <fstream> // For std::ofstream #include <fstream> // For std::ofstream
#include <filesystem> // For std::filesystem #include <filesystem> // For std::filesystem
#include <cmath> // For std::pow #include <cmath> // For std::pow
#include <vector>
namespace oom { namespace oom {
namespace misc { namespace misc {
@ -1512,4 +1513,4 @@ namespace oom {
}; };
const unsigned int DayEnvironmentHDRI019_1K_TONEMAPPED_jpg_len = 17065; const unsigned int DayEnvironmentHDRI019_1K_TONEMAPPED_jpg_len = 17065;
} }
} }