User forums > Nightly builds
The 21 July 2012 build (8150) is out.
ollydbg:
--- Quote from: p2rkw on August 25, 2012, 09:19:24 pm ---By the way: parser also doesn't recognize: const, volatile, final and override.
--- End quote ---
Hi, I'm not sure what the exact problem you have, can you give a simple example? Or, you can fire a bug report in BerliOS too, thanks.
ollydbg:
--- Quote from: nenin on August 26, 2012, 04:20:12 pm ---Dear ollydbg and xunxun, looks like I found source of the problems with gdb. Subjected PC has installed software with hardcore copyright protection (kind of system driver). And looks like any debugging acts which may touch external calls (function from dlls) leads to troubles for gdb. I had similar issue few year ago, but in previous case gdb can not work at all.
--- End quote ---
Good to hear you solve the problem. :)
p2rkw:
@ollydbg:
--- Code: ---struct B
{
virtual void c( int argument ) = 0;
virtual void d( int argument ) = 0;
};
struct A : B
{
void a( int argument ) const
{
}
void b( int argument ) volatile
{
}
void c( int argument ) override
{
}
void d( int argument ) final
{
}
int member;
};
--- End code ---
Parser doesn't see 'argument' inside those bodies.
ollydbg:
--- Quote from: p2rkw on August 26, 2012, 04:53:16 pm ---@ollydbg:
--- Code: ---struct B
{
virtual void c( int argument ) = 0;
virtual void d( int argument ) = 0;
};
struct A : B
{
void a( int argument ) const
{
}
void b( int argument ) volatile
{
}
void c( int argument ) override
{
}
void d( int argument ) final
{
}
int member;
};
--- End code ---
Parser doesn't see 'argument' inside those bodies.
--- End quote ---
Ok, thanks, this should be another kind of bug, can you fire another bug report in BerliOS?
I just read the parser's source code in: plugins\codecompletion\parser\parserthread.cpp, maybe you can have a try to run the cc_test.cbp project to see how the logic goes in the parser. Believe me, it is quite simple, our parser does not do very complex analysis. :)
nenin:
--- Quote from: ollydbg on August 26, 2012, 04:28:59 pm ---
--- Quote from: nenin on August 26, 2012, 04:20:12 pm ---Dear ollydbg and xunxun, looks like I found source of the problems with gdb. Subjected PC has installed software with hardcore copyright protection (kind of system driver). And looks like any debugging acts which may touch external calls (function from dlls) leads to troubles for gdb. I had similar issue few year ago, but in previous case gdb can not work at all.
--- End quote ---
Good to hear you solve the problem. :)
--- End quote ---
Thank you for support. But really good is that problem was not problem of gdb or mingw or C::B. :)
Navigation
[0] Message Index
[*] Previous page
Go to full version