Bernard Normier

Results 155 comments of Bernard Normier

Already fixed in C++.

Let's keep Object as an alias for Value, for compatibility with earlier versions of Slice.

I was hoping you had insights into this code. The generated code throws "current_exception()" only in this one spot: that's when a user-provided lambda response throws an exception. And we...

I was mistaken: we do throw current_exception() for regular lambdas too, in LambdaOutgoing: ``` try { response(); } catch(...) { throw std::current_exception(); } ```

I would just remove cpp11, i.e. put them in ``` ``` and friends. A related issue is #1699. I think the solution for Windows builds is to include the individual...

> A related issue is #1699. I think the solution for Windows builds is to include the individual generated directories (-Igenerated/.../Debug/Ice) when building and NOT the enclosing directory (.../Debug). Actually...

Yes, so far we plan to keep the 1.0 encoding in 3.8. It should have no or limited effect on this issue since slice preservation is 1.1-only.

There is a similar issue with the code generated by slice2swift.

The proposal is: - a newly created object adapter is in the hold state (just like today) - when you call activate, it becomes active (just like today) - once...