mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibRegex: Make regex::Regex move-constructible and move-assignable
For some reason the default move constructor and default move-assign operator were deleted, so we explicitly default them instead.
This commit is contained in:
committed by
Ali Mohammad Pur
parent
b15fe2b926
commit
5e8a0c014e
@@ -77,6 +77,8 @@ public:
|
||||
|
||||
explicit Regex(StringView pattern, typename ParserTraits<Parser>::OptionsType regex_options = {});
|
||||
~Regex() = default;
|
||||
Regex(Regex&&) = default;
|
||||
Regex& operator=(Regex&&) = default;
|
||||
|
||||
typename ParserTraits<Parser>::OptionsType options() const;
|
||||
void print_bytecode(FILE* f = stdout) const;
|
||||
|
||||
Reference in New Issue
Block a user