Revert "Revert "Moving StringPrintf to libbase.""

This reverts commit d2dad2b24f.

(cherry picked from commit 3e87c78543)
This commit is contained in:
Dan Albert
2015-03-16 10:06:29 -07:00
parent e5fff0831c
commit 4c1dbb4000
2 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@
#include <string>
#include <vector>
#include <utils/stringprintf.h>
#include <base/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::StringPrintf("%0.6f", arg);
return Name() + "/" + android::base::StringPrintf("%0.6f", arg);
}
template<typename T>