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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-08-28 12:06:15 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-08-28 12:06:15 +0300
commitf4b36786462e52bc914a1cdc182b7e25da081dd0 (patch)
treed8bc876696e0510aad3e71fdf9ecb1e00ff6341d /intern/atomic
parentb11b5b273e8d38e96372b01c5171986591d7d2bd (diff)
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.
Diffstat (limited to 'intern/atomic')
-rw-r--r--intern/atomic/intern/atomic_ops_utils.h4
1 files changed, 2 insertions, 2 deletions
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>