From 1f77873a31b0cf2ee3f1b0d5c4bd233586bbd90d Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Wed, 1 Jul 2020 13:39:34 +0000 Subject: [PATCH] Bug 1649259 - include Attributes.h in memory/'s Mutex.h; r=glandium We need this for `MOZ_RAII`. Differential Revision: https://phabricator.services.mozilla.com/D81599 --- memory/build/Mutex.h | 1 + 1 file changed, 1 insertion(+) diff --git a/memory/build/Mutex.h b/memory/build/Mutex.h index 7004390d9582..f871cf9d8289 100644 --- a/memory/build/Mutex.h +++ b/memory/build/Mutex.h @@ -14,6 +14,7 @@ #else # include #endif +#include "mozilla/Attributes.h" #include "mozilla/GuardObjects.h" // Mutexes based on spinlocks. We can't use normal pthread spinlocks in all