Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Name:
Email:
Subject:
Message icon:

Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:
What is the last letter in the word "SlickEdit":
How many LETTERS are in the following? "a1b2c3":
Which number is missing?  "12345689":

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Dennis
« on: March 27, 2015, 03:14:34 PM »

Good deal.  Thanks for letting us know.
Posted by: jnairb
« on: March 27, 2015, 02:22:43 PM »

Thanks. I've confirmed that it's fixed in 19.0.2 RC 4.
Posted by: Clark
« on: March 26, 2015, 08:43:56 PM »

Dennis has fixed this for 19.0.2 RC 4 which we expect to be available tomorrow.
Posted by: Dennis
« on: March 25, 2015, 10:36:30 PM »

Reproduced and logged.  Unfortunately, this problem is not hot-fixable.
Posted by: jnairb
« on: March 25, 2015, 03:15:56 AM »

Given the following code:
Code: [Select]
struct S;

class B {
  protected:
    virtual B* canReuse(S* sPtr);
};


class D : public B {
  protected:
    virtual B* canReuse(S* sPtr);
};

void test(B* bPtr, S* sPtr) {
   bPtr->canReuse(sPtr);
}

In VS 18, pressing Ctrl-dot (push-tag) on the canReuse call in test(), lets me select from both B::canReuse and D::canReuse. VS 19 just goes to B::canReuse. How do I get VS 19 to allow me to select which virtual function I want to go to?