| Summary: | [Content Assist] No proposals for result of std::multimap::equal_range. | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Tools] CDT | Reporter: | Andrey Eremchenko <kamre> | ||||
| Component: | cdt-parser | Assignee: | Markus Schorn <mschorn.eclipse> | ||||
| Status: | RESOLVED FIXED | QA Contact: | Markus Schorn <mschorn.eclipse> | ||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | cdtdoug | ||||
| Version: | 8.0 | ||||||
| Target Milestone: | 8.0 | ||||||
| Hardware: | PC | ||||||
| OS: | Windows XP | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
Build Identifier: 8.0 No proposals in the following cases: #include <string> #include <map> int main() { typedef std::multimap<int, std::string> mmap_t; mmap_t m; typedef mmap_t::const_iterator const_iter; std::pair<const_iter, const_iter> range = m.equal_range(0); // range.first-> <Ctrl+Space> // range.first->second. <Ctrl+Space> return 0; } Reproducible: Always