summaryrefslogtreecommitdiff
path: root/runtime/reference_table_test.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2016-12-14 10:11:49 -0800
committer Andreas Gampe <agampe@google.com> 2016-12-15 09:50:39 -0800
commit46ee31b67d7ee1bd085fbc240502053caa3cf8fa (patch)
tree83e870f293cd60d533207e389d7b094acd87b31f /runtime/reference_table_test.cc
parent9538f9e2a5d03f1b1bc07ebfbd93b61dcf8ad604 (diff)
ART: Move to libbase StringPrintf
Remove ART's StringPrintf implementation. Fix up clients. Add missing includes where necessary. Test: m test-art-host Change-Id: I564038d5868595ac3bb88d641af1000cea940e5a
Diffstat (limited to 'runtime/reference_table_test.cc')
-rw-r--r--runtime/reference_table_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/reference_table_test.cc b/runtime/reference_table_test.cc
index d80a9b3dd1..9523e92d7c 100644
--- a/runtime/reference_table_test.cc
+++ b/runtime/reference_table_test.cc
@@ -16,6 +16,8 @@
#include "reference_table.h"
+#include "android-base/stringprintf.h"
+
#include "class_linker.h"
#include "common_runtime_test.h"
#include "handle_scope-inl.h"
@@ -30,6 +32,8 @@
namespace art {
+using android::base::StringPrintf;
+
class ReferenceTableTest : public CommonRuntimeTest {};
static mirror::Object* CreateWeakReference(mirror::Object* referent)