]> git.lyx.org Git - features.git/commitdiff
boring change
authorJohn Levon <levon@movementarian.org>
Mon, 22 Jul 2002 02:19:53 +0000 (02:19 +0000)
committerJohn Levon <levon@movementarian.org>
Mon, 22 Jul 2002 02:19:53 +0000 (02:19 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4740 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/ChangeLog
src/support/limited_stack.h

index 3ea893de92bfa334968851091bf74425ee2e6f31..68ec1d4c67bacd482cc04d511516311c1c92adfb 100644 (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
index 93a01e8ab55562f5975756612eff43c20e7f8f34..8b709758a796d8b23bd2353184fc5cc473617578 100644 (file)
 
 #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 {