compile error

This commit is contained in:
mutouyun 2019-01-23 11:52:56 +08:00
parent 881b060d1f
commit f104bc4397

View File

@ -196,11 +196,11 @@ public:
template <typename... P>
auto push(P&&... params) {
return base_t::push<T>(std::forward<P>(params)...);
return base_t::template push<T>(std::forward<P>(params)...);
}
T pop() {
return base_t::pop<T>();
return base_t::template pop<T>();
}
};