Feature #5734 2014-03-05 09:12
carra
Code completion: constructor parameters
Code::Blocks should provide autocompletion of a constructor's parameters within its initialization list. For instance, take this code:
ListCell::ListCell( P_Object First_, P_Object Rest_ )
// - - - - - - - - - - - - - - - - - -
: First( First_ ) // <-- cursor HERE
, Rest( Rest_ )
// - - - - - - - - - - - - - - - - - -
{
// (do nothing)
}
When the cursor is inside the braces, CC correctly handles First_ and Rest_. But if the cursor is on the line with the arrow, I am offered completion for First (i.e. the class attribute), but not for First_.
- Category
- Plugins
- Status
- Open
- Close date
- Assigned to
History
ollydbg 2014-04-02 16:54
Indeed, this is a feature request. Thanks.