9 lines
216 B
C
Raw Normal View History

2024-03-08 14:03:37 +08:00
#ifndef MUDUO_EXAMPLES_WORDCOUNT_HASH_H
#define MUDUO_EXAMPLES_WORDCOUNT_HASH_H
#include <unordered_map>
typedef std::unordered_map<muduo::string, int64_t> WordCountMap;
#endif // MUDUO_EXAMPLES_WORDCOUNT_HASH_H