Hello all,
first of all: Great job with codeblocks! It's cleary the best freeware IDE for c/c++ development I have stumbled across :)
Anyway, with todays nightly build I experienced the following message in codeblocks start-up:
CodeSnippets: Cannot load file "C:\Dokumente und Einstellungen\Thomas\Anwendungsdaten\codeblocks\codesnippets.xml" because first child element cannot be found (malformed XML?).
Content of the given file:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<snippets />
That content is always the same, even after closing codeblocks, deleting the file, opening and closing codeblocks again. It's not really a bug I know, it just looks somewhat strange when the standard xml file cannot be loaded properly. :D
Hey all,
It seems that C::B has some confusion when displaying the prototype for destructors.
In MyClass.h I have:
public:
MyClass(int size);
~MyClass(void);
and in MyClass.cpp, when I type MyClass::~MyClass(
the function prototype comes up as being (int size)
Any idea why this is happening?
Cheers!!