class parser seems not to recognize exception specifications
Olaf Hartig
OleBowle at gmx.de
Wed May 31 11:47:03 BST 2000
Hello!
Firstly: KDevelop rocks !!! Thanks for your excellent work.
But there's a bug in version 1.2
It seems class member declarations with exception specifications aren't parsed
correctly. They cause trouble in kdevelop's class view.
Try the following example:
class Test
{
public:
Test(int i) throw () : _i(i) {}
~Test() throw () {};
inline int getValue() const throw() { return _i; }
protected:
int _i;
};
Ole (olaf at punkbands.de)
More information about the KDevelop
mailing list