Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--intern/sky/source/sky_model.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/sky/source/sky_model.cpp b/intern/sky/source/sky_model.cpp
index 9fb80202c98..4dd9fd11925 100644
--- a/intern/sky/source/sky_model.cpp
+++ b/intern/sky/source/sky_model.cpp
@@ -105,6 +105,9 @@ All instructions on how to use this code are in the accompanying header file.
# define ALLOC(_struct) ((_struct *)malloc(sizeof(_struct)))
#endif
+/* Not defined on all platforms (macOS & WIN32). */
+typedef unsigned int uint;
+
// internal definitions
typedef const double *ArHosekSkyModel_Dataset;