-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/55400/
-----------------------------------------------------------
Review request for mesos and Joseph Wu.
Repository: mesos
Description
-------
`clang-3.5` performs incorrect type deduction for lambda return types.
Namely,
```cpp
struct S {};
auto l = [](const S& s) { return s; }
```
The deduced return type of lambda `l` is `const S` as opposed to `S`.
Diffs
-----
src/slave/containerizer/mesos/io/switchboard.cpp
c444568dd478902afd79fe3c8960364fd68fabb5
Diff: https://reviews.apache.org/r/55400/diff/
Testing
-------
Thanks,
Michael Park