diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2017-12-20 00:29:27 +0100 |
---|---|---|
committer | Hein-Pieter van Braam <hp@tmm.cx> | 2017-12-20 00:29:27 +0100 |
commit | ff04c079125cace8bcc4c0a45016e6e141276d61 (patch) | |
tree | eee8f325c53904356c5ce3f7e74839661931fd39 /scene/3d | |
parent | 808a3b9c719602df03aee1832967500ee9cfcc71 (diff) |
Lightbaker: include stdlib.h to fix CI builds
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/voxel_light_baker.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/3d/voxel_light_baker.cpp b/scene/3d/voxel_light_baker.cpp index 5e4cef586e..bd1f00b0d8 100644 --- a/scene/3d/voxel_light_baker.cpp +++ b/scene/3d/voxel_light_baker.cpp @@ -1,3 +1,5 @@ +#include <stdlib.h> + #include "voxel_light_baker.h" #include "os/os.h" #define FINDMINMAX(x0, x1, x2, min, max) \ |