correct function signature

This commit is contained in:
Dmitry Kokorin 2016-02-19 00:06:03 +03:00
parent 59060755a5
commit 454f754195

View file

@ -5,7 +5,7 @@
namespace word_count {
typedef std::map<std::string, size_t> Words;
typedef std::map<std::string, int> Words;
Words words(const std::string&);