Merge pull request #61 from katms/syntax-fix

fix missing semicolon
This commit is contained in:
Jason Turner
2016-12-07 08:17:28 -07:00
committed by GitHub

View File

@@ -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");
``` ```