blueloveTH před 2 roky
rodič
revize
049d923958
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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*));