mirror of
https://github.com/cpp-best-practices/cppbestpractices.git
synced 2025-12-17 11:14:35 +03:00
fix missing semicolon
This commit is contained in:
committed by
GitHub
parent
cdddc20c8c
commit
71a8c38768
@@ -329,5 +329,5 @@ f("world");
|
|||||||
|
|
||||||
// Good Idea
|
// Good Idea
|
||||||
auto f = [](const std::string &s) { return my_function("hello", s); };
|
auto f = [](const std::string &s) { return my_function("hello", s); };
|
||||||
f("world")
|
f("world");
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user