Subject: | const references? |
Maybe I'm just being daft right now, but const references don't work as parameters. The following C++ signature can't be just c&p'd into XS++:
int foo(const std::string &bar);
That's unfortunate and we could just emit the equivalent code for "std::string *bar" or similar.