Codebase list mozc / f38f47c
Migrates uses of deprecated map types to recommended types. REF_BUG= REF_CL=176439719 REF_TIME=2017-11-20T17:03:05-08:00 REF_TIME_RAW=1511226185 -0800 Noriyuki Takahashi 6 years ago
2 changed file(s) with 3 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
2929
3030 MAJOR=2
3131 MINOR=23
32 BUILD=2766
32 BUILD=2767
3333 REVISION=102
3434 # This version represents the version of Mozc IME engine (converter, predictor,
3535 # etc.). This version info is included both in the Mozc server and in the Mozc
3737 #include "base/file_stream.h"
3838 #include "base/file_util.h"
3939 #include "base/logging.h"
40 #include "base/mozc_hash_set.h"
4041 #include "base/serialized_string_array.h"
4142 #include "base/util.h"
4243 #include "converter/connector.h"
202203 }
203204
204205 // Load the original suggestion filter from file.
205 std::unordered_set<string> suggestion_filter_set;
206 mozc_hash_set<string> suggestion_filter_set;
206207
207208 for (size_t i = 0; i < suggestion_filter_files_.size(); ++i) {
208209 InputFileStream input(suggestion_filter_files_[i].c_str());