diff --git a/src/support/ChangeLog b/src/support/ChangeLog index 3ea893de92..68ec1d4c67 100644 --- a/src/support/ChangeLog +++ b/src/support/ChangeLog @@ -1,3 +1,7 @@ +2002-07-22 John Levon + + * limited_stack.h: fix comment, remove un-needed header + 2002-07-21 Jean-Marc Lasgouttes * lstrings.h: correct comments for token and tokenPos diff --git a/src/support/limited_stack.h b/src/support/limited_stack.h index 93a01e8ab5..8b709758a7 100644 --- a/src/support/limited_stack.h +++ b/src/support/limited_stack.h @@ -12,13 +12,11 @@ #include -#include - /** * 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 class limited_stack {