diff options
| -rw-r--r-- | challenge-034/adam-russell/cxx/ch-2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-034/adam-russell/cxx/ch-2.cxx b/challenge-034/adam-russell/cxx/ch-2.cxx index 7b29f55ca0..9ea156c0ae 100644 --- a/challenge-034/adam-russell/cxx/ch-2.cxx +++ b/challenge-034/adam-russell/cxx/ch-2.cxx @@ -6,7 +6,7 @@ #include <iostream> #include <functional> -int main(){ +int main(int argc, char** argv){ std::map< const std::string , std::function<void(void)> > dispTable{ {"hello",[](){ std::cout << "Hello!" << std::endl; } }, {"goodbye",[](){ std::cout << "Goodbye!" << std::endl; } } |
