How is one supposed to use a std container\'s value_type? I tried to use it like so:
#include using namespace std; template
Use the typename keyword to indicate that it's really a type.
typename
void push(typename T::value_type& item) typename T::value_type pop()