Displaying 1 result from an estimated 1 matches for "showerror".
Did you mean:
show_error
2007 Apr 08
3
[LLVMdev] C++ -> C translation problems
...somewhat massage llc -march=c output to make it *almost* compilable.
I have one residual problem I'm unable to overcome :(
I reduced the test program to real minimal version:
===================================================
class File {
public:
File() {}
virtual ~File() {}
};
class showError : public File {
public:
showError(void);
~showError(void);
};
showError::showError(void) {
//
}
showError::~showError(void) {
//
}
===================================================
The acid is the "virtual" specifier in "virtual ~File() {}". If I remove it then B...