diff options
author | Moonchild <git-repo@palemoon.org> | 2020-02-20 16:50:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-20 16:50:49 +0100 |
commit | 7832dded378423f245cb8cf8ef66c4c16a39f6e8 (patch) | |
tree | 8942443c378dfbe069af0bab196fa63a212adc83 /js/public/HeapAPI.h | |
parent | 0e9957c412002000067479e7ce582e8d625e21c0 (diff) | |
parent | d53b11c9dc34d0a8c3bb4ad862cff1e0ce566457 (diff) | |
download | UXP-7832dded378423f245cb8cf8ef66c4c16a39f6e8.tar UXP-7832dded378423f245cb8cf8ef66c4c16a39f6e8.tar.gz UXP-7832dded378423f245cb8cf8ef66c4c16a39f6e8.tar.lz UXP-7832dded378423f245cb8cf8ef66c4c16a39f6e8.tar.xz UXP-7832dded378423f245cb8cf8ef66c4c16a39f6e8.zip |
Merge pull request #1458 from MoonchildProductions/316
Fix buildability of builds without devtools-server
Diffstat (limited to 'js/public/HeapAPI.h')
-rw-r--r-- | js/public/HeapAPI.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/public/HeapAPI.h b/js/public/HeapAPI.h index e37d13e93..fef6c0c78 100644 --- a/js/public/HeapAPI.h +++ b/js/public/HeapAPI.h @@ -392,6 +392,7 @@ IsIncrementalBarrierNeededOnTenuredGCThing(JS::shadow::Runtime* rt, const JS::GC return JS::shadow::Zone::asShadowZone(zone)->needsIncrementalBarrier(); } +#ifdef MOZ_DEVTOOLS_SERVER /** * Create an object providing access to the garbage collector's internal notion * of the current state of memory (both GC heap memory and GCthing-controlled @@ -399,6 +400,7 @@ IsIncrementalBarrierNeededOnTenuredGCThing(JS::shadow::Runtime* rt, const JS::GC */ extern JS_PUBLIC_API(JSObject*) NewMemoryInfoObject(JSContext* cx); +#endif } /* namespace gc */ } /* namespace js */ |