Tagged Questions
5
votes
2answers
219 views
How to explicitly instantiate a template for all members of MPL vector in C++?
Consider the following header file:
// Foo.h
class Foo {
public:
template <typename T>
void read(T& value);
};
I want to explicitly instantiate the Foo::read member ...