diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-04 22:02:48 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-04 22:02:48 +0200 |
commit | 5ea77a1278925d9b30a03e71a439124624ec4a4e (patch) | |
tree | 6502408503a8f3b18a52b56ed53d742af9d481e6 /js/src/jsnum.h | |
parent | 0b2804e869b256133d40ab4f01119acdfc9eeb48 (diff) | |
download | aura-central-5ea77a1278925d9b30a03e71a439124624ec4a4e.tar.gz |
Make InitRuntimeNumberState's return type reflect its infallible nature.
Diffstat (limited to 'js/src/jsnum.h')
-rw-r--r-- | js/src/jsnum.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/js/src/jsnum.h b/js/src/jsnum.h index 2e7049888..8dff45f69 100644 --- a/js/src/jsnum.h +++ b/js/src/jsnum.h @@ -34,8 +34,7 @@ namespace js { class StringBuffer; -extern MOZ_MUST_USE bool -InitRuntimeNumberState(JSRuntime* rt); +void InitRuntimeNumberState(JSRuntime* rt); /* Initialize the Number class, returning its prototype object. */ extern JSObject* |