Tagged Questions

29
votes
4answers
2k views

How `is_base_of` works?

Why the following code works? typedef char (&yes)[1]; typedef char (&no)[2]; template <typename B, typename D> struct Host { operator B*() const; operator D*(); }; template ...
7
votes
2answers
112 views

Why is the compiler choosing this template function over an overloaded non-template function?

Using VC++ 2010, given the following: class Base { }; class Derived : public Base { }; template<class T> void foo(T& t); // A void foo(Base& base); // B Derived d; ...
5
votes
2answers
98 views

Rules for determining the set of function type compatible with std::function<R(T1,T2)>?

Suppose if I have this, std::function<int(int,int)> fs; then how can I determine the set of functions (or function objects) which fs can be initialized with? Which of the folllowing is ...
4
votes
3answers
90 views

Implicit conversion when overloading operators for template classes

I would like to know why implicit type conversion doesn't work with outside operator overloading on class templates. Here is the working, non-templated version: class foo { public: foo() = ...
3
votes
3answers
225 views

Implicit conversion not happening

The last question I asked was something I stumbled upon when trying to understanding another thing... that I also can't understand (not my day). This is quite a long question statement, but at least ...
1
vote
4answers
540 views

simulate C++ function template instantiation with implicit conversion

I already asked two questions related to what I'm trying to do (one resolved, one of which I will close soon). I know that C++ template instantiation does not allow any implicit conversions (see for ...