From fe5cc4b241140bd96bb35d84e02e4dfc32998b2e Mon Sep 17 00:00:00 2001 From: John Levon Date: Thu, 8 Aug 2002 15:42:54 +0000 Subject: [PATCH] default to 100 not 10 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4904 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/ChangeLog | 4 ++++ src/support/limited_stack.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/support/ChangeLog b/src/support/ChangeLog index 49675f7435..27f70263ad 100644 --- a/src/support/ChangeLog +++ b/src/support/ChangeLog @@ -1,3 +1,7 @@ +2002-08-08 John Levon + + * limited_stack.h: default to 100 not 10 + 2002-08-01 John Levon * forkedcall.C: more details on error diff --git a/src/support/limited_stack.h b/src/support/limited_stack.h index 8b709758a7..14eef6e0c6 100644 --- a/src/support/limited_stack.h +++ b/src/support/limited_stack.h @@ -26,7 +26,7 @@ public: typedef typename container_type::size_type size_type; /// limit is the maximum size of the stack - limited_stack(size_type limit = 10) { + limited_stack(size_type limit = 100) { limit_ = limit; } -- 2.39.2