Tagged Questions

1
vote
4answers
129 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 …
5
votes
6answers
283 views

C++ operator overloading and implicit conversion

Hi, everyone! I have a class that encapsulates some arithmetic, let's say fixed point calculations. I like the idea of overloading arithmetic operators, so I write the following: class CFixed { …