boring change

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4740 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-07-22 02:19:53 +00:00
parent 63ae707688
commit cf392753f3
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2002-07-22 John Levon <moz@compsoc.man.ac.uk>
* limited_stack.h: fix comment, remove un-needed header
2002-07-21 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* lstrings.h: correct comments for token and tokenPos

View File

@ -12,13 +12,11 @@
#include <list>
#include <boost/shared_ptr.hpp>
/**
* limited_stack - a stack of limited size
*
* Like a normal stack, but only accepts pointer types,
* and bottom elements are deleted on overflow
* Like a normal stack, but elements falling out
* of the bottom are destructed.
*/
template <typename T>
class limited_stack {