aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Russell <ac.russell@live.com>2019-11-17 16:27:34 -0500
committerAdam Russell <ac.russell@live.com>2019-11-17 16:27:34 -0500
commitccf97ba1ecd9b37895a1355c60932b4a658a9c6b (patch)
tree5738bb961446458bc04194dd35cd3666e7a42309
parentec748bdaa40bcbe8e335fa6993812455ee922455 (diff)
downloadperlweeklychallenge-club-ccf97ba1ecd9b37895a1355c60932b4a658a9c6b.tar.gz
perlweeklychallenge-club-ccf97ba1ecd9b37895a1355c60932b4a658a9c6b.tar.bz2
perlweeklychallenge-club-ccf97ba1ecd9b37895a1355c60932b4a658a9c6b.zip
solution for challenge-034
-rw-r--r--challenge-034/adam-russell/cxx/ch-2.cxx2
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; } }