У меня проблема со следующим кодом, я получаю следующую ошибку
Stack.h: 13: 3: ошибка: в ячейке не указан тип
Я не понимаю, как это решить, спасибо за вашу помощь.
// in a stack, we are in interested in its top value only. The default constructor initializes the stack to
// be empty
class Stack {
public:
Stack();
void push(int value); // push adds a value at the top of the stack
int top(); // returns the top value
void pop(); // removes the top value
int size() const; // size returns the number of values in the stack
bool empty() const; // returns true if the stack is empty
int getNext() const;
private:
Cell *m_firstCellPtr; // m_firstCellPtr field is a pointer to the first cell of the linked list holding the values of the stack
int m_size; // fields holds the current size of the stack
};
Каждый пример из книги C ++ 17, который я получил, Стефаном Бьорнандером, февраль 2018 года