diff --git a/include/pocketpy/error.h b/include/pocketpy/error.h index a1a9a062..2061402e 100644 --- a/include/pocketpy/error.h +++ b/include/pocketpy/error.h @@ -70,7 +70,7 @@ struct Exception { template void st_push(Args&&... args){ - if(stacktrace.size() >= 8) return; + if(stacktrace.size() >= 7) return; stacktrace.emplace(std::forward(args)...); }