C++14 Programming - bellbind/node-v4l2camera GitHub Wiki
Initialize variable with C-like initializer syntax instead of constructor call
auto i = std::size_t{0};
std::vector<int> array{{1,2,3}};auto Func(Arg arg) -> void {
...
}Type placeholder auto unifies T and T&, const T and T, as T.
For keep &, const, and ..., use decltype(auto) instead of auto.