Missing second parameter suggestion in VA 1549
Hello,
I have created a test project to show the error. In the bar class you can select the member function "c" and it will suggest you the first parameter "char abc" but not the second "int def".
Greets
JSC
foo.cpp ============================================================
#include <foo.h>
bar::bar()
{
}
bar::~bar()
{
}
void
bar::a()
{
}
void
bar::b( int abc )
{
}
void
bar::c( char abc, int def )
{
}
foo.h ==============================================================
class bar
{
public:
bar();
~bar();
void
a(),
b( int abc ),
c( char abc, int def );
};
main.cpp ===========================================================
int
main()
{
bar
Test;
Test.a();
Test.b( 1 );
Test.c( 1, 2 ); //< no 2nd parameter suggestion here
return 0;
}