标签: c++11 templates c++14 alias
如果我们有
typedef std::vector<int> INT_VEC
如果我在任何源文件中使用INT_VEC -
INT_VEC
extern template class INT_VEC
我收到错误 - 在INT_VEC
class
即使using(也称为alias)也无法解决问题。怎么解决。
using
alias
答案 0 :(得分:-1)
这样的东西?
extern INT_VEC your_external_variable;