Tagged Questions

6
votes
1answer
605 views

If the address of a function can not be resolved during deduction, is it SFINAE or a compiler error?

In C++0x SFINAE rules have been simplified such that any invalid expression or type that occurs in the "immediate context" of deduction does not result in a compiler error but rather in deduction ...
4
votes
6answers
210 views

Why NULL is converted to string*?

I saw the following code: class NullClass { public: template<class T> operator T*() const { return 0; } }; const NullClass NULL; void f(int x); void f(string *p); f(NULL); // converts ...
4
votes
3answers
215 views

Why is the compiler not selecting my function-template 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 ...
3
votes
2answers
111 views

Change constructor precedence

Is it possible to define a constructor for all derived types and a template constructor? I've written this testcase to illustrate my problem: #include <iostream> class Variant; class ...
3
votes
2answers
90 views

Strange compile error regarding overload resolution

This code fragment: namespace ns { struct last; struct first { typedef last next; }; template <typename T> struct chain { chain<typename ...
1
vote
2answers
230 views

Unhelpful (maybe wrong?) gcc error message

I just spent a couple of hours debugging a compiler error that I could have fixed immediately if the compiler's error message had been more helpful. I've reduced it to a simple example: template ...
1
vote
4answers
681 views

How to resolve ambiguity of call to overloaded function with literal 0 and pointer

I'm pretty sure this must have been here already, but I didn't find much information on how to solve this kind of problem (without casting on the call): Given two overloads, I want that a call with ...
1
vote
2answers
82 views

Why does the compiler not resolve this call to a template function?

In below program why does the compiler generate an error for the call to the printMax template function and not the call to the printMaxInts function? #include <iostream> template<class ...
0
votes
4answers
140 views

What is the cause of this overload resolution headache?

I've got a program where I've got a lot of nested if/switch statements which were repeated in several places. I tried to extract that out and put the switches in a template method class, and then ...
0
votes
2answers
180 views

Template function overload not called as expected

My situation is the following: I have a template wrapper that handles the situation of values and object being nullable without having to manually handle pointer or even new. This basically boils ...