LibRegex: Take the regex as a const reference in print_bytecode()

This commit is contained in:
AnotherTest 2021-04-10 08:33:51 +04:30 committed by Andreas Kling
parent e9279d1790
commit 25d336bc27

View file

@ -55,7 +55,7 @@ public:
}
template<typename T>
void print_bytecode(Regex<T>& regex) const
void print_bytecode(const Regex<T>& regex) const
{
MatchState state;
auto& bytecode = regex.parser_result.bytecode;