You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all,
I think we shouldn't allow implicit casting in Kindr. The current implementation does things wrong (in my opinion) because:
C * C ==> C
C * C ==> C
Introducing explicit casting would deal with this in a nice way without having to solve the hard problems with lots and lots of template code. The above should generate a compiler error. We would need
C.cast() * C() ==> C
Sorry for the non-C++ pseudocode but I think you all know what I mean.
Best,
The text was updated successfully, but these errors were encountered:
From Paul's email:
The text was updated successfully, but these errors were encountered: