Back-port NDK STLport template fix.
This is a back-port of NDK patch afba0d11e83793cb472bef0fafba207857875239
Avoid instantiating the pointed-to type in _StorageType
_StorageType<_Tp*> instantiates _Tp to perform argument dependent lookup of
_UseVoidPtrStorageType. This is (a) unneeded, and (b) will result in a
compilation failure if instantiation of _Tp references other fields of
_StorageType<_Tp*> (which is incomplete at this time).
This change references the function by its fully-qualified name, thus disabling
argument dependent lookup.
Upstream bug:
https://sourceforge.net/tracker/index.php?func=detail&aid=3497008&group_id=146814&atid=766244
Change-Id: Ic097ad0e413d9f82cbcd5de4379f5a39e395501f
1 file changed