billyquith / ponder

C++ reflection library with Lua binding, and JSON and XML serialisation.
http://billyquith.github.io/ponder/
Other
633 stars 92 forks source link

Allow constructor overloading #99

Open billyquith opened 6 years ago

billyquith commented 6 years ago

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);