diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-14 14:44:13 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-14 14:44:13 +0100 |
commit | 0257b657d2101d5a2473331d77430a21852564dd (patch) | |
tree | bedaccd3fd9787fb950621b74c02882d17039de6 /xpcom/threads | |
parent | 4a038e2b4b2485122b1512ce7cee9b6d7efed21c (diff) | |
download | UXP-0257b657d2101d5a2473331d77430a21852564dd.tar UXP-0257b657d2101d5a2473331d77430a21852564dd.tar.gz UXP-0257b657d2101d5a2473331d77430a21852564dd.tar.lz UXP-0257b657d2101d5a2473331d77430a21852564dd.tar.xz UXP-0257b657d2101d5a2473331d77430a21852564dd.zip |
Issue #1319 - Enable promise debugging only in DEBUG builds.
Diffstat (limited to 'xpcom/threads')
-rw-r--r-- | xpcom/threads/MozPromise.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xpcom/threads/MozPromise.h b/xpcom/threads/MozPromise.h index 7a2921d2a..97bfc904b 100644 --- a/xpcom/threads/MozPromise.h +++ b/xpcom/threads/MozPromise.h @@ -19,7 +19,7 @@ #include "nsTArray.h" #include "nsThreadUtils.h" -#if defined(DEBUG) || !defined(RELEASE_OR_BETA) +#if defined(DEBUG) #define PROMISE_DEBUG #endif |