From 014afc1875cde358f36dc6d2f201ecaf3ec8501a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sat, 17 Jun 2017 00:17:35 +0200 Subject: [PATCH] Bug 1373828: Work around servo/rust-bindgen#734. r=bholley MozReview-Commit-ID: Fbng9a7MpDM --- layout/base/nsPresContext.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/base/nsPresContext.h b/layout/base/nsPresContext.h index 35365e70d72c0..fdfcc812a821f 100644 --- a/layout/base/nsPresContext.h +++ b/layout/base/nsPresContext.h @@ -1504,11 +1504,11 @@ class nsPresContext : public nsIObserver, #ifdef RESTYLE_LOGGING // Should we output debug information about restyling for this document? - bool mRestyleLoggingEnabled; + unsigned mRestyleLoggingEnabled : 1; #endif #ifdef DEBUG - bool mInitialized; + unsigned mInitialized : 1; #endif