| Summary: | No code completion for Boost::bimap< T1, T1> | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Leo Franchi <lfranchi> |
| Component: | Language Support: CPP (old) | Assignee: | kdevelop-bugs-null |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | cponnapalli |
| Priority: | NOR | ||
| Version First Reported In: | git master | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 5.0.0 | |
| Sentry Crash Report: | |||
| Attachments: | Code completion shown correctly for Boost::bimap< T1, T1> in Kdevelop 5 | ||
|
Description
Leo Franchi
2010-07-15 00:51:53 UTC
still present in kdev 4.2:
#include <boost/bimap/bimap.hpp>
class abc {
public:
int getNum() {
return 0;
}
};
int main() {
boost::bimaps::bimap< abc, abc > map;
map.left.;
}
Created attachment 99009 [details]
Code completion shown correctly for Boost::bimap< T1, T1> in Kdevelop 5
Reproduced the code sample given.
Kdevelop 5 does show the autocompletion while using boost::bimap package.
I have not entered any starting characters(so as to avoid kate-completion) for map.left. Kdevelop correctly shows all the autocompletion suggestions.
Attached the screenshot for reference.
|