1
我有以下的模板類:C++模板類:錯誤:沒有匹配函數調用
template <typename T> class ResourcePool {
inline void return_resource(T& instance) {
/* do something */
};
};
然後,在我的主要功能,我做的:
ResoucePool<int> pool;
pool.return_resource(5);
我得到以下錯誤:
error: no matching function for call to `ResourcePool<int>::return_resource(int)`
任何想法我做錯了什麼?