changeset 7:a5052f77ba7e

Removed uneeded resize() method from Stack definition.
author Eris Caffee <discordia@eldalin.com>
date Fri, 29 May 2015 20:57:21 -0500
parents 438f5608900e
children b02533162b6e
files algs4-c++/src/Stack.hpp
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line diff
     1.1 --- a/algs4-c++/src/Stack.hpp	Fri May 29 20:52:18 2015 -0500
     1.2 +++ b/algs4-c++/src/Stack.hpp	Fri May 29 20:57:21 2015 -0500
     1.3 @@ -57,7 +57,6 @@
     1.4      size_t N;
     1.5      Node *list;
     1.6  
     1.7 -    void resize( size_t new_max );
     1.8      };
     1.9  
    1.10