autocxx
autocxx copied to clipboard
Support functions with default arguments
Currently it is not possible to call the following function
int addOne(int val=0) { return val + 1; }
as
add_one()
in Rust. The reason for this is that autocxx doesn't understand the default argument value.