diff options
Diffstat (limited to 'js/src/builtin/Reflect.h')
-rw-r--r-- | js/src/builtin/Reflect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/builtin/Reflect.h b/js/src/builtin/Reflect.h index abe088c2da..21857d4fcc 100644 --- a/js/src/builtin/Reflect.h +++ b/js/src/builtin/Reflect.h @@ -17,10 +17,10 @@ InitReflect(JSContext* cx, js::HandleObject obj); namespace js { -extern MOZ_MUST_USE bool +[[nodiscard]] extern bool Reflect_getPrototypeOf(JSContext* cx, unsigned argc, Value* vp); -extern MOZ_MUST_USE bool +[[nodiscard]] extern bool Reflect_isExtensible(JSContext* cx, unsigned argc, Value* vp); } |