Hi,
Here's some example (unfinished) code:
struct some_struct { int i; };
bool some_fn_with_various_parameters( const some_struct& s, bool b, int i1, float f1 = 0.0f, float f2 = 1.0f, float f3 = 2.0f, float f4 = 3.0f )
{
return false;
}
bool some_fn_with_various_parameters( const some_struct& s, bool b, int i1, float f1 = 0.0f, int i2 = 3, int i3 = 5 )
{
return true;
}
int main( int num_args, const char** args )
{
some_struct s;
s.i = 0;
if( some_fn_with_various_parameters(s,
return 0;
}
With the cursor positioned after the s, in the line near the end with the function call, if I type a comma then two function parameter listboxes appear on top of each other, as in the following screenshot:
However, when I type the opening bracket I only get a single listbox appearing, as expected.
I have the 'Get content from default Intellisense' option disabled, if that's relevant.