For the following code:
auto F(int count) -> decltype([](int m) { return 0; }) { retur
With C++14, you can now simply omit the return type:
auto F(int count) { return [](int m) { return 0; }; }