Tagged Questions

10
votes
2answers
9k views

“invalid use of incomplete type” error with partial template specialization

The following code: template <typename S, typename T> struct foo { void bar(); }; template <typename T> void foo <int, T>::bar() { } gives me the error invalid use of ...
2
votes
1answer
789 views

Too few template-parameter-lists problem

Can anybody please tell me how to make the following pseudo-code compatible with GCC4? I wonder how it works under MSVC... typedef int TypeA; typedef float TypeB; class MyClass { // No base template ...