I'm overloading the constructor of a templated class A with different input types, for both scalar and container-type arguments:
template<typename T>
class A {
public:
A();
A(T&& _val) { printf("non-template constructor\n");} ;
template<typename iT> A(const iT& _cont) { printf("template constructor\n");};
};
int main(int argc, char const *argv[]) {
A<float> foo1(0.9); //template constructor
A<float> foo2((float)0.9); //no-template constructor
A<float> foo3(std::vector<int>(5,8)); //template constructor
return 0;
}
However, is there a way to call force the non-template constructor on implicitly castable types e.g. passing a double to constructor A<float>()?