forked from OSchip/llvm-project
Deleted copy-constructor/copy-assignment broke a buildbot. Removing while I
investigate. llvm-svn: 204025
This commit is contained in:
parent
8678acd5ed
commit
205accb9e6
|
@ -35,8 +35,8 @@ namespace PBQP {
|
||||||
/// Keeps track of the number of infinities in each row and column.
|
/// Keeps track of the number of infinities in each row and column.
|
||||||
class MatrixMetadata {
|
class MatrixMetadata {
|
||||||
private:
|
private:
|
||||||
MatrixMetadata(const MatrixMetadata&) = delete;
|
MatrixMetadata(const MatrixMetadata&);
|
||||||
void operator=(const MatrixMetadata&) = delete;
|
void operator=(const MatrixMetadata&);
|
||||||
public:
|
public:
|
||||||
MatrixMetadata(const PBQP::Matrix& M)
|
MatrixMetadata(const PBQP::Matrix& M)
|
||||||
: WorstRow(0), WorstCol(0),
|
: WorstRow(0), WorstCol(0),
|
||||||
|
|
Loading…
Reference in New Issue