On 4/5/2014 2:31 PM, Tove wrote:
How could this common pattern look? std::string boost::fun(std::string arg)alias cpp = extern (C++, namespace = std); alias boost = extern (C++, namespace = boost); cpp.string boost.fun(cpp.string arg) ?
extern (C++, namespace = std) {
struct string { ... }
}
extern (C++, namespace = boost) {
void fun(std.string arg);
}
