| Summary: | code assist should list also the default parameters when listing function arguments | ||
|---|---|---|---|
| Product: | [Tools] CDT | Reporter: | Forrest <spamit64> |
| Component: | cdt-editor | Assignee: | Project Inbox <cdt-editor-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | Anton Leherbauer <aleherb+eclipse> |
| Severity: | enhancement | ||
| Priority: | P3 | CC: | cdtdoug, yevshif, zeratul976 |
| Version: | 7.0.1 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Whiteboard: | |||
This has been implemented for both functions and templates in bug 418493. *** This bug has been marked as a duplicate of bug 418493 *** |
int function(int a, int b=0); When I type function( C-space, it's logical and useful to see (int a, int b=0) in the tooltip, not just (int a, int b). For templates there's not tooltip at all. template< typename space, int dimension=3> class Vector {...}; When I type Vector< C-space, it's logical and useful to see < typename space, int dimension=3> in the tooltip.