Codebase list mozc / 2b890af
Add std:: prefix to a Mac test BUG=#392 TEST=unittest REF_BUG=71969651 REF_CL=184959909 REF_TIME=2018-02-08T18:17:58+09:00 REF_TIME_RAW=1518081478 +0900 Hiroyuki Komatsu 6 years ago
2 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
2929
3030 MAJOR=2
3131 MINOR=23
32 BUILD=2799
32 BUILD=2800
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
8282 NSString *insertedText_;
8383 NSString *overriddenLayout_;
8484 NSAttributedString *attributedString_;
85 map<string, int> *counters_;
85 std::map<string, int> *counters_;
8686 }
8787 @property(readwrite, assign) NSString *bundleIdentifier;
8888 @property(readwrite, assign) NSRect expectedCursor;
104104 self = [super init];
105105 self.bundleIdentifier = @"com.google.exampleBundle";
106106 expectedRange = NSMakeRange(NSNotFound, NSNotFound);
107 counters_ = new map<string, int>;
107 counters_ = new std::map<string, int>;
108108 selectedMode_ = new string;
109109 return self;
110110 }