Commit: f4b36786462e52bc914a1cdc182b7e25da081dd0 Author: Sergey Sharybin Date: Mon Aug 28 11:06:15 2017 +0200 Branches: master https://developer.blender.org/rBf4b36786462e52bc914a1cdc182b7e25da081dd0
Atomics: Use system headers directly, without bad level dependency to BLI This will make it easier to re-use library as-is in other projects, such as Cycles standalone repo for example. =================================================================== M intern/atomic/intern/atomic_ops_utils.h =================================================================== diff --git a/intern/atomic/intern/atomic_ops_utils.h b/intern/atomic/intern/atomic_ops_utils.h index fa8f39b4e81..c190b655e0a 100644 --- a/intern/atomic/intern/atomic_ops_utils.h +++ b/intern/atomic/intern/atomic_ops_utils.h @@ -52,8 +52,8 @@ #ifndef __ATOMIC_OPS_UTILS_H__ #define __ATOMIC_OPS_UTILS_H__ -/* needed for int types */ -#include "../../../source/blender/blenlib/BLI_sys_types.h" +#include <stdint.h> +#include <stddef.h> #include <stdlib.h> #include <limits.h> _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
