mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 04:41:11 +00:00
Bug 1884759 - Fix unused variable warning on some builds.
MANUAL PUSH: Trivial fix for nightly-as-release builds CLOSED TREE
This commit is contained in:
parent
d885a09053
commit
0c2b607ac2
@ -474,7 +474,10 @@ class StyleSheet final : public nsICSSLoaderObserver, public nsWrapperCache {
|
||||
|
||||
// Blocks/Unblocks resolution of parse promise
|
||||
void BlockParsePromise() {
|
||||
uint32_t count = ++mAsyncParseBlockers;
|
||||
#ifdef MOZ_DIAGNOSTIC_ASSERT_ENABLED
|
||||
uint32_t count =
|
||||
#endif
|
||||
++mAsyncParseBlockers;
|
||||
MOZ_DIAGNOSTIC_ASSERT(count);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user