Fix a bunch of compiler warnings.

Change-Id: Iacc3beff295d4f4f6334ef598b10c73de509b3c0
This commit is contained in:
Sameer Agarwal
2012-09-23 18:19:49 -07:00
parent f9a7ce831e
commit d3ace02d13
8 changed files with 9 additions and 8 deletions
+2 -1
View File
@@ -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_),