summaryrefslogtreecommitdiffstats
path: root/thirdparty/embree/common/sys/mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/embree/common/sys/mutex.h')
-rw-r--r--thirdparty/embree/common/sys/mutex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/embree/common/sys/mutex.h b/thirdparty/embree/common/sys/mutex.h
index 26af6c582c..0f7345cf45 100644
--- a/thirdparty/embree/common/sys/mutex.h
+++ b/thirdparty/embree/common/sys/mutex.h
@@ -86,8 +86,8 @@ namespace embree
class PaddedSpinLock : public SpinLock
{
- private:
- char padding[CPU_CACHELINE_SIZE - sizeof(SpinLock)];
+ private:
+ MAYBE_UNUSED char padding[CPU_CACHELINE_SIZE - sizeof(SpinLock)];
};
/*! safe mutex lock and unlock helper */
template<typename Mutex> class Lock {