Tagged Questions
The explicit-instantiation tag has no wiki summary.
11
votes
1answer
589 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
210 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 ...
0
votes
0answers
80 views
Nested class, dllexport and VS2010
Let's have the following code:
template <typename T> struct X
{ X() { }
};
struct __declspec(dllexport) A
{ struct __declspec(dllexport) AB
{ int i;
};
typedef X <AB> XAB;
...