mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 08:34:37 +08:00
Fix a bunch of compiler warnings.
Change-Id: Iacc3beff295d4f4f6334ef598b10c73de509b3c0
This commit is contained in:
@@ -71,7 +71,8 @@ TripletSparseMatrix::TripletSparseMatrix(int num_rows,
|
||||
}
|
||||
|
||||
TripletSparseMatrix::TripletSparseMatrix(const TripletSparseMatrix& orig)
|
||||
: num_rows_(orig.num_rows_),
|
||||
: SparseMatrix(),
|
||||
num_rows_(orig.num_rows_),
|
||||
num_cols_(orig.num_cols_),
|
||||
max_num_nonzeros_(orig.max_num_nonzeros_),
|
||||
num_nonzeros_(orig.num_nonzeros_),
|
||||
|
||||
Reference in New Issue
Block a user