fix missing semicolon

This commit is contained in:
Katherine Sullivan
2016-12-06 01:36:48 -05:00
committed by GitHub
parent cdddc20c8c
commit 71a8c38768

View File

@@ -329,5 +329,5 @@ f("world");
// Good Idea
auto f = [](const std::string &s) { return my_function("hello", s); };
f("world")
f("world");
```