summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2017-03-09 02:09:49 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-03-09 02:09:49 +0000
commitf53a334871d21bda8e89e5c0c71f45a5be08c333 (patch)
tree6cd70fe98aad8a2cb9a538515744ca34b4821e6c /tests
parentd171ef64d6227cb7972520765eb79d33396ec717 (diff)
parent43fa10b2e6db34890ffc0b0f5aacb83565048323 (diff)
downloadandroid_hardware_interfaces-f53a334871d21bda8e89e5c0c71f45a5be08c333.tar.gz
android_hardware_interfaces-f53a334871d21bda8e89e5c0c71f45a5be08c333.tar.bz2
android_hardware_interfaces-f53a334871d21bda8e89e5c0c71f45a5be08c333.zip
IBaz: remove unused function am: dc611e5df9 am: 1035d17739
am: 43fa10b2e6 Change-Id: I0033c817c77fb8012019ff75aa2a3140f9ec48a9
Diffstat (limited to 'tests')
-rw-r--r--tests/baz/1.0/default/Baz.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/baz/1.0/default/Baz.cpp b/tests/baz/1.0/default/Baz.cpp
index 8e57fa06d..6252fbed8 100644
--- a/tests/baz/1.0/default/Baz.cpp
+++ b/tests/baz/1.0/default/Baz.cpp
@@ -33,7 +33,6 @@ static std::string to_string(const IBaz::Foo &foo);
static std::string to_string(const hidl_string &s);
static std::string to_string(bool x);
static std::string to_string(const IBaz::StringMatrix5x3 &M);
-static std::string to_string(const IBaz::StringMatrix3x5 &M);
template<typename T, size_t SIZE>
static std::string to_string(const hidl_array<T, SIZE> &array);
@@ -145,10 +144,6 @@ static std::string to_string(const IBaz::StringMatrix5x3 &M) {
return to_string(M.s);
}
-static std::string to_string(const IBaz::StringMatrix3x5 &M) {
- return to_string(M.s);
-}
-
static std::string VectorOfArray_to_string(const IBaz::VectorOfArray &in) {
std::string out;
out += "VectorOfArray(";