serge98

Results 2 issues of serge98

SymbolTable instances within Parser are not moved. The following addition to SymbolTable in idl.h fixes the problem: template class SymbolTable { SymbolTable(const SymbolTable&) = delete; public: SymbolTable() = default; SymbolTable(SymbolTable&&)...

Fixing SymboTable within Parser not being moved properly.

c++