Replace NULL by nullptr

Change-Id: I200a40678091b984a01635d8637a487b7ad5cc13
This commit is contained in:
Sergiu Deitsch
2022-02-14 01:21:14 +01:00
parent 7e4f5a51ba
commit c6158e0ab5
17 changed files with 44 additions and 44 deletions
+2 -2
View File
@@ -92,8 +92,8 @@ class CERES_EXPORT CostFunction {
// jacobians[i][r*parameter_block_size_[i] + c] =
// d residual[r] / d parameters[i][c]
//
// If jacobians is NULL, then no derivatives are returned; this is
// the case when computing cost only. If jacobians[i] is NULL, then
// If jacobians is nullptr, then no derivatives are returned; this is
// the case when computing cost only. If jacobians[i] is nullptr, then
// the jacobian block corresponding to the i'th parameter block must
// not to be returned.
//