mirror of https://github.com/CGAL/cgal
Remove '*1'
This commit is contained in:
parent
18f01f2334
commit
15ad33b51e
|
|
@ -59,7 +59,7 @@ public:
|
|||
|
||||
m_is_symmetric = is_symmetric;
|
||||
// reserve memory for a regular 3D grid
|
||||
m_triplets.reserve(dim*1);
|
||||
m_triplets.reserve(dim);
|
||||
}
|
||||
|
||||
/// Create a rectangular matrix initialized with zeros.
|
||||
|
|
@ -78,7 +78,7 @@ public:
|
|||
|
||||
m_is_symmetric = is_symmetric;
|
||||
// reserve memory for a regular 3D grid
|
||||
m_triplets.reserve(rows*1);
|
||||
m_triplets.reserve(rows);
|
||||
}
|
||||
|
||||
/// Delete this object and the wrapped TAUCS matrix.
|
||||
|
|
|
|||
Loading…
Reference in New Issue