Hi there,
When using Refactor-Implement on a pure virtual method in C++ (virtual void asd() = 0), the method is implemented as:
void FIFOQueue::Enqueue(MethodRequest* Request) /*= 0
{
}
Which is wrong... It shouldn't be implemented, and if it was, it shouldn't be implemented like that.
I believe the expected behavior should be no action, just like when you try to do an refactor-implement on a function that is declared inline (void bleh() {}).
Thanks!