Tagged Questions
11
votes
1answer
587 views
How to use extern template
I've been looking through the N3291 working draft of C++0x. And I was curious about extern template. Section 14.7.3 states:
Except for inline functions and class template specializations, explicit ...
5
votes
2answers
209 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 ...