mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 02:42:02 +00:00
fix debug build
Signed-off-by: Nuno Lopes <a-nlopes@microsoft.com>
This commit is contained in:
parent
4a710cf86d
commit
41d7c50e29
1 changed files with 1 additions and 1 deletions
|
@ -1118,7 +1118,7 @@ namespace datalog {
|
||||||
unsigned idx_dst = dstt.column_idx(col_dst);
|
unsigned idx_dst = dstt.column_idx(col_dst);
|
||||||
unsigned idx_src = srct.column_idx(col_src);
|
unsigned idx_src = srct.column_idx(col_src);
|
||||||
unsigned num_tbits = dstt.column_num_bits(col_dst);
|
unsigned num_tbits = dstt.column_num_bits(col_dst);
|
||||||
SASSERT(num_bits == srct.column_num_bits(col_src));
|
SASSERT(num_tbits == srct.column_num_bits(col_src));
|
||||||
IF_VERBOSE(3, verbose_stream() << "copy column " << idx_src
|
IF_VERBOSE(3, verbose_stream() << "copy column " << idx_src
|
||||||
<< " to " << idx_dst << " " << num_tbits << "\n";);
|
<< " to " << idx_dst << " " << num_tbits << "\n";);
|
||||||
for (unsigned i = 0; i < num_tbits; ++i) {
|
for (unsigned i = 0; i < num_tbits; ++i) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue