symbol_table_buildert cannot have move constructor

It uses classes that don't have a move constructor.  This change is required
for compilation with clang 8.
This commit is contained in:
Daniel Kroening 2019-04-27 16:33:24 +01:00
parent b77b5b09d4
commit 56e798ef7f
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ public:
symbol_table_buildert(const symbol_table_buildert &) = delete;
symbol_table_buildert &operator=(const symbol_table_buildert &) = delete;
symbol_table_buildert &operator=(symbol_table_buildert &&) = default;
symbol_table_buildert &operator=(symbol_table_buildert &&) = delete;
static symbol_table_buildert wrap(symbol_table_baset &base_symbol_table)
{