From 454f754195de406ccef95d1ef5db0a117ac5041c Mon Sep 17 00:00:00 2001 From: Dmitry Kokorin Date: Fri, 19 Feb 2016 00:06:03 +0300 Subject: [PATCH] correct function signature --- cpp/word-count/word_count.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/word-count/word_count.h b/cpp/word-count/word_count.h index 8043872..dfa10cf 100644 --- a/cpp/word-count/word_count.h +++ b/cpp/word-count/word_count.h @@ -5,7 +5,7 @@ namespace word_count { -typedef std::map Words; +typedef std::map Words; Words words(const std::string&);