mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 09:16:46 +08:00
compile error
This commit is contained in:
parent
881b060d1f
commit
f104bc4397
@ -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>();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user