diff options
Diffstat (limited to 'js/src/frontend')
-rw-r--r-- | js/src/frontend/BytecodeEmitter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/frontend/BytecodeEmitter.h b/js/src/frontend/BytecodeEmitter.h index 0ce4f6c1a3..aef575b1cd 100644 --- a/js/src/frontend/BytecodeEmitter.h +++ b/js/src/frontend/BytecodeEmitter.h @@ -299,8 +299,8 @@ struct MOZ_STACK_CLASS BytecodeEmitter Scope* outermostScope() const { return scopeList.vector[0]; } Scope* innermostScope() const; - MOZ_ALWAYS_INLINE - [[nodiscard]] bool makeAtomIndex(JSAtom* atom, uint32_t* indexp) { + [[nodiscard]] MOZ_ALWAYS_INLINE + bool makeAtomIndex(JSAtom* atom, uint32_t* indexp) { MOZ_ASSERT(atomIndices); AtomIndexMap::AddPtr p = atomIndices->lookupForAdd(atom); if (p) { |