Skip to content

Commit 56e798e

Browse files
author
Daniel Kroening
committed
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.
1 parent b77b5b0 commit 56e798e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/symbol_table_builder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class symbol_table_buildert : public symbol_table_baset
3737

3838
symbol_table_buildert(const symbol_table_buildert &) = delete;
3939
symbol_table_buildert &operator=(const symbol_table_buildert &) = delete;
40-
symbol_table_buildert &operator=(symbol_table_buildert &&) = default;
40+
symbol_table_buildert &operator=(symbol_table_buildert &&) = delete;
4141

4242
static symbol_table_buildert wrap(symbol_table_baset &base_symbol_table)
4343
{

0 commit comments

Comments
 (0)