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
|
@ -12,7 +12,7 @@
|
||||||
// optimality-preserving rules (see ReductionRules.h). When no low-degree (<3)
|
// optimality-preserving rules (see ReductionRules.h). When no low-degree (<3)
|
||||||
// nodes are present, a heuristic derived from Brigg's graph coloring approach
|
// nodes are present, a heuristic derived from Brigg's graph coloring approach
|
||||||
// is used.
|
// is used.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#ifndef LLVM_CODEGEN_PBQP_REGALLOCSOLVER_H
|
#ifndef LLVM_CODEGEN_PBQP_REGALLOCSOLVER_H
|
||||||
|
@ -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