guo
Results
1
issues of
guo
In the example `callee.cpp`: one should not use it this ``` provide_future_add = session->provide("com.examples.calculator.add2", &add2).then( [&](boost::future registration) { ... }); ``` but like this: ``` provide_future_add = session->provide("com.examples.calculator.add2", &add2).then( boost::launch::deferred,...
needs-investigation