Author Topic: First argument of function not auto-filled, but 2nd is  (Read 912 times)

rowbearto

  • Senior Community Member
  • Posts: 2335
  • Hero Points: 132
First argument of function not auto-filled, but 2nd is
« on: July 08, 2021, 01:34:26 AM »
See code sample below:

Code: [Select]
void func1(int argA, int argB)
{
}

void func2()
{
  int argA;
  int argB;

  // With a clean config when I type the open paren
  // after func1 below, I expect 'argA' to be filled
  // in for me and highlighted, but it is not.
  // After I type a comma then argB is filled in like I expect
  // but why not for argA?
  func1
}


The comment in the code above says it all.

This happens in 25.0.2 with a clean config on Linux x64, CentOs 7.2
« Last Edit: July 08, 2021, 01:37:36 AM by rowbearto »

Dennis

  • Senior Community Member
  • Posts: 3966
  • Hero Points: 517
Re: First argument of function not auto-filled, but 2nd is
« Reply #1 on: July 08, 2021, 02:33:22 PM »
Reproduced.  Will look into why.

Dennis

  • Senior Community Member
  • Posts: 3966
  • Hero Points: 517
Re: First argument of function not auto-filled, but 2nd is
« Reply #2 on: July 08, 2021, 03:14:10 PM »
Fix added for next hotfix.  Good catch, thanks for reporting this regression.