blueloveTH 2 years ago
parent
commit
049d923958
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/tuplelist.h

+ 2 - 2
src/tuplelist.h

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