This commit is contained in:
iridiumR 2021-11-19 10:28:32 +08:00
parent d6e00f3cea
commit 5e504309eb

View file

@ -1,6 +1,7 @@
#ifndef _GLIBCXX_IOSTREAM
#ifndef _STACK_HPP_
#define _STACK_HPP_
#include <iostream>
#endif
template <class T>
class Stack
@ -60,3 +61,4 @@ protected:
_v = p;
}
};
#endif