forked from OSchip/llvm-project
Add default copy and move c'tor/assignment to PresburgerRelation.
Differential Revision: https://reviews.llvm.org/D128789
This commit is contained in:
parent
32aac7babf
commit
2cd468ef15
|
@ -44,6 +44,11 @@ public:
|
|||
|
||||
explicit PresburgerRelation(const IntegerRelation &disjunct);
|
||||
|
||||
PresburgerRelation(const PresburgerRelation &) = default;
|
||||
PresburgerRelation(PresburgerRelation &&) = default;
|
||||
PresburgerRelation &operator=(const PresburgerRelation &) = default;
|
||||
PresburgerRelation &operator=(PresburgerRelation &&) = default;
|
||||
|
||||
unsigned getNumDomainVars() const { return space.getNumDomainVars(); }
|
||||
unsigned getNumRangeVars() const { return space.getNumRangeVars(); }
|
||||
unsigned getNumSymbolVars() const { return space.getNumSymbolVars(); }
|
||||
|
|
Loading…
Reference in New Issue