mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
Merge pull request #1612 from danielschemmel/gcc8
`lp::permutation_matrix::values` attempts an incorrect conversion
This commit is contained in:
commit
bc3719f436
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class permutation_matrix : public tail_matrix<T, X> {
|
|||
|
||||
unsigned size() const { return static_cast<unsigned>(m_rev.size()); }
|
||||
|
||||
unsigned * values() const { return m_permutation; }
|
||||
unsigned * values() const { return m_permutation.c_ptr(); }
|
||||
|
||||
void resize(unsigned size) {
|
||||
unsigned old_size = m_permutation.size();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue