billyquith/ponder

Allow constructor overloading

billyquith opened this issue · 0 comments

Currently, because constructors are passed Values (which are variants) we cannot distinguish between constructors with parameters that can be implicitly converted.

MyClass(int);
MyClass(float);