blueloveTH 2 lat temu
rodzic
commit
049d923958
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/tuplelist.h

+ 2 - 2
src/tuplelist.h

@@ -11,13 +11,13 @@ using List = pod_vector<PyObject*>;
 
 class Tuple {
     PyObject** _args;
-    PyObject* _inlined[3];
+    PyObject* _inlined[2];
     int _size;
 
     bool is_inlined() const { return _args == _inlined; }
 
     void _alloc(int n){
-        if(n <= 3){
+        if(n <= 2){
             this->_args = _inlined;
         }else{
             this->_args = (PyObject**)pool64.alloc(n * sizeof(void*));