implement move constructor

This commit is contained in:
Evil Eye 2020-04-02 20:27:52 +02:00
parent 8958e29187
commit a16727d5e3
3 changed files with 8 additions and 1 deletions

View file

@ -42,6 +42,8 @@ namespace Compiler
public:
ContextRestore (StreamErrorHandler* handler, const std::string& context);
ContextRestore (ContextRestore&& other);
~ContextRestore();
};
}