diff options
Diffstat (limited to 'AK/SourceGenerator.h')
-rw-r--r-- | AK/SourceGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/AK/SourceGenerator.h b/AK/SourceGenerator.h index a97e27e1c1..93c7158bd9 100644 --- a/AK/SourceGenerator.h +++ b/AK/SourceGenerator.h @@ -33,6 +33,8 @@ public: { } + SourceGenerator(SourceGenerator&&) = default; + SourceGenerator fork() { return SourceGenerator { m_builder, m_mapping, m_opening, m_closing }; } void set(StringView key, String value) { m_mapping.set(key, value); } |