Merge "libutils: remove references to unimplemented func"

am: 67a0dd4e27

Change-Id: I5d7f1e8f3fa31054338973f1c66f2d56fddc1428
This commit is contained in:
Steven Moreland 2019-07-12 10:11:35 -07:00 committed by android-build-merger
commit 4f8a4b095d

View file

@ -188,9 +188,6 @@
// ---------------------------------------------------------------------------
namespace android {
class TextOutput;
TextOutput& printWeakPointer(TextOutput& to, const void* val);
// ---------------------------------------------------------------------------
#define COMPARE_WEAK(_op_) \
@ -459,9 +456,6 @@ private:
weakref_type* m_refs;
};
template <typename T>
TextOutput& operator<<(TextOutput& to, const wp<T>& val);
#undef COMPARE_WEAK
// ---------------------------------------------------------------------------
@ -635,12 +629,6 @@ void wp<T>::clear()
}
}
template <typename T>
inline TextOutput& operator<<(TextOutput& to, const wp<T>& val)
{
return printWeakPointer(to, val.unsafe_get());
}
// ---------------------------------------------------------------------------
// this class just serves as a namespace so TYPE::moveReferences can stay