More lint cleanups and breakage fixes.
The previous CL was a premature submit due to lack of coffee.
Change-Id: Id425d0ef332f569a954f0413e6b1ae6087f40f30
diff --git a/internal/ceres/lapack.cc b/internal/ceres/lapack.cc
index 90973fa..04a87e8 100644
--- a/internal/ceres/lapack.cc
+++ b/internal/ceres/lapack.cc
@@ -70,7 +70,7 @@
int num_rows,
const double* in_lhs,
double* rhs_and_solution,
- string* status) {
+ string* message) {
#ifdef CERES_NO_LAPACK
LOG(FATAL) << "Ceres was built without a BLAS library.";
return LINEAR_SOLVER_FATAL_ERROR;
@@ -91,7 +91,7 @@
}
if (info > 0) {
- *status =
+ *message =
StringPrintf(
"LAPACK::dpotrf numerical failure. "
"The leading minor of order %d is not positive definite.", info);
@@ -107,7 +107,7 @@
return LINEAR_SOLVER_FATAL_ERROR;
}
- *status = "Success";
+ *message = "Success";
return LINEAR_SOLVER_SUCCESS;
#endif
};
@@ -151,7 +151,7 @@
int work_size,
double* work,
double* rhs_and_solution,
- string* status) {
+ string* message) {
#ifdef CERES_NO_LAPACK
LOG(FATAL) << "Ceres was built without a LAPACK library.";
return LINEAR_SOLVER_FATAL_ERROR;
@@ -184,7 +184,7 @@
<< "Argument: " << -info << " is invalid.";
}
- *status = "Success.";
+ *message = "Success.";
return LINEAR_SOLVER_SUCCESS;
#endif
}