Removing using std::...

Change-Id: I584402e2a34869183c1d59071a15d97b216c52fb
This commit is contained in:
Alexander Ivanov
2023-01-11 16:51:38 +00:00
parent e1ca3302af
commit 53df5ddcfd
47 changed files with 479 additions and 608 deletions
+2 -3
View File
@@ -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 ");