Tagged Questions

3
votes
1answer
56 views

Overloading, generic type inference and the ‘params’ keyword

Hi, I just noticed a strange behavior with overload resolution. Assume that I have the following method : public static void DoSomething<T>(IEnumerable<T> items) { // Whatever …
3
votes
3answers
96 views

Why is the compiler not selecting my template-function overload in the following example?

Given the following function templates: #include <vector> #include <utility> struct Base { }; struct Derived : Base { }; // #1 template <typename T1, typename T2> void f(const …