blueloveTH 2 gadi atpakaļ
vecāks
revīzija
736df8ad31
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      include/pocketpy/error.h

+ 1 - 1
include/pocketpy/error.h

@@ -70,7 +70,7 @@ struct Exception {
 
     template<typename... Args>
     void st_push(Args&&... args){
-        if(stacktrace.size() >= 8) return;
+        if(stacktrace.size() >= 7) return;
         stacktrace.emplace(std::forward<Args>(args)...);
     }