1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 21:47:43 +00:00

LibRegex: Remove return value for setters

This commit is contained in:
Gunnar Beutner 2021-06-13 22:13:49 +02:00 committed by Ali Mohammad Pur
parent 1fb4471506
commit cd49fb0229
2 changed files with 5 additions and 11 deletions

View file

@ -151,7 +151,9 @@ ALWAYS_INLINE OpCode* ByteCode::get_opcode_by_id(OpCodeId id) const
if (id > OpCodeId::Last)
return nullptr;
return const_cast<OpCode*>(s_opcodes[(u32)id]->set_bytecode(*const_cast<ByteCode*>(this)));
auto* opcode = &*s_opcodes[(u32)id];
opcode->set_bytecode(*const_cast<ByteCode*>(this));
return opcode;
}
OpCode* ByteCode::get_opcode(MatchState& state) const

View file

@ -496,17 +496,9 @@ public:
ALWAYS_INLINE const char* name() const;
static const char* name(const OpCodeId);
ALWAYS_INLINE OpCode* set_state(MatchState& state)
{
m_state = &state;
return this;
}
ALWAYS_INLINE void set_state(MatchState& state) { m_state = &state; }
ALWAYS_INLINE OpCode* set_bytecode(ByteCode& bytecode)
{
m_bytecode = &bytecode;
return this;
}
ALWAYS_INLINE void set_bytecode(ByteCode& bytecode) { m_bytecode = &bytecode; }
ALWAYS_INLINE void reset_state() { m_state.clear(); }