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:
authorArto Kitula <arto.kitula@gmail.com>2017-11-14 17:51:34 +0300
committerArto Kitula <arto.kitula@gmail.com>2017-11-14 17:51:34 +0300
commit0a3fa9c25c920d787bf7f32fb5f922509427deaf (patch)
treef18c6a5ed6223c91e3c2b76485594620a87c7549 /source/blender/blenlib/BLI_threads.h
parent55696b56d98411b6eeadfa1a7349bdb2bca47e38 (diff)
Fix missing SpinLock typedef on macOS
Diffstat (limited to 'source/blender/blenlib/BLI_threads.h')
-rw-r--r--source/blender/blenlib/BLI_threads.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_threads.h b/source/blender/blenlib/BLI_threads.h
index 9d672b1ce88..60da6b39cbe 100644
--- a/source/blender/blenlib/BLI_threads.h
+++ b/source/blender/blenlib/BLI_threads.h
@@ -112,7 +112,7 @@ void BLI_mutex_unlock(ThreadMutex *mutex);
/* Spin Lock */
#if defined(__APPLE__)
-typedef OSSpinLock ;
+typedef OSSpinLock SpinLock;
#elif defined(_MSC_VER)
typedef volatile int SpinLock;
#else