numbers.cpp: In lambda function:
numbers.cpp:24:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
24 | if (ret != -1) return ret; ret = 0;
| ^~
numbers.cpp:24:30: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
24 | if (ret != -1) return ret; ret = 0;
| ^~~
numbers.cpp: In lambda function:
numbers.cpp:34:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | for (int i = 0; i < s.size(); i++) {
| ~~^~~~~~~~~~
numbers.cpp:35:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
35 | int f = i + 1 < s.size();
| ~~~~~~^~~~~~~~~~