3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

buffer: require a move constructor to avoid copies

remove unneded copy constructors from several classes
This commit is contained in:
Nuno Lopes 2020-06-03 11:57:49 +01:00
parent 3d98bccc33
commit 98b5abb1d4
16 changed files with 38 additions and 50 deletions

View file

@ -16,11 +16,11 @@ Notes:
--*/
#ifndef SPARSE_MATRIX_H_
#define SPARSE_MATRIX_H_
#pragma once
#include "util/mpq_inf.h"
#include "util/statistics.h"
#include <cstring>
namespace simplex {
@ -271,6 +271,3 @@ namespace simplex {
};
};
#endif