PolicyArray: implement NOT_IMPLEMENTED methods

This implements the "last" unimplemented methods in ArrayShell. The sorting-related methods need no implementation because PolicyArray scales to HphpArray before sorting.
Esse commit está contido em:
Andrei Alexandrescu
2013-06-07 14:05:25 -07:00
commit de Sara Golemon
commit a33a4b0b19
5 arquivos alterados com 156 adições e 158 exclusões
+2 -2
Ver Arquivo
@@ -123,8 +123,8 @@ void ArrayData::release() {
that->release();
return;
}
if (isArrayShell()) {
auto that = static_cast<ArrayShell*>(this);
if (isPolicyArray()) {
auto that = static_cast<PolicyArray*>(this);
that->release();
return;
}