Revert "Moving StringPrintf to libbase."

libbase has been reverted

This reverts commit 7ed5fa1e4d.

Change-Id: I5d8ff8c38ff8c9123e6cee5dc15a101a79e94b2e
This commit is contained in:
Nicolas Geoffray
2015-03-16 12:19:26 +00:00
parent 7ed5fa1e4d
commit d2dad2b24f
2 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@
#include <string>
#include <vector>
#include <base/stringprintf.h>
#include <utils/stringprintf.h>
#include <benchmark/Benchmark.h>
@@ -108,7 +108,7 @@ std::string BenchmarkWithArg<int>::GetNameStr(int arg) {
template <>
std::string BenchmarkWithArg<double>::GetNameStr(double arg) {
return Name() + "/" + android::base::StringPrintf("%0.6f", arg);
return Name() + "/" + android::StringPrintf("%0.6f", arg);
}
template<typename T>