mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:27:45 +00:00
LibRegex: Take the regex as a const reference in print_bytecode()
This commit is contained in:
parent
e9279d1790
commit
25d336bc27
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
void print_bytecode(Regex<T>& regex) const
|
void print_bytecode(const Regex<T>& regex) const
|
||||||
{
|
{
|
||||||
MatchState state;
|
MatchState state;
|
||||||
auto& bytecode = regex.parser_result.bytecode;
|
auto& bytecode = regex.parser_result.bytecode;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue