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:
@@ -27,8 +27,8 @@ ArrayInit::ArrayInit(ssize_t n) {
|
||||
if (!n) {
|
||||
m_data = HphpArray::GetStaticEmptyArray();
|
||||
} else if (false) {
|
||||
// Force compilation of ArrayShell
|
||||
m_data = NEW(ArrayShell)(n);
|
||||
// Force compilation of PolicyArray
|
||||
m_data = NEW(PolicyArray)(n);
|
||||
} else {
|
||||
m_data = ArrayData::Make(n);
|
||||
}
|
||||
|
||||
Referência em uma Nova Issue
Bloquear um usuário