Hi,
I haven't managed to reproduce this reliably yet, but it keeps happening. Create a class with several function headers, and then quickly create an implementation for each function. E.g.
class a
{
void b();
int c() const;
float d();
};
Sometimes the resulting code creates an implementation with the name of the previously created function, although the types appear to be correct. E.g.
void a::b()
{
}
int a::b() const
{
}
As I mentioned, this doesn't happen every time, so I haven't been able to identify a 100% reproducible set of steps I'm afraid.
VA_X.dll file version 10.9.2108.0 built 2016.08.01
Windows 8 6.2 Build 9200