mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-30 09:00:37 +08:00
Removing using std::...
Change-Id: I584402e2a34869183c1d59071a15d97b216c52fb
This commit is contained in:
@@ -38,9 +38,8 @@
|
||||
|
||||
#include "ceres/stringprintf.h"
|
||||
#include "ceres/types.h"
|
||||
namespace ceres::internal {
|
||||
|
||||
using std::string;
|
||||
namespace ceres::internal {
|
||||
|
||||
bool IsArrayValid(const int size, const double* x) {
|
||||
if (x != nullptr) {
|
||||
@@ -75,7 +74,7 @@ void InvalidateArray(const int size, double* x) {
|
||||
}
|
||||
}
|
||||
|
||||
void AppendArrayToString(const int size, const double* x, string* result) {
|
||||
void AppendArrayToString(const int size, const double* x, std::string* result) {
|
||||
for (int i = 0; i < size; ++i) {
|
||||
if (x == nullptr) {
|
||||
StringAppendF(result, "Not Computed ");
|
||||
|
||||
Reference in New Issue
Block a user